commit b9fd538c91604a30eb91f7e1414fd9c0afe75137 Author: Juergen Daubert <jue@jue.li> Date: Tue Oct 1 18:48:53 2013 +0200 rsync: update to 3.1.0 diff --git a/rsync/.md5sum b/rsync/.md5sum index 97c6a84..86c2ece 100644 --- a/rsync/.md5sum +++ b/rsync/.md5sum @@ -1,4 +1,4 @@ -5ee72266fe2c1822333c407e1761b92b rsync-3.0.9.tar.gz -f8dcfe5cf2afef1ea90107a6ff4540cd rsync.driver +3be148772a33224771a8d4d2a028b132 rsync-3.1.0.tar.gz +bd6cc8e2c83d5e845af20a30e105fb5f rsync.driver a71995f22768c931c5649a1336d25ffb rsyncd b4e95fa8c8f3ae13cfdf616abd6a3960 rsyncd.conf diff --git a/rsync/Pkgfile b/rsync/Pkgfile index 26eff3d..23680ae 100644 --- a/rsync/Pkgfile +++ b/rsync/Pkgfile @@ -1,10 +1,10 @@ # Description: Utility for incremental file transfers over networks # URL: http://rsync.samba.org # Maintainer: CRUX System Team, core-ports at crux dot nu -# Depends on: acl +# Depends on: acl zlib name=rsync -version=3.0.9 +version=3.1.0 release=1 source=(http://rsync.samba.org/ftp/$name/src/$name-$version.tar.gz \ rsyncd.conf rsyncd rsync.driver) @@ -15,7 +15,8 @@ build () { ./configure --prefix=/usr \ --mandir=/usr/man \ --with-rsh=ssh \ - --with-included-popt + --with-included-popt \ + --with-included-zlib=no make make DESTDIR=$PKG install diff --git a/rsync/rsync.driver b/rsync/rsync.driver index 31bb14a..14dd3e5 100644 --- a/rsync/rsync.driver +++ b/rsync/rsync.driver @@ -61,7 +61,7 @@ if (-e "$destination/.checkouts") print "Updating file list from " . $host . "::$collection\n"; # get the remote file list (new .checkouts) -open(PIPE, 'rsync -crz ' . $host . '::' . $collection . '|') or error("Couldn't open pipe to rsync"); +open(PIPE, 'rsync -crz --no-human-readable ' . $host . '::' . $collection . '|') or error("Couldn't open pipe to rsync"); while (<PIPE>) { chomp; @@ -78,7 +78,7 @@ error("Running rsync failed") unless $? == 0; print "Updating collection " . basename($destination) . "\n"; # now really run rsync -open(PIPE, 'rsync -crz --log-format "%o %n" ' . $host . "::$collection $destination|") or error("Couldn't open pipe to rsync"); +open(PIPE, 'rsync -crz --no-human-readable --log-format "%o %n" ' . $host . "::$collection $destination|") or error("Couldn't open pipe to rsync"); while (<PIPE>) { chomp;