* [Buildroot] [PATCH v1 1/2] libevdev: bump version to 1.4.4 @ 2015-10-11 21:24 Peter Seiderer 2015-10-11 21:24 ` [Buildroot] [PATCH v1 2/2] libevdev: disable runtime tests Peter Seiderer 0 siblings, 1 reply; 5+ messages in thread From: Peter Seiderer @ 2015-10-11 21:24 UTC (permalink / raw) To: buildroot From [1]: A couple of cleanups, one notable fix: we now transparently fix invalid ABS_MT_TRACKING_ID ranges to something sensible. The touchpad-edge-detector tool prints out suggested hwdb rules for resolution overrides. And since the resolution is the main thing to fix on a device, the libevdev-tweak-device now has a --resolution argument to quickly set the resolution on the x/y axes. [1] http://lists.freedesktop.org/archives/input-tools/2015-August/001210.html Signed-off-by: Peter Seiderer <ps.report@gmx.net> --- package/libevdev/libevdev.hash | 4 ++-- package/libevdev/libevdev.mk | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/libevdev/libevdev.hash b/package/libevdev/libevdev.hash index 1b7897d..1e44bf8 100644 --- a/package/libevdev/libevdev.hash +++ b/package/libevdev/libevdev.hash @@ -1,2 +1,2 @@ -# Hash from http://lists.freedesktop.org/archives/input-tools/2015-June/001171.html -sha256 1c418b26fd78b0e9900872be2f77fb5311c877b34ec5c75efd1b670ed627969b libevdev-1.4.3.tar.xz +# Hash from http://lists.freedesktop.org/archives/input-tools/2015-August/001210.html +sha256 ed9979369b6a6e28f5897d099538549ecffb2b7c00c1b717eb77c31d85bc45a9 libevdev-1.4.4.tar.xz diff --git a/package/libevdev/libevdev.mk b/package/libevdev/libevdev.mk index 082a7cc..d9a2be6 100644 --- a/package/libevdev/libevdev.mk +++ b/package/libevdev/libevdev.mk @@ -4,7 +4,7 @@ # ################################################################################ -LIBEVDEV_VERSION = 1.4.3 +LIBEVDEV_VERSION = 1.4.4 LIBEVDEV_SITE = http://www.freedesktop.org/software/libevdev LIBEVDEV_SOURCE = libevdev-$(LIBEVDEV_VERSION).tar.xz LIBEVDEV_LICENSE = X11 -- 2.1.4 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v1 2/2] libevdev: disable runtime tests 2015-10-11 21:24 [Buildroot] [PATCH v1 1/2] libevdev: bump version to 1.4.4 Peter Seiderer @ 2015-10-11 21:24 ` Peter Seiderer 2015-10-11 21:30 ` Yann E. MORIN 0 siblings, 1 reply; 5+ messages in thread From: Peter Seiderer @ 2015-10-11 21:24 UTC (permalink / raw) To: buildroot Add new configure option '--disable-runtime-tests' and use it do disable runtime tests which fail to compile on some uclibc configurations. Fixes [1], [2]: test-libevdev-init.c: In function 'test_set_clock_id': test-libevdev-init.c:493: error: 'CLOCK_MONOTONIC_RAW' undeclared (first use in this function) and compile failure for !BR2_USE_MMU configuration: test-main.c:(.text+0x8): undefined reference to `_fork' [1] http://autobuild.buildroot.net/results/0d0/0d0a987471ce8e9f76fc96e0ae8f0bfeadb45028/ [2] http://autobuild.buildroot.net/results/939/9392033f1b8d2c8e4e8791c90918dabbe28a7067/ Signed-off-by: Peter Seiderer <ps.report@gmx.net> --- ...onfigure-add-disable-runtime-tests-option.patch | 44 ++++++++++++++++++++++ package/libevdev/libevdev.mk | 5 +++ 2 files changed, 49 insertions(+) create mode 100644 package/libevdev/0001-configure-add-disable-runtime-tests-option.patch diff --git a/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch b/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch new file mode 100644 index 0000000..f4a8100 --- /dev/null +++ b/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch @@ -0,0 +1,44 @@ +From 0e7e71ab1b5b457b5c566cc3b0beeff795f183d1 Mon Sep 17 00:00:00 2001 +From: Peter Seiderer <ps.report@gmx.net> +Date: Sun, 11 Oct 2015 13:33:19 +0200 +Subject: [PATCH] configure: add '--disable-runtime-tests' option + +Signed-off-by: Peter Seiderer <ps.report@gmx.net> +--- + configure.ac | 13 +++++++++++-- + 1 file changed, 11 insertions(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 54a2510..f285e93 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -74,7 +74,16 @@ else + AC_MSG_WARN([check not found - skipping building unit tests]) + fi + AM_CONDITIONAL(HAVE_VALGRIND, [test "x$VALGRIND" != "x"]) +-AM_CONDITIONAL(ENABLE_RUNTIME_TESTS, [test "x$HAVE_CHECK" = "xyes"]) ++AC_ARG_ENABLE([runtime-tests], ++ AS_HELP_STRING([--disable-runtime-tests], [Disable runtime tests])) ++AS_IF([test "x$enable_runtime_tests" != "xno"], ++ [enable_runtime_tests=yes], ++ [enable_runtime_tests=no]) ++ ++AC_MSG_RESULT([ ++ BLA ${enable_runtime_tests} ++ ]) ++AM_CONDITIONAL(ENABLE_RUNTIME_TESTS, [test "x${enable_runtime_tests}x$HAVE_CHECK" = "xyesxyes"]) + AM_CONDITIONAL(ENABLE_STATIC_LINK_TEST, [test "x$enable_static" = "xyes"]) + + with_cflags="" +@@ -159,7 +168,7 @@ AC_MSG_RESULT([ + Libdir ${libdir} + + Build documentation ${have_doxygen} +- Enable unit-tests ${HAVE_CHECK} ++ Enable unit-tests ${HAVE_CHECK} (runtime-tests: ${enable_runtime_tests}) + Enable profiling ${enable_gcov} + Static library symbol check ${static_symbol_leaks_test} + ]) +-- +2.1.4 + diff --git a/package/libevdev/libevdev.mk b/package/libevdev/libevdev.mk index d9a2be6..97d8a92 100644 --- a/package/libevdev/libevdev.mk +++ b/package/libevdev/libevdev.mk @@ -10,9 +10,14 @@ LIBEVDEV_SOURCE = libevdev-$(LIBEVDEV_VERSION).tar.xz LIBEVDEV_LICENSE = X11 LIBEVDEV_LICENSE_FILES = COPYING +# patch touches configure.ac +LIBEVDEV_AUTORECONF = YES + # Uses PKG_CHECK_MODULES() in configure.ac LIBEVDEV_DEPENDENCIES = host-pkgconf LIBEVDEV_INSTALL_STAGING = YES +LIBEVDEV_CONF_OPTS += --disable-runtime-tests + $(eval $(autotools-package)) -- 2.1.4 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v1 2/2] libevdev: disable runtime tests 2015-10-11 21:24 ` [Buildroot] [PATCH v1 2/2] libevdev: disable runtime tests Peter Seiderer @ 2015-10-11 21:30 ` Yann E. MORIN 2015-10-11 22:03 ` Peter Seiderer 0 siblings, 1 reply; 5+ messages in thread From: Yann E. MORIN @ 2015-10-11 21:30 UTC (permalink / raw) To: buildroot Peter, All, On 2015-10-11 23:24 +0200, Peter Seiderer spake thusly: > Add new configure option '--disable-runtime-tests' and use it do > disable runtime tests which fail to compile on some uclibc > configurations. > > Fixes [1], [2]: > test-libevdev-init.c: In function 'test_set_clock_id': > test-libevdev-init.c:493: error: 'CLOCK_MONOTONIC_RAW' undeclared (first use in this function) > > and compile failure for !BR2_USE_MMU configuration: > test-main.c:(.text+0x8): undefined reference to `_fork' > > [1] http://autobuild.buildroot.net/results/0d0/0d0a987471ce8e9f76fc96e0ae8f0bfeadb45028/ > [2] http://autobuild.buildroot.net/results/939/9392033f1b8d2c8e4e8791c90918dabbe28a7067/ > > Signed-off-by: Peter Seiderer <ps.report@gmx.net> > --- > ...onfigure-add-disable-runtime-tests-option.patch | 44 ++++++++++++++++++++++ > package/libevdev/libevdev.mk | 5 +++ > 2 files changed, 49 insertions(+) > create mode 100644 package/libevdev/0001-configure-add-disable-runtime-tests-option.patch > > diff --git a/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch b/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch > new file mode 100644 > index 0000000..f4a8100 > --- /dev/null > +++ b/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch > @@ -0,0 +1,44 @@ > +From 0e7e71ab1b5b457b5c566cc3b0beeff795f183d1 Mon Sep 17 00:00:00 2001 > +From: Peter Seiderer <ps.report@gmx.net> > +Date: Sun, 11 Oct 2015 13:33:19 +0200 > +Subject: [PATCH] configure: add '--disable-runtime-tests' option > + > +Signed-off-by: Peter Seiderer <ps.report@gmx.net> > +--- > + configure.ac | 13 +++++++++++-- > + 1 file changed, 11 insertions(+), 2 deletions(-) > + > +diff --git a/configure.ac b/configure.ac > +index 54a2510..f285e93 100644 > +--- a/configure.ac > ++++ b/configure.ac > +@@ -74,7 +74,16 @@ else > + AC_MSG_WARN([check not found - skipping building unit tests]) > + fi > + AM_CONDITIONAL(HAVE_VALGRIND, [test "x$VALGRIND" != "x"]) > +-AM_CONDITIONAL(ENABLE_RUNTIME_TESTS, [test "x$HAVE_CHECK" = "xyes"]) Instead of patching configure.ac, can't we just configure it with: LIBEVEDEV_CONF_OPTS += HAVE_CHECK=no Regards, Yann E. MORIN. > ++AC_ARG_ENABLE([runtime-tests], > ++ AS_HELP_STRING([--disable-runtime-tests], [Disable runtime tests])) > ++AS_IF([test "x$enable_runtime_tests" != "xno"], > ++ [enable_runtime_tests=yes], > ++ [enable_runtime_tests=no]) > ++ > ++AC_MSG_RESULT([ > ++ BLA ${enable_runtime_tests} > ++ ]) > ++AM_CONDITIONAL(ENABLE_RUNTIME_TESTS, [test "x${enable_runtime_tests}x$HAVE_CHECK" = "xyesxyes"]) > + AM_CONDITIONAL(ENABLE_STATIC_LINK_TEST, [test "x$enable_static" = "xyes"]) > + > + with_cflags="" > +@@ -159,7 +168,7 @@ AC_MSG_RESULT([ > + Libdir ${libdir} > + > + Build documentation ${have_doxygen} > +- Enable unit-tests ${HAVE_CHECK} > ++ Enable unit-tests ${HAVE_CHECK} (runtime-tests: ${enable_runtime_tests}) > + Enable profiling ${enable_gcov} > + Static library symbol check ${static_symbol_leaks_test} > + ]) > +-- > +2.1.4 > + > diff --git a/package/libevdev/libevdev.mk b/package/libevdev/libevdev.mk > index d9a2be6..97d8a92 100644 > --- a/package/libevdev/libevdev.mk > +++ b/package/libevdev/libevdev.mk > @@ -10,9 +10,14 @@ LIBEVDEV_SOURCE = libevdev-$(LIBEVDEV_VERSION).tar.xz > LIBEVDEV_LICENSE = X11 > LIBEVDEV_LICENSE_FILES = COPYING > > +# patch touches configure.ac > +LIBEVDEV_AUTORECONF = YES > + > # Uses PKG_CHECK_MODULES() in configure.ac > LIBEVDEV_DEPENDENCIES = host-pkgconf > > LIBEVDEV_INSTALL_STAGING = YES > > +LIBEVDEV_CONF_OPTS += --disable-runtime-tests > + > $(eval $(autotools-package)) > -- > 2.1.4 > > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ | | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no | | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. | '------------------------------^-------^------------------^--------------------' ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v1 2/2] libevdev: disable runtime tests 2015-10-11 21:30 ` Yann E. MORIN @ 2015-10-11 22:03 ` Peter Seiderer 2015-10-11 22:09 ` Yann E. MORIN 0 siblings, 1 reply; 5+ messages in thread From: Peter Seiderer @ 2015-10-11 22:03 UTC (permalink / raw) To: buildroot Hello Yann, On Sun, 11 Oct 2015 23:30:17 +0200, "Yann E. MORIN" <yann.morin.1998@free.fr> wrote: > Peter, All, > > On 2015-10-11 23:24 +0200, Peter Seiderer spake thusly: > > Add new configure option '--disable-runtime-tests' and use it do > > disable runtime tests which fail to compile on some uclibc > > configurations. > > > > Fixes [1], [2]: > > test-libevdev-init.c: In function 'test_set_clock_id': > > test-libevdev-init.c:493: error: 'CLOCK_MONOTONIC_RAW' undeclared (first use in this function) > > > > and compile failure for !BR2_USE_MMU configuration: > > test-main.c:(.text+0x8): undefined reference to `_fork' > > > > [1] http://autobuild.buildroot.net/results/0d0/0d0a987471ce8e9f76fc96e0ae8f0bfeadb45028/ > > [2] http://autobuild.buildroot.net/results/939/9392033f1b8d2c8e4e8791c90918dabbe28a7067/ > > > > Signed-off-by: Peter Seiderer <ps.report@gmx.net> > > --- > > ...onfigure-add-disable-runtime-tests-option.patch | 44 ++++++++++++++++++++++ > > package/libevdev/libevdev.mk | 5 +++ > > 2 files changed, 49 insertions(+) > > create mode 100644 package/libevdev/0001-configure-add-disable-runtime-tests-option.patch > > > > diff --git a/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch b/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch > > new file mode 100644 > > index 0000000..f4a8100 > > --- /dev/null > > +++ b/package/libevdev/0001-configure-add-disable-runtime-tests-option.patch > > @@ -0,0 +1,44 @@ > > +From 0e7e71ab1b5b457b5c566cc3b0beeff795f183d1 Mon Sep 17 00:00:00 2001 > > +From: Peter Seiderer <ps.report@gmx.net> > > +Date: Sun, 11 Oct 2015 13:33:19 +0200 > > +Subject: [PATCH] configure: add '--disable-runtime-tests' option > > + > > +Signed-off-by: Peter Seiderer <ps.report@gmx.net> > > +--- > > + configure.ac | 13 +++++++++++-- > > + 1 file changed, 11 insertions(+), 2 deletions(-) > > + > > +diff --git a/configure.ac b/configure.ac > > +index 54a2510..f285e93 100644 > > +--- a/configure.ac > > ++++ b/configure.ac > > +@@ -74,7 +74,16 @@ else > > + AC_MSG_WARN([check not found - skipping building unit tests]) > > + fi > > + AM_CONDITIONAL(HAVE_VALGRIND, [test "x$VALGRIND" != "x"]) > > +-AM_CONDITIONAL(ENABLE_RUNTIME_TESTS, [test "x$HAVE_CHECK" = "xyes"]) > > Instead of patching configure.ac, can't we just configure it with: > > LIBEVEDEV_CONF_OPTS += HAVE_CHECK=no > s/LIBEVEDEV_CONF_OPTS/LIBEVDEV_CONF_OPTS/ Invitingly simple solution, but did not work out, sorry... Regards, Peter > Regards, > Yann E. MORIN. > > > ++AC_ARG_ENABLE([runtime-tests], > > ++ AS_HELP_STRING([--disable-runtime-tests], [Disable runtime tests])) > > ++AS_IF([test "x$enable_runtime_tests" != "xno"], > > ++ [enable_runtime_tests=yes], > > ++ [enable_runtime_tests=no]) > > ++ > > ++AC_MSG_RESULT([ > > ++ BLA ${enable_runtime_tests} > > ++ ]) > > ++AM_CONDITIONAL(ENABLE_RUNTIME_TESTS, [test "x${enable_runtime_tests}x$HAVE_CHECK" = "xyesxyes"]) > > + AM_CONDITIONAL(ENABLE_STATIC_LINK_TEST, [test "x$enable_static" = "xyes"]) > > + > > + with_cflags="" > > +@@ -159,7 +168,7 @@ AC_MSG_RESULT([ > > + Libdir ${libdir} > > + > > + Build documentation ${have_doxygen} > > +- Enable unit-tests ${HAVE_CHECK} > > ++ Enable unit-tests ${HAVE_CHECK} (runtime-tests: ${enable_runtime_tests}) > > + Enable profiling ${enable_gcov} > > + Static library symbol check ${static_symbol_leaks_test} > > + ]) > > +-- > > +2.1.4 > > + > > diff --git a/package/libevdev/libevdev.mk b/package/libevdev/libevdev.mk > > index d9a2be6..97d8a92 100644 > > --- a/package/libevdev/libevdev.mk > > +++ b/package/libevdev/libevdev.mk > > @@ -10,9 +10,14 @@ LIBEVDEV_SOURCE = libevdev-$(LIBEVDEV_VERSION).tar.xz > > LIBEVDEV_LICENSE = X11 > > LIBEVDEV_LICENSE_FILES = COPYING > > > > +# patch touches configure.ac > > +LIBEVDEV_AUTORECONF = YES > > + > > # Uses PKG_CHECK_MODULES() in configure.ac > > LIBEVDEV_DEPENDENCIES = host-pkgconf > > > > LIBEVDEV_INSTALL_STAGING = YES > > > > +LIBEVDEV_CONF_OPTS += --disable-runtime-tests > > + > > $(eval $(autotools-package)) > > -- > > 2.1.4 > > > > _______________________________________________ > > buildroot mailing list > > buildroot at busybox.net > > http://lists.busybox.net/mailman/listinfo/buildroot > ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v1 2/2] libevdev: disable runtime tests 2015-10-11 22:03 ` Peter Seiderer @ 2015-10-11 22:09 ` Yann E. MORIN 0 siblings, 0 replies; 5+ messages in thread From: Yann E. MORIN @ 2015-10-11 22:09 UTC (permalink / raw) To: buildroot Peter, All, On 2015-10-12 00:03 +0200, Peter Seiderer spake thusly: > On Sun, 11 Oct 2015 23:30:17 +0200, "Yann E. MORIN" <yann.morin.1998@free.fr> wrote: > > On 2015-10-11 23:24 +0200, Peter Seiderer spake thusly: > > > Add new configure option '--disable-runtime-tests' and use it do > > > disable runtime tests which fail to compile on some uclibc > > > configurations. [--SNIP--] > > > +diff --git a/configure.ac b/configure.ac > > > +index 54a2510..f285e93 100644 > > > +--- a/configure.ac > > > ++++ b/configure.ac > > > +@@ -74,7 +74,16 @@ else > > > + AC_MSG_WARN([check not found - skipping building unit tests]) > > > + fi > > > + AM_CONDITIONAL(HAVE_VALGRIND, [test "x$VALGRIND" != "x"]) > > > +-AM_CONDITIONAL(ENABLE_RUNTIME_TESTS, [test "x$HAVE_CHECK" = "xyes"]) > > > > Instead of patching configure.ac, can't we just configure it with: > > > > LIBEVEDEV_CONF_OPTS += HAVE_CHECK=no > > s/LIBEVEDEV_CONF_OPTS/LIBEVDEV_CONF_OPTS/ Meh... ;-) > Invitingly simple solution, but did not work out, sorry... Too bad... :-/ Regards, Yann E. MORIN. -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ | | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no | | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. | '------------------------------^-------^------------------^--------------------' ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-10-11 22:09 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-10-11 21:24 [Buildroot] [PATCH v1 1/2] libevdev: bump version to 1.4.4 Peter Seiderer 2015-10-11 21:24 ` [Buildroot] [PATCH v1 2/2] libevdev: disable runtime tests Peter Seiderer 2015-10-11 21:30 ` Yann E. MORIN 2015-10-11 22:03 ` Peter Seiderer 2015-10-11 22:09 ` Yann E. MORIN
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox