wok rev 24724

updated libcap-ng and libcap-ng-dev (0.7.9 -> 0.8.2)
author Hans-G?nter Theisgen
date Tue Mar 15 10:51:40 2022 +0100 (2022-03-15)
parents 49fea3305133
children b6e30721444b
files libcap-ng-dev/receipt libcap-ng/description.txt libcap-ng/receipt
line diff
     1.1 --- a/libcap-ng-dev/receipt	Tue Mar 15 10:34:20 2022 +0100
     1.2 +++ b/libcap-ng-dev/receipt	Tue Mar 15 10:51:40 2022 +0100
     1.3 @@ -1,17 +1,17 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libcap-ng-dev"
     1.7 -VERSION="0.7.9"
     1.8 +VERSION="0.8.2"
     1.9  CATEGORY="security"
    1.10  SHORT_DESC="Libcap-ng development files."
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12  LICENSE="GPL2 LGPL2.1"
    1.13  WEB_SITE="https://people.redhat.com/sgrubb/libcap-ng/"
    1.14  
    1.15 -WANTED="libcap-ng"
    1.16 -DEPENDS="libcap pkg-config"
    1.17  PROVIDE="libcap-dev"
    1.18  SUGGESTED="libcap-ng"
    1.19 +DEPENDS="libcap pkg-config"
    1.20 +WANTED="libcap-ng"
    1.21  
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libcap-ng/description.txt	Tue Mar 15 10:51:40 2022 +0100
     2.3 @@ -0,0 +1,15 @@
     2.4 +The libcap-ng library is intended to make programming with posix
     2.5 +capabilities much easier than the traditional libcap library.
     2.6 +It includes utilities that can analyse all currently running
     2.7 +applications and print out any capabilities and whether or not it
     2.8 +has an open ended bounding set. An open bounding set without the
     2.9 +securebits "NOROOT" flag will allow full capabilities escalation
    2.10 +for applications retaining uid 0 simply by calling execve.
    2.11 +
    2.12 +The included utilities are designed to let administrators and
    2.13 +developers spot applications from various ways that may be running
    2.14 +with too much privilege. For example, any investigation should
    2.15 +start with network facing applications since they would be prime
    2.16 +targets for intrusion.
    2.17 +The netcap program will check all running applications and display
    2.18 +the results.
     3.1 --- a/libcap-ng/receipt	Tue Mar 15 10:34:20 2022 +0100
     3.2 +++ b/libcap-ng/receipt	Tue Mar 15 10:51:40 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libcap-ng"
     3.7 -VERSION="0.7.9"
     3.8 +VERSION="0.8.2"
     3.9  CATEGORY="security"
    3.10  SHORT_DESC="New generation libcap library."
    3.11  MAINTAINER="erjo@slitaz.org"
    3.12 @@ -11,9 +11,9 @@
    3.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.14  WGET_URL="${WEB_SITE}$TARBALL"
    3.15  
    3.16 +PROVIDE="libcap"
    3.17  DEPENDS=""
    3.18 -BUILD_DEPENDS="python"
    3.19 -PROVIDE="libcap"
    3.20 +BUILD_DEPENDS="autoconf automake coreutils libtool python"
    3.21  
    3.22  # What is the latest version available today?
    3.23  current_version()
    3.24 @@ -25,16 +25,15 @@
    3.25  # Rules to configure and make the package.
    3.26  compile_rules()
    3.27  {
    3.28 +	./autogen.sh &&
    3.29  	./configure $CONFIGURE_ARGS &&
    3.30 -	make -j 1 &&
    3.31 +	make &&
    3.32  	make install
    3.33  }
    3.34  
    3.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.36  genpkg_rules()
    3.37  {
    3.38 -	mkdir -p $fs/usr/lib
    3.39 -	
    3.40 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.41 -	cp -a $install/usr/bin		$fs/usr
    3.42 +	cook_copy_folders	bin
    3.43 +	cook_copy_files		*.so*
    3.44  }