uph rsync

This commit is contained in:
joborun linux 2023-03-20 20:33:09 +02:00
parent 0c920504d7
commit 94a7b6ef37
2 changed files with 8 additions and 8 deletions

View File

@ -8,9 +8,8 @@
pkgname=rsync
_tag='b13e7a8ef4fa430223f66403506fb821caae5cfd' # git rev-parse v${pkgver}
pkgver=3.2.7
pkgrel=03
pkgrel=04
pkgdesc='A fast and versatile file copying tool for remote and local files w/o systemd zstd ipv6'
arch=('x86_64')
url='https://rsync.samba.org/'
depends=('acl' 'libacl.so' 'lz4' 'openssl' 'popt' 'xxhash' 'libxxhash.so'
'zlib' 'zstd')
@ -60,6 +59,7 @@ build() {
--disable-debug \
--with-included-popt=no \
--with-included-zlib=no \
--with-rrsync \
--with-systemd=no \
--disable-zstd \
--disable-ipv6
@ -77,10 +77,11 @@ package() {
make DESTDIR="$pkgdir" install
install -Dm0644 ../rsyncd.conf "$pkgdir/etc/rsyncd.conf"
install -Dm0644 packaging/lsb/rsync.xinetd "$pkgdir/etc/xinetd.d/rsync"
install -Dm0755 support/rrsync "$pkgdir/usr/lib/rsync/rrsync"
}
#---- license gpg-key sha256sums ----
#---- arch license gpg-key & sha256sums ----
arch=(x86_64)
license=(GPL3)
@ -89,5 +90,5 @@ validpgpkeys=(0048C8B026D4C96F0E589C2F6C859FB14B96A8C5) # Wayne Davison <wayned@
sha256sums=(SKIP
733ccb571721433c3a6262c58b658253ca6553bec79c2bdd0011810bb4f2156b) # rsyncd.conf
## f19b62b7ff762d2b6acbe8a0d7615cc97e080d5701ff28ba950bfe345b2ae03d rsync-3.2.7-04-x86_64.pkg.tar.lz
# 8bec3e170f986d85e59aa8f9ec6ac1851496277e9ff607dd1fe944ee4b3111e4 rsync-3.2.7-03-x86_64.pkg.tar.xz

View File

@ -3,7 +3,7 @@
pkgname=rsync
_tag='b13e7a8ef4fa430223f66403506fb821caae5cfd' # git rev-parse v${pkgver}
pkgver=3.2.7
pkgrel=3
pkgrel=4
pkgdesc='A fast and versatile file copying tool for remote and local files'
arch=('x86_64')
url='https://rsync.samba.org/'
@ -12,7 +12,6 @@ depends=('acl' 'libacl.so' 'lz4' 'openssl' 'popt' 'xxhash' 'libxxhash.so'
'zlib' 'zstd')
optdepends=('python: for rrsync')
makedepends=('git' 'python-commonmark')
options=('debug')
backup=('etc/rsyncd.conf'
'etc/xinetd.d/rsync')
validpgpkeys=('0048C8B026D4C96F0E589C2F6C859FB14B96A8C5') # Wayne Davison <wayned@users.sourceforge.net>
@ -51,6 +50,7 @@ build() {
./configure \
--prefix=/usr \
--disable-debug \
--with-rrsync \
--with-included-popt=no \
--with-included-zlib=no
make
@ -71,5 +71,4 @@ package() {
install -Dm0644 packaging/systemd/rsync.service "$pkgdir/usr/lib/systemd/system/rsyncd.service"
install -Dm0644 packaging/systemd/rsync.socket "$pkgdir/usr/lib/systemd/system/rsyncd.socket"
install -Dm0644 packaging/systemd/rsync@.service "$pkgdir/usr/lib/systemd/system/rsyncd@.service"
install -Dm0755 support/rrsync "$pkgdir/usr/lib/rsync/rrsync"
}