wok rev 24736
updated libev and libev-dev (4.31 -> 4.33)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 16 09:25:45 2022 +0100 (2022-03-16) |
parents | 0c6152afb7bb |
children | 2a2477f51c27 |
files | libev-dev/receipt libev/description.txt libev/receipt |
line diff
1.1 --- a/libev-dev/receipt Wed Mar 16 09:14:20 2022 +0100 1.2 +++ b/libev-dev/receipt Wed Mar 16 09:25:45 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libev-dev" 1.7 -VERSION="4.31" 1.8 +VERSION="4.33" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Libev development files." 1.11 MAINTAINER="mallory@sweetpeople.org" 1.12 @@ -16,11 +16,9 @@ 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 + cook_copy_folders include 1.18 + cook_copy_files *.*a 1.19 1.20 - cp -a $install/usr/include $fs/usr 1.21 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.22 - #cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.23 # /usr/include/event.h conflicts with libevent-dev 1.24 # https://www.opencsw.org/mantis/view.php?id=4376 1.25 mv $fs/usr/include/event.h $fs/usr/include/ev-event.h
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libev/description.txt Wed Mar 16 09:25:45 2022 +0100 2.3 @@ -0,0 +1,4 @@ 2.4 +Libev is a full-featured and high-performance event loop that is 2.5 +loosely modelled after libevent, but without its limitations and bugs. 2.6 +It is used in GNU Virtual Private Ethernet, rxvt-unicode, auditd, 2.7 +the Deliantra MORPG Server and Client, and many other programs.
3.1 --- a/libev/receipt Wed Mar 16 09:14:20 2022 +0100 3.2 +++ b/libev/receipt Wed Mar 16 09:25:45 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libev" 3.7 -VERSION="4.31" 3.8 +VERSION="4.33" 3.9 CATEGORY="system-tools" 3.10 SHORT_DESC="A full-featured and high-performance event loop." 3.11 MAINTAINER="mallory@sweetpeople.org" 3.12 @@ -24,13 +24,12 @@ 3.13 compile_rules() 3.14 { 3.15 ./configure $CONFIGURE_ARGS && 3.16 - make -j 1 && 3.17 + make && 3.18 make install 3.19 } 3.20 3.21 # Rules to gen a SliTaz package suitable for Tazpkg. 3.22 genpkg_rules() 3.23 { 3.24 - mkdir -p $fs/usr/lib 3.25 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.26 + cook_copy_files *.so* 3.27 }