# HG changeset patch # User Hans-G?nter Theisgen # Date 1658732281 -3600 # Node ID 6e072873c163085d5f30e02cb3c5e53302e94bd2 # Parent 04410c6a9726852d0c17b9ee59c417ea206d46b0 updated tar and tar-lang (1.32 -> 1.34) diff -r 04410c6a9726 -r 6e072873c163 tar-lang/receipt --- a/tar-lang/receipt Mon Jul 25 07:43:39 2022 +0100 +++ b/tar-lang/receipt Mon Jul 25 07:58:01 2022 +0100 @@ -1,8 +1,8 @@ # SliTaz package receipt. PACKAGE="tar-lang" -VERSION="1.32" -CATEGORY="utilities" +VERSION="1.34" +CATEGORY="localization" TAGS="archive compression" SHORT_DESC="GNU tar archiving tools - localised messages." MAINTAINER="maintainer@slitaz.org" @@ -16,14 +16,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - # Set list of wanted locales in LOCALE_PACK - . $WOK/slitaz-i18n/stuff/locale-pack.conf - - # Copy message file in wanted languages, if available - for locale in $LOCALE_PACK - do - [ -d $install/usr/share/locale/$locale ] || continue - mkdir -p $fs/usr/share/locale - cp -a $install/usr/share/locale/$locale $fs/usr/share/locale - done + cook_copy_folders locale } diff -r 04410c6a9726 -r 6e072873c163 tar/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tar/description.txt Mon Jul 25 07:58:01 2022 +0100 @@ -0,0 +1,14 @@ +GNU Tar provides the ability to create tar archives, +as well as various other kinds of manipulation. +For example, you can use Tar on previously created +archives to extract files, to store additional files, +or to update or list files which were already stored. + +Initially, tar archives were used to store files +conveniently on magnetic tape. +The name "Tar" comes from this use; it stands for +tape archiver. +Despite the utility's name, Tar can direct its +output to available devices, files, or other programs +(using pipes), it can even access remote devices or +files (as archives). diff -r 04410c6a9726 -r 6e072873c163 tar/receipt --- a/tar/receipt Mon Jul 25 07:43:39 2022 +0100 +++ b/tar/receipt Mon Jul 25 07:58:01 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="tar" -VERSION="1.32" +VERSION="1.34" CATEGORY="utilities" TAGS="archive compression" SHORT_DESC="GNU tar archiving tools." @@ -12,6 +12,7 @@ TARBALL="$PACKAGE-$VERSION.tar.bz2" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" +SUGGESTED="tar-lang" DEPENDS="xz" HOST_ARCH="i486 arm" @@ -26,7 +27,7 @@ # Rules to configure and make the package. compile_rules() { - # this is needed since configure can't be run as root with out it + # this is needed since configure can't be run as root without it export FORCE_UNSAFE_CONFIGURE=1 ./configure \ @@ -34,14 +35,13 @@ --libexecdir=/usr/lib/$PACKAGE \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs - cp -a $install/usr/bin $fs + cook_copy_folders bin } # Prevent erasing busybox...