# HG changeset patch # User Hans-G?nter Theisgen # Date 1646902062 -3600 # Node ID 290ce85aaca4eacfae79014f7fbeeb5034eb5de6 # Parent 7d05d3f89e8db96655d24f784f178c7fc96e0206 updated hiredis and hiredis-dev (0.14.0 -> 1.0.2) diff -r 7d05d3f89e8d -r 290ce85aaca4 hiredis-dev/receipt --- a/hiredis-dev/receipt Thu Mar 10 09:34:32 2022 +0100 +++ b/hiredis-dev/receipt Thu Mar 10 09:47:42 2022 +0100 @@ -1,22 +1,20 @@ # SliTaz package receipt. PACKAGE="hiredis-dev" -VERSION="0.14.0" +VERSION="1.0.2" CATEGORY="development" -SHORT_DESC="Minimalistic C client for Redis >= 1.2, development files." +SHORT_DESC="Minimalistic C client for Redis >= 1.2 - development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" WEB_SITE="https://github.com/redis/hiredis" +DEPENDS="hiredis pkg-config" WANTED="hiredis" -DEPENDS="hiredis pkg-config" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r 7d05d3f89e8d -r 290ce85aaca4 hiredis/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hiredis/description.txt Thu Mar 10 09:47:42 2022 +0100 @@ -0,0 +1,7 @@ +Hiredis is a minimalistic C client library for the Redis database. + +It is minimalistic because it just adds minimal support for the +protocol, but at the same time it uses a high level printf-alike API +in order to make it much higher level than otherwise suggested by +its minimal code base and the lack of explicit bindings for every +Redis command. diff -r 7d05d3f89e8d -r 290ce85aaca4 hiredis/receipt --- a/hiredis/receipt Thu Mar 10 09:34:32 2022 +0100 +++ b/hiredis/receipt Thu Mar 10 09:47:42 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="hiredis" -VERSION="0.14.0" +VERSION="1.0.2" CATEGORY="misc" SHORT_DESC="Minimalistic C client for Redis >= 1.2." MAINTAINER="pascal.bellard@slitaz.org" @@ -22,13 +22,14 @@ # Rules to configure and make the package. compile_rules() { - make -j 1 && - make PREFIX=/usr DESTDIR=$DESTDIR install + make && + make install \ + PREFIX=/usr \ + DESTDIR=$DESTDIR } # 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* }