diff options
author | Juergen Daubert <jue@jue.li> | 2013-10-01 18:48:53 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2013-10-01 18:48:53 +0200 |
commit | b9fd538c91604a30eb91f7e1414fd9c0afe75137 (patch) | |
tree | 15bb6013461e0ba4b301531764701cd502567a88 /rsync | |
parent | 06dca7439a2ec10d0ffc0188bc025ad42fdbad4d (diff) | |
download | core-b9fd538c91604a30eb91f7e1414fd9c0afe75137.tar.gz core-b9fd538c91604a30eb91f7e1414fd9c0afe75137.tar.xz |
rsync: update to 3.1.0
Diffstat (limited to 'rsync')
-rw-r--r-- | rsync/.md5sum | 4 | ||||
-rw-r--r-- | rsync/Pkgfile | 7 | ||||
-rw-r--r-- | rsync/rsync.driver | 4 |
3 files changed, 8 insertions, 7 deletions
diff --git a/rsync/.md5sum b/rsync/.md5sum index 97c6a845..86c2ecee 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 26eff3d0..23680ae4 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 31bb14a4..14dd3e5f 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; |