wok rev 21266
updated libnl, libnl-dev and libnl-tools (3.2.24 -> 3.4.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 12 14:38:43 2019 +0100 (2019-04-12) |
parents | eb7fa8db50fe |
children | 2492bd8d5478 |
files | libnl-dev/receipt libnl-tools/receipt libnl/receipt |
line diff
1.1 --- a/libnl-dev/receipt Fri Apr 12 14:08:40 2019 +0100 1.2 +++ b/libnl-dev/receipt Fri Apr 12 14:38:43 2019 +0100 1.3 @@ -1,25 +1,27 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libnl-dev" 1.7 -VERSION="3.2.24" 1.8 +VERSION="3.4.0" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="netlink library devel files." 1.11 +SHORT_DESC="netlink library - development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 WEB_SITE="http://www.infradead.org/~tgr/libnl/" 1.15 + 1.16 WANTED="libnl" 1.17 +DEPENDS="libnl pkg-config" 1.18 + 1.19 HOST_ARCH="i486 arm" 1.20 1.21 -DEPENDS="libnl pkg-config" 1.22 - 1.23 # Rules to gen a SliTaz package suitable for Tazpkg. 1.24 genpkg_rules() 1.25 { 1.26 mkdir -p $fs/usr/lib 1.27 - cp -a $install/usr/include $fs/usr 1.28 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.29 - cp -a $install/usr/lib/libnl $fs/usr/lib 1.30 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.31 + 1.32 + cp -a $install/usr/include $fs/usr 1.33 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.34 + cp -a $install/usr/lib/libnl $fs/usr/lib 1.35 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.36 + 1.37 find $fs/usr/lib -type f -name "*.so" -exec rm -f {} \; 1.38 } 1.39 -
2.1 --- a/libnl-tools/receipt Fri Apr 12 14:08:40 2019 +0100 2.2 +++ b/libnl-tools/receipt Fri Apr 12 14:38:43 2019 +0100 2.3 @@ -1,20 +1,30 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libnl-tools" 2.7 -VERSION="3.2.24" 2.8 +VERSION="3.4.0" 2.9 CATEGORY="network" 2.10 SHORT_DESC="The netlink tiny tools." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="LGPL2.1" 2.13 WEB_SITE="http://www.infradead.org/~tgr/libnl/" 2.14 -HOST_ARCH="i486 arm" 2.15 2.16 WANTED="libnl" 2.17 DEPENDS="libnl" 2.18 2.19 +HOST_ARCH="i486 arm" 2.20 + 2.21 # Rules to gen a SliTaz package suitable for Tazpkg. 2.22 genpkg_rules() 2.23 { 2.24 - mkdir -p $fs/usr 2.25 - cp -a $install/usr/sbin $fs/usr 2.26 + mkdir -p $fs/usr/sbin 2.27 + cp -a $install/usr/bin/genl-ctrl-list $fs/usr/sbin 2.28 + cp -a $install/usr/bin/nl-class-add $fs/usr/sbin 2.29 + cp -a $install/usr/bin/nl-class-delete $fs/usr/sbin 2.30 + cp -a $install/usr/bin/nl-class-list $fs/usr/sbin 2.31 + cp -a $install/usr/bin/nl-classid-lookup $fs/usr/sbin 2.32 + cp -a $install/usr/bin/nl-link-list $fs/usr/sbin 2.33 + cp -a $install/usr/bin/nl-pktloc-lookup $fs/usr/sbin 2.34 + cp -a $install/usr/bin/nl-qdisc-add $fs/usr/sbin 2.35 + cp -a $install/usr/bin/nl-qdisc-delete $fs/usr/sbin 2.36 + cp -a $install/usr/bin/nl-qdisc-list $fs/usr/sbin 2.37 }
3.1 --- a/libnl/receipt Fri Apr 12 14:08:40 2019 +0100 3.2 +++ b/libnl/receipt Fri Apr 12 14:38:43 2019 +0100 3.3 @@ -1,14 +1,17 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libnl" 3.7 -VERSION="3.2.24" 3.8 +VERSION="3.4.0" 3.9 CATEGORY="network" 3.10 SHORT_DESC="netlink library." 3.11 MAINTAINER="pascal.bellard@slitaz.org" 3.12 LICENSE="LGPL2.1" 3.13 + 3.14 +WEB_SITE="http://www.infradead.org/~tgr/libnl/" 3.15 + 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 -WEB_SITE="http://www.infradead.org/~tgr/libnl/" 3.18 WGET_URL="$WEB_SITE/files/$TARBALL" 3.19 + 3.20 HOST_ARCH="i486 arm" 3.21 3.22 # Cross compile needs host flex 3.23 @@ -17,18 +20,21 @@ 3.24 # Rules to configure and make the package. 3.25 compile_rules() 3.26 { 3.27 - ./configure \ 3.28 - --sysconfdir=/etc \ 3.29 + ./configure \ 3.30 + --sysconfdir=/etc \ 3.31 $CONFIGURE_ARGS && 3.32 - make && make install 3.33 + make -j 1 && 3.34 + make install 3.35 } 3.36 3.37 # Rules to gen a SliTaz package suitable for Tazpkg. 3.38 genpkg_rules() 3.39 { 3.40 mkdir -p $fs/usr/lib 3.41 - cp -a $install/etc $fs 3.42 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.43 - cp -a $install/usr/lib/libnl $fs/usr/lib 3.44 + 3.45 + cp -a $install/etc $fs 3.46 + cp -a $install/usr/lib/*.so* $fs/usr/lib 3.47 + cp -a $install/usr/lib/libnl $fs/usr/lib 3.48 + 3.49 find $fs/usr/lib -type f -name "*.*a" -exec rm -f {} \; 3.50 }