# HG changeset patch # User Hans-G?nter Theisgen # Date 1645954581 -3600 # Node ID 4dc0492470768c4014a977a29e842910c1983c3a # Parent 4bcc87e4326a7e15a72a3af8347b1b0480e36e34 updated fsarchiver (0.8.5 -> 0.8.6) diff -r 4bcc87e4326a -r 4dc049247076 fsarchiver/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fsarchiver/description.txt Sun Feb 27 10:36:21 2022 +0100 @@ -0,0 +1,9 @@ +FSArchiver is a system tool that allows you to save the contents +of a file-system to a compressed archive file. +The file-system can be restored on a partition which has a different +size and it can be restored on a different file-system. +Unlike tar or dar, FSArchiver also creates the file-system when it +extracts the data to partitions. +Everything is checksummed in the archive in order to protect the data. +If the archive is corrupt, you just loose the current file, not the +whole archive. diff -r 4bcc87e4326a -r 4dc049247076 fsarchiver/receipt --- a/fsarchiver/receipt Sun Feb 27 07:58:48 2022 +0100 +++ b/fsarchiver/receipt Sun Feb 27 10:36:21 2022 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="fsarchiver" -VERSION="0.8.5" +VERSION="0.8.6" CATEGORY="utilities" +TAGS="compression filesystem archive backup" MAINTAINER="jozee@slitaz.org" LICENSE="GPL2" -SHORT_DESC="A safe and flexible file-system backup and deployment tool" +SHORT_DESC="A safe and flexible file-system backup and deployment tool." WEB_SITE="https://www.fsarchiver.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="https://github.com/fdupoux/fsarchiver/releases/download/$VERSION/$TARBALL" -TAGS="compression filesystem archive backup" +WGET_URL="https://github.com/fdupoux/$PACKAGE/releases/download/$VERSION/$TARBALL" -DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-blkid \ -libcomerr3 zlib lz4-lib zstd" -BUILD_DEPENDS="bzip2-dev e2fsprogs-dev libgcrypt-dev lzo-dev liblzma-dev \ -util-linux-blkid-dev attr-dev util-linux-uuid-dev zlib-dev pkg-config \ -lz4-dev zstd-dev" +DEPENDS="bzip2 e2fsprogs libcomerr3 libgcrypt liblzma lzo lz4-lib + util-linux-blkid xz zlib zstd" +BUILD_DEPENDS="attr-dev bzip2-dev e2fsprogs-dev libgcrypt-dev liblzma-dev + lz4-dev lzo-dev pkg-config util-linux-blkid-dev util-linux-uuid-dev + zlib-dev zstd-dev" current_version() { @@ -26,15 +27,15 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + $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/usr - cp -a $install/usr/sbin $fs/usr - + cook_copy_folders sbin }