# HG changeset patch # User Hans-G?nter Theisgen # Date 1647419145 -3600 # Node ID af2087495a3524a859c1f4afa180dded6d9567b4 # Parent 0c6152afb7bb3f6d2e746f6595509b18716c1bc1 updated libev and libev-dev (4.31 -> 4.33) diff -r 0c6152afb7bb -r af2087495a35 libev-dev/receipt --- a/libev-dev/receipt Wed Mar 16 09:14:20 2022 +0100 +++ b/libev-dev/receipt Wed Mar 16 09:25:45 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libev-dev" -VERSION="4.31" +VERSION="4.33" CATEGORY="development" SHORT_DESC="Libev development files." MAINTAINER="mallory@sweetpeople.org" @@ -16,11 +16,9 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib + cook_copy_folders include + cook_copy_files *.*a - 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 # /usr/include/event.h conflicts with libevent-dev # https://www.opencsw.org/mantis/view.php?id=4376 mv $fs/usr/include/event.h $fs/usr/include/ev-event.h diff -r 0c6152afb7bb -r af2087495a35 libev/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libev/description.txt Wed Mar 16 09:25:45 2022 +0100 @@ -0,0 +1,4 @@ +Libev is a full-featured and high-performance event loop that is +loosely modelled after libevent, but without its limitations and bugs. +It is used in GNU Virtual Private Ethernet, rxvt-unicode, auditd, +the Deliantra MORPG Server and Client, and many other programs. diff -r 0c6152afb7bb -r af2087495a35 libev/receipt --- a/libev/receipt Wed Mar 16 09:14:20 2022 +0100 +++ b/libev/receipt Wed Mar 16 09:25:45 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libev" -VERSION="4.31" +VERSION="4.33" CATEGORY="system-tools" SHORT_DESC="A full-featured and high-performance event loop." MAINTAINER="mallory@sweetpeople.org" @@ -24,13 +24,12 @@ compile_rules() { ./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/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }