# HG changeset patch # User Hans-G?nter Theisgen # Date 1645621014 -3600 # Node ID 79a5bd723741246af66c9f9ec4ebdc9a98555350 # Parent 528420e28cb95ebc93ad662857a6ed1c7c6a2b58 updated fakeroot (1.24 -> 1.27) diff -r 528420e28cb9 -r 79a5bd723741 fakeroot/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fakeroot/description.txt Wed Feb 23 13:56:54 2022 +0100 @@ -0,0 +1,11 @@ +Gives a fake root environment, to remove the need to become root for +a package build. + +Fakeroot runs a command in an environment where it appears to have +root privileges for file manipulation. +This is useful for allowing users to create archives (tar, ar, +.deb etc.) with files in them with root permissions or ownership. +Without fakeroot one would have to have root privileges to create the +constituent files of the archives with the correct permissions and +ownership, and then pack them up, or one would have to construct the +archives directly, without using the archiver. diff -r 528420e28cb9 -r 79a5bd723741 fakeroot/receipt --- a/fakeroot/receipt Wed Feb 23 13:43:14 2022 +0100 +++ b/fakeroot/receipt Wed Feb 23 13:56:54 2022 +0100 @@ -1,15 +1,15 @@ # SliTaz package receipt. PACKAGE="fakeroot" -VERSION="1.24" +VERSION="1.27" CATEGORY="development" SHORT_DESC="Gives a fake root environment, useful for building packages as a non-privileged user." MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL2" -WEB_SITE="http://packages.debian.org/fakeroot" +WEB_SITE="https://wiki.debian.org/FakeRoot/" TARBALL="${PACKAGE}_${VERSION}.orig.tar.gz" -WGET_URL="http://ftp.debian.org/debian/pool/main/f/$PACKAGE/$TARBALL" +WGET_URL="https://ftp.debian.org/debian/pool/main/f/$PACKAGE/$TARBALL" BUILD_DEPENDS="libcap-dev" @@ -29,15 +29,13 @@ --mandir=/usr/share/man \ --disable-static \ $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }