]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
libcap-ng: Update to version 0.9
authorAdolf Belka <adolf.belka@ipfire.org>
Tue, 20 Jan 2026 16:33:10 +0000 (17:33 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 21 Jan 2026 13:32:43 +0000 (13:32 +0000)
- Update from version 0.8.5 to 0.9
- No change to rootfile
- Changelog
    0.9
This release contains a significant new utility, cap-audit. Its purpose is to
 audit the use of capabilities of a target program. When the program ends or
 Ctl-c stops it, a report is generated about what was used. This can then be
 used to lower capabilities instead of running as root.
Other changes in the release include:
    Fix python path when invoking py-compile (Jan Palus)
    Drop python2 bindings (Rudi Heitbaum)
    Optimize capability name translation lookups

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

index 8bd5ba6fb2769449094939970a967f59689f10d7..29c85ab72948717a083e30dcc5c48071f08147df 100644 (file)
@@ -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        = 0.8.5
+VER        = 0.9
 
 THISAPP    = libcap-ng-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = ce0fc4ebceaa66d6f888f8b752e501bed7513d45231425054340016a6215ce52f0cd81b3a4a54c7c9ec0b623965002d66316c6c37844f0bd132b186ff7c6a41f
+$(DL_FILE)_BLAKE2 = 3aa85dafbed89696f9611ef277faeeb1efad40bb4c9891837b1574d435eeece1ba522711a19a13ebe98e387c749e28ce5cb381e17a4f051eb61fcdddf25eface
 
 install : $(TARGET)
 
@@ -70,10 +70,10 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+       cd $(DIR_APP) && ./autogen.sh
        cd $(DIR_APP) && ./configure \
-               --prefix=/usr \
-               --disable-static
-
+                               --prefix=/usr \
+                               --disable-static
        cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
        @rm -rf $(DIR_APP)