# HG changeset patch # User Hans-G?nter Theisgen # Date 1647419940 -3600 # Node ID 2a2477f51c27494fd44a737f05df6de5b16d9290 # Parent af2087495a3524a859c1f4afa180dded6d9567b4 updated libevdev and libevdev-dev (1.9.0 -> 1.12.0) diff -r af2087495a35 -r 2a2477f51c27 libevdev-dev/receipt --- a/libevdev-dev/receipt Wed Mar 16 09:25:45 2022 +0100 +++ b/libevdev-dev/receipt Wed Mar 16 09:39:00 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libevdev-dev" -VERSION="1.9.0" +VERSION="1.12.0" CATEGORY="x-window" SHORT_DESC="Common functions for Xorg input drivers - development files." MAINTAINER="maintainer@slitaz.org" @@ -14,9 +14,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + get_dev_files } diff -r af2087495a35 -r 2a2477f51c27 libevdev/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libevdev/description.txt Wed Mar 16 09:39:00 2022 +0100 @@ -0,0 +1,7 @@ +Libevdev is a wrapper library for evdev devices. +It moves the common tasks when dealing with evdev devices into a +library and provides a library interface to the callers, thus +avoiding erroneous ioctls, etc. + +The eventual goal is that libevdev wraps all ioctls available to +evdev devices, thus making direct access unnecessary. diff -r af2087495a35 -r 2a2477f51c27 libevdev/receipt --- a/libevdev/receipt Wed Mar 16 09:25:45 2022 +0100 +++ b/libevdev/receipt Wed Mar 16 09:39:00 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libevdev" -VERSION="1.9.0" +VERSION="1.12.0" CATEGORY="x-window" SHORT_DESC="Common functions for Xorg input drivers." MAINTAINER="maintainer@slitaz.org" @@ -10,7 +10,7 @@ LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/x7driver.html#libevdev" TARBALL="$PACKAGE-$VERSION.tar.xz" -WGET_URL="http://www.freedesktop.org/software/libevdev/$TARBALL" +WGET_URL="https://www.freedesktop.org/software/libevdev/$TARBALL" BUILD_DEPENDS="check-dev python" # doxygen @@ -27,14 +27,12 @@ --disable-static \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }