packaging: modify some files to bump to 0.7.2
authorSung-Jin Park <sj76.park@samsung.com>
Fri, 20 Oct 2017 08:25:08 +0000 (17:25 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 21 Dec 2023 23:42:49 +0000 (08:42 +0900)
Change-Id: I19d76d9b0e6ee79c1f0a07a7099131aca69d53dc
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
COPYING [moved from LICENSE with 100% similarity]
autogen.sh [new file with mode: 0755]
gen_tables.sh
packaging/libxkbcommon.spec

diff --git a/LICENSE b/COPYING
similarity index 100%
rename from LICENSE
rename to COPYING
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..c7467f1
--- /dev/null
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+
+srcdir=`dirname "$0"`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd "$srcdir"
+
+autoreconf --verbose --install --force --warnings=all
+cd "$ORIGDIR"
+
+if test -z "$NOCONFIGURE"; then
+    exec "$srcdir/configure" "$@"
+fi
index 2661cf9..3621c63 100755 (executable)
@@ -2,4 +2,4 @@
 
 BASE_HEADER_FILE="./xkbcommon/xkbcommon-keysyms.h"
 
-LC_CTYPE=C python ./makekeys.py ${BASE_HEADER_FILE} > ./src/ks_tables.h
+LC_CTYPE=C python scripts/makekeys ${BASE_HEADER_FILE} > ./src/ks_tables.h
index 78535a0..6eef142 100644 (file)
@@ -1,5 +1,5 @@
 Name:           libxkbcommon
-Version:        0.4.3
+Version:        0.7.2
 Release:        0
 License:        MIT
 Summary:        Wayland libxkbcommon library
@@ -47,6 +47,7 @@ chmod a+x ./gen_tables.sh
 ./gen_tables.sh
 
 %build
+chmod a+x ./autogen.sh
 %autogen --disable-static --disable-x11
 %__make %{?_smp_mflags} V=1;