]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
ipset: Update to version 7.24
authorAdolf Belka <adolf.belka@ipfire.org>
Tue, 5 May 2026 12:12:53 +0000 (14:12 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 5 May 2026 13:13:38 +0000 (13:13 +0000)
- Update from version 7.22 to 7.24
- No change in rootfile
- Changelog
7.24
  - Improve fixing commas in sorted json output
  - Fix extra quotes around elements in json output
    (bugzilla #1793, issue 3.)
  - Fix commas in sorted json output (bugzilla #1793, issue 4)
  - Fix unquoted port range in json output (bugzilla #1793, issue 1)
  - Fix extraneous comma in terse list json output (Joachim,
    bugzilla #1793, issue 2)
  - bash-completion: restore fix for syntax error (Jeremy Sowden)
  - Correct typo in man-page (Jeremy Sowden)
7.23
  - tests: runtest.sh: Keep running, print summary of failed tests
    (Phil Sutter)
  - tests: cidr.sh: Fix for quirks in RHEL's ipcalc (Phil Sutter)
  - tests: cidr.sh: Respect IPSET_BIN env var (Phil Sutter)
  - ipset: Fix implicit declaration of function basename (Mike Pagano)
  - tests: Reduce testsuite run-time (Phil Sutter)
  - lib: ipset: Avoid 'argv' array overstepping (Phil Sutter)
  - lib: data: Fix for global-buffer-overflow warning by ASAN
    (Phil Sutter)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/ipset

index b7c576fc2e8ee91b9699e015a3c97e0a21529a3b..28c374071adece88998017b28bbf8cc7bf9b152a 100644 (file)
--- a/lfs/ipset
+++ b/lfs/ipset
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 7.22
+VER        = 7.24
 
 THISAPP    = ipset-$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 9daaff54adb6f9daf69cd7dabbd9134d8fcf8cd7f8ef0c52296961579ad3c8202087158a01664228eff70356ba97f77ec61abbab7c7ce323112fbdc32abd661b
+$(DL_FILE)_BLAKE2 = 52e05313353e7b5fe969d5f113794238356bf900b4e7ac4693c05164ecde0826d0e911dcae67bb4103f49b587f94f561d14dcfebb78c5c231013fda7d36a81da
 
 install : $(TARGET)
 
@@ -71,17 +71,14 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && ./configure \
-               --prefix=/usr \
-               --with-kmod=no \
-               --disable-static
-
+                               --prefix=/usr \
+                               --with-kmod=no \
+                               --disable-static
        # Add configuration directory
        -mkdir -pv /etc/ipset
        chmod 750 /etc/ipset
        chown root:root /etc/ipset
-
        cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
-
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)