Tobias Powalowski pushed to branch main at Arch Linux / Packaging / Packages /
rsync
Commits:
d6c9853f by Tobias Powalowski at 2025-02-02T11:49:47+01:00
upgpkg: 3.4.1-2: fixed license, added support scripts
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,10 +1,10 @@
pkgbase = rsync
pkgdesc = A fast and versatile file copying tool for remote and local
files
pkgver = 3.4.1
- pkgrel = 1
+ pkgrel = 2
url = https://rsync.samba.org/
arch = x86_64
- license = GPL3
+ license = GPL-3.0-or-later
makedepends = git
makedepends = python-commonmark
depends = acl
=====================================
PKGBUILD
=====================================
@@ -3,11 +3,11 @@
pkgname=rsync
pkgver=3.4.1
-pkgrel=1
+pkgrel=2
pkgdesc='A fast and versatile file copying tool for remote and local files'
arch=('x86_64')
url='https://rsync.samba.org/'
-license=('GPL3')
+license=('GPL-3.0-or-later')
depends=('acl' 'libacl.so' 'lz4' 'openssl' 'popt' 'xxhash' 'libxxhash.so'
'zlib' 'zstd')
optdepends=('python: for rrsync')
@@ -74,6 +74,11 @@ package() {
cd ${pkgname}
make DESTDIR="$pkgdir" install
+ # install support scripts to doc
+ for i in support/*; do
+ install -Dm0644 "$i" "$pkgdir/usr/share/doc/rsync/$i"
+ done
+ install -Dm0644 "tech_report.tex"
"$pkgdir/usr/share/doc/rsync/tech_report.tex"
install -Dm0644 ../rsyncd.conf "$pkgdir/etc/rsyncd.conf"
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"
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/rsync/-/commit/d6c9853f04a0330539f4f3b92d5cc04b09ce6d0d
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/rsync/-/commit/d6c9853f04a0330539f4f3b92d5cc04b09ce6d0d
You're receiving this email because of your account on gitlab.archlinux.org.