# HG changeset patch # User Hans-G?nter Theisgen # Date 1647420515 -3600 # Node ID 2c34d52f1eca23cfe6d1631879c96b0ebfe2146e # Parent 2a2477f51c27494fd44a737f05df6de5b16d9290 updated libevent and libevent-dev (2.1.11 -> 2.1.12) diff -r 2a2477f51c27 -r 2c34d52f1eca libevent-dev/receipt --- a/libevent-dev/receipt Wed Mar 16 09:39:00 2022 +0100 +++ b/libevent-dev/receipt Wed Mar 16 09:48:35 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libevent-dev" -VERSION="2.1.11" +VERSION="2.1.12" CATEGORY="development" SHORT_DESC="An event notification library - development files." MAINTAINER="0dddba11@googlemail.com" @@ -16,9 +16,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 2a2477f51c27 -r 2c34d52f1eca libevent/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libevent/description.txt Wed Mar 16 09:48:35 2022 +0100 @@ -0,0 +1,10 @@ +The libevent API provides a mechanism to execute a callback function +when a specific event occurs on a file descriptor or after a timeout +has been reached. +Furthermore, libevent also support callbacks due to signals or +regular timeouts. + +Libevent is meant to replace the event loop found in event driven +network servers. An application just needs to call event_dispatch() +and then add or remove events dynamically without having to change +the event loop. diff -r 2a2477f51c27 -r 2c34d52f1eca libevent/receipt --- a/libevent/receipt Wed Mar 16 09:39:00 2022 +0100 +++ b/libevent/receipt Wed Mar 16 09:48:35 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libevent" -VERSION="2.1.11" +VERSION="2.1.12" CATEGORY="system-tools" SHORT_DESC="An event notification library." MAINTAINER="0dddba11@googlemail.com" @@ -25,17 +25,15 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ + ./configure \ $CONFIGURE_ARGS && - make -j 1 && + make && make install } # 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* }