# HG changeset patch # User Hans-G?nter Theisgen # Date 1647067428 -3600 # Node ID 4abfb8bc5dd3771dec41df91c4e864b88c1fec19 # Parent ecd613707114e866fb3c49006b201e9dba5cc9a1 updated iptables and iptables-dev (1.8.4 -> 1.8.7) diff -r ecd613707114 -r 4abfb8bc5dd3 iptables-dev/receipt --- a/iptables-dev/receipt Fri Mar 11 17:20:09 2022 +0000 +++ b/iptables-dev/receipt Sat Mar 12 07:43:48 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="iptables-dev" -VERSION="1.8.4" +VERSION="1.8.7" CATEGORY="development" SHORT_DESC="Packet filtering framework (Firewall) - development files." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://www.netfilter.org/" +WEB_SITE="https://www.netfilter.org/projects/iptables/" DEPENDS="iptables pkg-config" WANTED="iptables" @@ -16,9 +16,7 @@ { EXTRAVERSION=_${kvers} - mkdir -p $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r ecd613707114 -r 4abfb8bc5dd3 iptables/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/iptables/description.txt Sat Mar 12 07:43:48 2022 +0100 @@ -0,0 +1,9 @@ +Iptables is the userspace command line program used to configure +the Linux 2.4.x and later packet filtering ruleset. +It is targeted towards system administrators. + +Since Network Address Translation is also configured from the packet +filter ruleset, iptables is used for this, too. + +The iptables package also includes ip6tables. ip6tables is used for +configuring the IPv6 packet filter. diff -r ecd613707114 -r 4abfb8bc5dd3 iptables/receipt --- a/iptables/receipt Fri Mar 11 17:20:09 2022 +0000 +++ b/iptables/receipt Sat Mar 12 07:43:48 2022 +0100 @@ -1,16 +1,16 @@ # SliTaz package receipt. PACKAGE="iptables" -VERSION="1.8.4" +VERSION="1.8.7" CATEGORY="security" TAGS="firewall" SHORT_DESC="Packet filtering framework (Firewall)." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://www.netfilter.org/" +WEB_SITE="https://www.netfilter.org/projects/iptables/" TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="http://www.netfilter.org/projects/iptables/files/$TARBALL" +WGET_URL="${WEB_SITE}files/$TARBALL" DEPENDS="linux-netfilter" BUILD_DEPENDS="libmnl-dev linux-module-headers" @@ -35,7 +35,7 @@ --disable-nftables \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -45,7 +45,7 @@ mkdir -p $fs/usr/lib - cp -a $install/usr/sbin $fs/usr - cp -a $install/usr/lib/lib* $fs/usr/lib - cp -a $install/usr/lib/xtables $fs/usr/lib + cp -a $install/usr/sbin $fs/usr + cp -a $install/usr/lib/lib* $fs/usr/lib + cp -a $install/usr/lib/xtables $fs/usr/lib }