# HG changeset patch # User Pascal Bellard # Date 1572601735 -3600 # Node ID c2bd5d258aac28645b1f093c3d5b9f990ecb91cf # Parent 7f2789b79625f6733521b159ea59ee590114dd8a Up fsarchiver (0.8.5) diff -r 7f2789b79625 -r c2bd5d258aac asterisk/receipt --- a/asterisk/receipt Thu Oct 31 18:29:38 2019 +0100 +++ b/asterisk/receipt Fri Nov 01 10:48:55 2019 +0100 @@ -17,7 +17,7 @@ speex iksemel spandsp tiff radiusclient-ng nbs freetds libpostgresqlclient \ libmysqlclient libunixODBC popt dahdi libpri lua libcap attr net-snmp \ portaudio sqlite libkrb5 libcomerr3 libsdl libsdl-image libssl libxml2 bluez \ -libldap libical neon util-linux-uuid opus code2" +libldap libical neon util-linux-uuid opus codec2" BUILD_DEPENDS="gtk+-dev libxml2-dev postgresql-dev libsdl-dev ncurses-dev \ gmime gmime-dev unixODBC-dev unixODBC openldap-dev openldap \ dahdi-linux dahdi-tools dahdi-dev \ @@ -25,7 +25,7 @@ openssl-dev lua-dev lua libpri-dev bluez-dev bluez portaudio-dev alsa-lib-dev \ libsdl-image-dev net-snmp iksemel libical-dev curl-dev libcap-dev iksemel-dev \ jack-audio-connection-kit-dev radiusclient-ng-dev radiusclient-ng \ -libvorbis-dev speex-dev opus-dev code2-dev autoconf automake libtool" +libvorbis-dev speex-dev opus-dev codec2-dev autoconf automake libtool" # Rules to configure and make the package. # diff -r 7f2789b79625 -r c2bd5d258aac dfu-util/receipt --- a/dfu-util/receipt Thu Oct 31 18:29:38 2019 +0100 +++ b/dfu-util/receipt Fri Nov 01 10:48:55 2019 +0100 @@ -16,6 +16,7 @@ # Rules to configure and make the package. compile_rules() { + export CFLAGS="$CFLAGS -I/usr/include/libusb-1.0" ./configure \ --prefix=/usr \ $CONFIGURE_ARGS && diff -r 7f2789b79625 -r c2bd5d258aac fsarchiver/receipt --- a/fsarchiver/receipt Thu Oct 31 18:29:38 2019 +0100 +++ b/fsarchiver/receipt Fri Nov 01 10:48:55 2019 +0100 @@ -1,24 +1,25 @@ # SliTaz package receipt. PACKAGE="fsarchiver" -VERSION="0.6.12" +VERSION="0.8.5" CATEGORY="utilities" MAINTAINER="jozee@slitaz.org" LICENSE="GPL2" SHORT_DESC="A safe and flexible file-system backup and deployment tool" WEB_SITE="http://www.fsarchiver.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="https://github.com/fdupoux/fsarchiver/releases/download/$VERSION/$TARBALL" TAGS="compression filesystem archive backup" DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-blkid \ -libcomerr3 zlib" +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" +util-linux-blkid-dev attr-dev util-linux-uuid-dev zlib-dev pkg-config \ +lz4-dev zstd-dev" # Rules to configure and make the package. -compile_rules() { - cd $src +compile_rules() +{ ./configure --prefix=/usr $CONFIGURE_ARGS && make && make DESTDIR="$DESTDIR" install diff -r 7f2789b79625 -r c2bd5d258aac sed/receipt --- a/sed/receipt Thu Oct 31 18:29:38 2019 +0100 +++ b/sed/receipt Fri Nov 01 10:48:55 2019 +0100 @@ -34,9 +34,11 @@ post_install() { [ "$(readlink $1/bin/sed)" = "busybox" ] && mv $1/bin/sed $1/bin/sed-bb + ln -s /usr/bin/sed $1/bin/sed } pre_remove() { + rm $1/bin/sed [ -e $1/bin/sed-bb ] && mv $1/bin/sed-bb $1/bin/sed }