[arch-commits] Commit in rsync/trunk (PKGBUILD)

Christian Hesse eworm at archlinux.org
Tue Jan 14 12:50:30 UTC 2020


    Date: Tuesday, January 14, 2020 @ 12:50:29
  Author: eworm
Revision: 373460

upgpkg: rsync 3.1.3-3

replace bundled with system zlib (and drop compress compatibility to rsync<3.1.1)

Modified:
  rsync/trunk/PKGBUILD

----------+
 PKGBUILD |   11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-01-14 12:28:52 UTC (rev 373459)
+++ PKGBUILD	2020-01-14 12:50:29 UTC (rev 373460)
@@ -1,12 +1,12 @@
 
 pkgname=rsync
 pkgver=3.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A file transfer program to keep remote files in sync"
 arch=('x86_64')
 url="https://rsync.samba.org/"
 license=('GPL3')
-depends=('perl' 'popt' 'acl')
+depends=('acl' 'perl' 'popt' 'zlib')
 backup=('etc/rsyncd.conf' 'etc/xinetd.d/rsync')
 install=rsync.install
 validpgpkeys=('0048C8B026D4C96F0E589C2F6C859FB14B96A8C5') # Wayne Davison <wayned at users.sourceforge.net>
@@ -27,11 +27,10 @@
 build() {
 	cd "$srcdir/$pkgname-$pkgver"
 
-	# rsync requires the bundled zlib to support old-style --compress
-	# This is to be reevaluated once rsync 3.1.1 is more available in the wild...
-	./configure --prefix=/usr \
+	./configure \
+		--prefix=/usr \
 		--with-included-popt=no \
-		--with-included-zlib=yes \
+		--with-included-zlib=no \
 		--disable-debug
 	make
 }



More information about the arch-commits mailing list