From: Adolf Belka Date: Tue, 20 Jan 2026 16:33:10 +0000 (+0100) Subject: libcap-ng: Update to version 0.9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79858d385ca43b0b91db39ad7806c187a8e49bec;p=ipfire-2.x.git libcap-ng: Update to version 0.9 - 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 Signed-off-by: Michael Tremer --- diff --git a/lfs/libcap-ng b/lfs/libcap-ng index 8bd5ba6fb..29c85ab72 100644 --- a/lfs/libcap-ng +++ b/lfs/libcap-ng @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # 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)