Package: release.debian.org Severity: normal Tags: jessie User: [email protected] Usertags: pu
diffstat for apf-firewall_9.7+rev1-3 apf-firewall_9.7+rev1-3+deb8u1 apf-firewall-9.7+rev1/debian/changelog | 9 +++++++++ apf-firewall-9.7+rev1/debian/control | 4 +--- apf-firewall-9.7+rev1/debian/patches/series | 1 + debian/patches/support-kernel-3-and-later.patch | 18 ++++++++++++++++++ 4 files changed, 29 insertions(+), 3 deletions(-) diff -u apf-firewall-9.7+rev1/debian/changelog apf-firewall-9.7+rev1/debian/changelog --- apf-firewall-9.7+rev1/debian/changelog +++ apf-firewall-9.7+rev1/debian/changelog @@ -1,3 +1,12 @@ +apf-firewall (9.7+rev1-3+deb8u1) jessie; urgency=medium + + * QA upload. + * Set maintainer field to Debian QA Group. + * Add patch from Christoph Biedl to make it work with + kernel 3.x and newer. (Closes: #701674) + + -- Adrian Bunk <[email protected]> Fri, 28 Apr 2017 14:01:55 +0300 + apf-firewall (9.7+rev1-3) unstable; urgency=low * [7e08452] Added iproute in Depends (Closes: #631594) diff -u apf-firewall-9.7+rev1/debian/control apf-firewall-9.7+rev1/debian/control --- apf-firewall-9.7+rev1/debian/control +++ apf-firewall-9.7+rev1/debian/control @@ -1,12 +1,10 @@ Source: apf-firewall Section: net Priority: optional -Maintainer: Giuseppe Iuculano <[email protected]> +Maintainer: Debian QA Group <[email protected]> Build-Depends: quilt (>= 0.40), debhelper (>= 7) Standards-Version: 3.9.2 Homepage: http://www.rfxn.com/projects/advanced-policy-firewall/ -Vcs-Git: git://git.debian.org/git/users/derevko-guest/apf-firewall.git -Vcs-Browser: http://git.debian.org/?p=users/derevko-guest/apf-firewall.git Package: apf-firewall Architecture: all diff -u apf-firewall-9.7+rev1/debian/patches/series apf-firewall-9.7+rev1/debian/patches/series --- apf-firewall-9.7+rev1/debian/patches/series +++ apf-firewall-9.7+rev1/debian/patches/series @@ -4,0 +5 @@ +support-kernel-3-and-later.patch only in patch2: unchanged: --- apf-firewall-9.7+rev1.orig/debian/patches/support-kernel-3-and-later.patch +++ apf-firewall-9.7+rev1/debian/patches/support-kernel-3-and-later.patch @@ -0,0 +1,18 @@ +Subject: Make work with kernel 3.x and newer +Author: Christoph Biedl <[email protected]> +Bug-Debian: https://bugs.debian.org/701674 + +--- a/files/internals/functions.apf ++++ b/files/internals/functions.apf +@@ -65,9 +65,10 @@ + ml() { + MOD=$1 + VALMOD=$2 ++KREL_MAJOR="${KREL%%.*}" + if [ "$KREL" == "2.4" ]; then + MEXT="o" +-elif [ "$KREL" == "2.6" ]; then ++elif [ "$KREL" == "2.6" ] || [ "$KREL_MAJOR" -ge 3 ]; then + MEXT="ko" + elif [ ! "$KREL" == "2.4" ] && [ ! "$KREL" == "2.6" ]; then + if [ ! "$SET_VERBOSE" == "1" ]; then

