# HG changeset patch # User Hans-G?nter Theisgen # Date 1555076323 -3600 # Node ID eb9e86ea9c0cdc6c33e725738d92982172c9c292 # Parent eb7fa8db50fedb75f371c5c64d2a5cd9b171e389 updated libnl, libnl-dev and libnl-tools (3.2.24 -> 3.4.0) diff -r eb7fa8db50fe -r eb9e86ea9c0c libnl-dev/receipt --- a/libnl-dev/receipt Fri Apr 12 14:08:40 2019 +0100 +++ b/libnl-dev/receipt Fri Apr 12 14:38:43 2019 +0100 @@ -1,25 +1,27 @@ # SliTaz package receipt. PACKAGE="libnl-dev" -VERSION="3.2.24" +VERSION="3.4.0" CATEGORY="network" -SHORT_DESC="netlink library devel files." +SHORT_DESC="netlink library - development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="http://www.infradead.org/~tgr/libnl/" + WANTED="libnl" +DEPENDS="libnl pkg-config" + HOST_ARCH="i486 arm" -DEPENDS="libnl pkg-config" - # 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/libnl $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/libnl $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + find $fs/usr/lib -type f -name "*.so" -exec rm -f {} \; } - diff -r eb7fa8db50fe -r eb9e86ea9c0c libnl-tools/receipt --- a/libnl-tools/receipt Fri Apr 12 14:08:40 2019 +0100 +++ b/libnl-tools/receipt Fri Apr 12 14:38:43 2019 +0100 @@ -1,20 +1,30 @@ # SliTaz package receipt. PACKAGE="libnl-tools" -VERSION="3.2.24" +VERSION="3.4.0" CATEGORY="network" SHORT_DESC="The netlink tiny tools." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="http://www.infradead.org/~tgr/libnl/" -HOST_ARCH="i486 arm" WANTED="libnl" DEPENDS="libnl" +HOST_ARCH="i486 arm" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/sbin $fs/usr + mkdir -p $fs/usr/sbin + cp -a $install/usr/bin/genl-ctrl-list $fs/usr/sbin + cp -a $install/usr/bin/nl-class-add $fs/usr/sbin + cp -a $install/usr/bin/nl-class-delete $fs/usr/sbin + cp -a $install/usr/bin/nl-class-list $fs/usr/sbin + cp -a $install/usr/bin/nl-classid-lookup $fs/usr/sbin + cp -a $install/usr/bin/nl-link-list $fs/usr/sbin + cp -a $install/usr/bin/nl-pktloc-lookup $fs/usr/sbin + cp -a $install/usr/bin/nl-qdisc-add $fs/usr/sbin + cp -a $install/usr/bin/nl-qdisc-delete $fs/usr/sbin + cp -a $install/usr/bin/nl-qdisc-list $fs/usr/sbin } diff -r eb7fa8db50fe -r eb9e86ea9c0c libnl/receipt --- a/libnl/receipt Fri Apr 12 14:08:40 2019 +0100 +++ b/libnl/receipt Fri Apr 12 14:38:43 2019 +0100 @@ -1,14 +1,17 @@ # SliTaz package receipt. PACKAGE="libnl" -VERSION="3.2.24" +VERSION="3.4.0" CATEGORY="network" SHORT_DESC="netlink library." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" + +WEB_SITE="http://www.infradead.org/~tgr/libnl/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.infradead.org/~tgr/libnl/" WGET_URL="$WEB_SITE/files/$TARBALL" + HOST_ARCH="i486 arm" # Cross compile needs host flex @@ -17,18 +20,21 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --sysconfdir=/etc \ + ./configure \ + --sysconfdir=/etc \ $CONFIGURE_ARGS && - make && make install + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/etc $fs - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/lib/libnl $fs/usr/lib + + cp -a $install/etc $fs + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/libnl $fs/usr/lib + find $fs/usr/lib -type f -name "*.*a" -exec rm -f {} \; }