wok-current rev 24738
updated libevent and libevent-dev (2.1.11 -> 2.1.12)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 16 09:48:35 2022 +0100 (2022-03-16) |
parents | 2a2477f51c27 |
children | bbb340edb2d2 |
files | libevent-dev/receipt libevent/description.txt libevent/receipt |
line diff
1.1 --- a/libevent-dev/receipt Wed Mar 16 09:39:00 2022 +0100 1.2 +++ b/libevent-dev/receipt Wed Mar 16 09:48:35 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libevent-dev" 1.7 -VERSION="2.1.11" 1.8 +VERSION="2.1.12" 1.9 CATEGORY="development" 1.10 SHORT_DESC="An event notification library - development files." 1.11 MAINTAINER="0dddba11@googlemail.com" 1.12 @@ -16,9 +16,5 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/include $fs/usr 1.19 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.20 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.21 + get_dev_files 1.22 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libevent/description.txt Wed Mar 16 09:48:35 2022 +0100 2.3 @@ -0,0 +1,10 @@ 2.4 +The libevent API provides a mechanism to execute a callback function 2.5 +when a specific event occurs on a file descriptor or after a timeout 2.6 +has been reached. 2.7 +Furthermore, libevent also support callbacks due to signals or 2.8 +regular timeouts. 2.9 + 2.10 +Libevent is meant to replace the event loop found in event driven 2.11 +network servers. An application just needs to call event_dispatch() 2.12 +and then add or remove events dynamically without having to change 2.13 +the event loop.
3.1 --- a/libevent/receipt Wed Mar 16 09:39:00 2022 +0100 3.2 +++ b/libevent/receipt Wed Mar 16 09:48:35 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libevent" 3.7 -VERSION="2.1.11" 3.8 +VERSION="2.1.12" 3.9 CATEGORY="system-tools" 3.10 SHORT_DESC="An event notification library." 3.11 MAINTAINER="0dddba11@googlemail.com" 3.12 @@ -25,17 +25,15 @@ 3.13 # Rules to configure and make the package. 3.14 compile_rules() 3.15 { 3.16 - ./configure \ 3.17 + ./configure \ 3.18 $CONFIGURE_ARGS && 3.19 - make -j 1 && 3.20 + make && 3.21 make install 3.22 } 3.23 3.24 # Rules to gen a SliTaz package suitable for Tazpkg. 3.25 genpkg_rules() 3.26 { 3.27 - mkdir -p $fs/usr/lib 3.28 - 3.29 - cp -a $install/usr/bin $fs/usr 3.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.31 + cook_copy_folders bin 3.32 + cook_copy_files *.so* 3.33 }