Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/archive.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Sennhauser <ralph.sennhauser@gmail.com>2017-01-19 21:08:29 +0300
committerRalph Sennhauser <ralph.sennhauser@gmail.com>2017-01-20 12:41:05 +0300
commit8117cd03c09d0b0a7e6bb4222aaac6e3ba5ef87e (patch)
tree89cb3055a7dc5f6ba99e0249120e8c9c836d614e
parent4e53a6e9c560b54361f9ed3639e8d12f9ab8939d (diff)
xtables-addons: bump to 2.12
* bump to 2.12, adds support for Linux 4.9 / 4.10 * don't disable format security checks * don't patch and run autoreconf just to suppress a potential but harmless warning Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
-rw-r--r--package/network/utils/xtables-addons/Makefile10
-rw-r--r--package/network/utils/xtables-addons/patches/002-fix-kernel-version-detection.patch11
2 files changed, 3 insertions, 18 deletions
diff --git a/package/network/utils/xtables-addons/Makefile b/package/network/utils/xtables-addons/Makefile
index 280b4b889d..afa6c92e90 100644
--- a/package/network/utils/xtables-addons/Makefile
+++ b/package/network/utils/xtables-addons/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2009-2013 OpenWrt.org
+# Copyright (C) 2009-2017 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -9,22 +9,18 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=xtables-addons
-PKG_VERSION:=2.11
+PKG_VERSION:=2.12
PKG_RELEASE:=1
-PKG_MD5SUM:=9f3123295db81a9d1bc08dabf075d0d6
+PKG_MD5SUM:=aed5ce0873709ac243f1177fc81ff452
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@SF/xtables-addons
PKG_BUILD_DEPENDS:=iptables
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
-PKG_CHECK_FORMAT_SECURITY:=0
-PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
PKG_LICENSE:=GPL-2.0
-PKG_FIXUP:=autoreconf
-
include $(INCLUDE_DIR)/package.mk
define Package/xtables-addons
diff --git a/package/network/utils/xtables-addons/patches/002-fix-kernel-version-detection.patch b/package/network/utils/xtables-addons/patches/002-fix-kernel-version-detection.patch
deleted file mode 100644
index 775ccf657c..0000000000
--- a/package/network/utils/xtables-addons/patches/002-fix-kernel-version-detection.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -44,7 +44,7 @@ regular_CFLAGS="-Wall -Waggregate-return
-
- if test -n "$kbuilddir"; then
- AC_MSG_CHECKING([kernel version that we will build against])
-- krel="$(make -sC "$kbuilddir" M=$PWD kernelrelease | $AWK -v 'FS=[[^0-9.]]' '{print $1; exit}')"
-+ krel="$(make -sC "$kbuilddir" M=$PWD kernelversion | $AWK -v 'FS=[[^0-9.]]' '{print $1; exit}')"
- save_IFS="$IFS"
- IFS='.'
- set x $krel