[arch-commits] Commit in rsync/repos (14 files)

Christian Hesse eworm at archlinux.org
Sun Oct 1 20:55:55 UTC 2017


    Date: Sunday, October 1, 2017 @ 20:55:54
  Author: eworm
Revision: 306513

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  rsync/repos/testing-i686/
  rsync/repos/testing-i686/PKGBUILD
    (from rev 306512, rsync/trunk/PKGBUILD)
  rsync/repos/testing-i686/rsync.xinetd
    (from rev 306512, rsync/trunk/rsync.xinetd)
  rsync/repos/testing-i686/rsyncd.conf
    (from rev 306512, rsync/trunk/rsyncd.conf)
  rsync/repos/testing-i686/rsyncd.service
    (from rev 306512, rsync/trunk/rsyncd.service)
  rsync/repos/testing-i686/rsyncd.socket
    (from rev 306512, rsync/trunk/rsyncd.socket)
  rsync/repos/testing-i686/rsyncd at .service
    (from rev 306512, rsync/trunk/rsyncd at .service)
  rsync/repos/testing-x86_64/
  rsync/repos/testing-x86_64/PKGBUILD
    (from rev 306512, rsync/trunk/PKGBUILD)
  rsync/repos/testing-x86_64/rsync.xinetd
    (from rev 306512, rsync/trunk/rsync.xinetd)
  rsync/repos/testing-x86_64/rsyncd.conf
    (from rev 306512, rsync/trunk/rsyncd.conf)
  rsync/repos/testing-x86_64/rsyncd.service
    (from rev 306512, rsync/trunk/rsyncd.service)
  rsync/repos/testing-x86_64/rsyncd.socket
    (from rev 306512, rsync/trunk/rsyncd.socket)
  rsync/repos/testing-x86_64/rsyncd at .service
    (from rev 306512, rsync/trunk/rsyncd at .service)

--------------------------------+
 testing-i686/PKGBUILD          |   46 +++++++++++++++++++++++++++++++++++++++
 testing-i686/rsync.xinetd      |   11 +++++++++
 testing-i686/rsyncd.conf       |   10 ++++++++
 testing-i686/rsyncd.service    |   10 ++++++++
 testing-i686/rsyncd.socket     |   10 ++++++++
 testing-i686/rsyncd at .service   |    9 +++++++
 testing-x86_64/PKGBUILD        |   46 +++++++++++++++++++++++++++++++++++++++
 testing-x86_64/rsync.xinetd    |   11 +++++++++
 testing-x86_64/rsyncd.conf     |   10 ++++++++
 testing-x86_64/rsyncd.service  |   10 ++++++++
 testing-x86_64/rsyncd.socket   |   10 ++++++++
 testing-x86_64/rsyncd at .service |    9 +++++++
 12 files changed, 192 insertions(+)

Copied: rsync/repos/testing-i686/PKGBUILD (from rev 306512, rsync/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,46 @@
+# $Id$
+
+pkgname=rsync
+pkgver=3.1.2
+pkgrel=3
+pkgdesc="A file transfer program to keep remote files in sync"
+arch=('i686' 'x86_64')
+url="https://rsync.samba.org/"
+license=('GPL3')
+depends=('perl' 'popt' 'acl' 'zlib')
+backup=('etc/rsyncd.conf' 'etc/xinetd.d/rsync')
+source=("https://rsync.samba.org/ftp/rsync/$pkgname-$pkgver.tar.gz"{,.asc}
+        'rsyncd.conf' 'rsync.xinetd' 'rsyncd.service'
+        'rsyncd.socket' 'rsyncd at .service')
+md5sums=('0f758d7e000c0f7f7d3792610fad70cb'
+         'SKIP'
+         'bce64d122a8e0f86872a4a21a03bc7f3'
+         'ea3e9277dc908bc51f9eddc0f6b935c1'
+         'f90ba7f3717028769d6f230a2402b5aa'
+         'ae4c381e0c02d6132c7f6ded3f473041'
+         'ceab0b656e5e8239df594040b3b31d3c')
+validpgpkeys=('0048C8B026D4C96F0E589C2F6C859FB14B96A8C5')
+
+build() {
+	cd "$srcdir/$pkgname-$pkgver"
+	./configure --prefix=/usr \
+		--with-included-popt=no \
+		--disable-debug
+	make
+}
+
+check() {
+	cd "$srcdir/$pkgname-$pkgver"
+	make test
+}
+
+package() {
+	cd "$srcdir/$pkgname-$pkgver"
+	make DESTDIR="$pkgdir" install
+	install -Dm644 ../rsyncd.conf "$pkgdir/etc/rsyncd.conf"
+	install -Dm644 ../rsync.xinetd "$pkgdir/etc/xinetd.d/rsync"
+	install -Dm644 ../rsyncd.service "$pkgdir/usr/lib/systemd/system/rsyncd.service"
+	install -m644 ../rsyncd.socket "$pkgdir/usr/lib/systemd/system/rsyncd.socket"
+	install -m644 ../rsyncd at .service "$pkgdir/usr/lib/systemd/system/rsyncd at .service"
+	install -Dm755 support/rrsync "$pkgdir/usr/lib/rsync/rrsync"
+}

Copied: rsync/repos/testing-i686/rsync.xinetd (from rev 306512, rsync/trunk/rsync.xinetd)
===================================================================
--- testing-i686/rsync.xinetd	                        (rev 0)
+++ testing-i686/rsync.xinetd	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,11 @@
+service rsync
+{
+        socket_type             = stream
+        wait                    = no
+        user                    = root
+        server                  = /usr/bin/rsync
+        server_args             = --daemon
+        log_on_success  += HOST DURATION
+        log_on_failure  += HOST
+        disable                 = yes
+}

Copied: rsync/repos/testing-i686/rsyncd.conf (from rev 306512, rsync/trunk/rsyncd.conf)
===================================================================
--- testing-i686/rsyncd.conf	                        (rev 0)
+++ testing-i686/rsyncd.conf	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,10 @@
+uid = nobody
+gid = nobody
+use chroot = no
+max connections = 4
+syslog facility = local5
+pid file = /run/rsyncd.pid
+
+[ftp]
+        path = /srv/ftp
+        comment = ftp area

Copied: rsync/repos/testing-i686/rsyncd.service (from rev 306512, rsync/trunk/rsyncd.service)
===================================================================
--- testing-i686/rsyncd.service	                        (rev 0)
+++ testing-i686/rsyncd.service	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,10 @@
+[Unit]
+Description=A file transfer program to keep remote files in sync
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/rsync --daemon --no-detach
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target

Copied: rsync/repos/testing-i686/rsyncd.socket (from rev 306512, rsync/trunk/rsyncd.socket)
===================================================================
--- testing-i686/rsyncd.socket	                        (rev 0)
+++ testing-i686/rsyncd.socket	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Rsync Socket
+Conflicts=rsyncd.service
+
+[Socket]
+ListenStream=873
+Accept=true
+
+[Install]
+WantedBy=sockets.target

Copied: rsync/repos/testing-i686/rsyncd at .service (from rev 306512, rsync/trunk/rsyncd at .service)
===================================================================
--- testing-i686/rsyncd at .service	                        (rev 0)
+++ testing-i686/rsyncd at .service	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,9 @@
+[Unit]
+Description=A file transfer program to keep remote files in sync
+After=network.target
+
+[Service]
+ExecStart=-/usr/bin/rsync --daemon
+StandardInput=socket
+StandardOutput=inherit
+StandardError=journal

Copied: rsync/repos/testing-x86_64/PKGBUILD (from rev 306512, rsync/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,46 @@
+# $Id$
+
+pkgname=rsync
+pkgver=3.1.2
+pkgrel=3
+pkgdesc="A file transfer program to keep remote files in sync"
+arch=('i686' 'x86_64')
+url="https://rsync.samba.org/"
+license=('GPL3')
+depends=('perl' 'popt' 'acl' 'zlib')
+backup=('etc/rsyncd.conf' 'etc/xinetd.d/rsync')
+source=("https://rsync.samba.org/ftp/rsync/$pkgname-$pkgver.tar.gz"{,.asc}
+        'rsyncd.conf' 'rsync.xinetd' 'rsyncd.service'
+        'rsyncd.socket' 'rsyncd at .service')
+md5sums=('0f758d7e000c0f7f7d3792610fad70cb'
+         'SKIP'
+         'bce64d122a8e0f86872a4a21a03bc7f3'
+         'ea3e9277dc908bc51f9eddc0f6b935c1'
+         'f90ba7f3717028769d6f230a2402b5aa'
+         'ae4c381e0c02d6132c7f6ded3f473041'
+         'ceab0b656e5e8239df594040b3b31d3c')
+validpgpkeys=('0048C8B026D4C96F0E589C2F6C859FB14B96A8C5')
+
+build() {
+	cd "$srcdir/$pkgname-$pkgver"
+	./configure --prefix=/usr \
+		--with-included-popt=no \
+		--disable-debug
+	make
+}
+
+check() {
+	cd "$srcdir/$pkgname-$pkgver"
+	make test
+}
+
+package() {
+	cd "$srcdir/$pkgname-$pkgver"
+	make DESTDIR="$pkgdir" install
+	install -Dm644 ../rsyncd.conf "$pkgdir/etc/rsyncd.conf"
+	install -Dm644 ../rsync.xinetd "$pkgdir/etc/xinetd.d/rsync"
+	install -Dm644 ../rsyncd.service "$pkgdir/usr/lib/systemd/system/rsyncd.service"
+	install -m644 ../rsyncd.socket "$pkgdir/usr/lib/systemd/system/rsyncd.socket"
+	install -m644 ../rsyncd at .service "$pkgdir/usr/lib/systemd/system/rsyncd at .service"
+	install -Dm755 support/rrsync "$pkgdir/usr/lib/rsync/rrsync"
+}

Copied: rsync/repos/testing-x86_64/rsync.xinetd (from rev 306512, rsync/trunk/rsync.xinetd)
===================================================================
--- testing-x86_64/rsync.xinetd	                        (rev 0)
+++ testing-x86_64/rsync.xinetd	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,11 @@
+service rsync
+{
+        socket_type             = stream
+        wait                    = no
+        user                    = root
+        server                  = /usr/bin/rsync
+        server_args             = --daemon
+        log_on_success  += HOST DURATION
+        log_on_failure  += HOST
+        disable                 = yes
+}

Copied: rsync/repos/testing-x86_64/rsyncd.conf (from rev 306512, rsync/trunk/rsyncd.conf)
===================================================================
--- testing-x86_64/rsyncd.conf	                        (rev 0)
+++ testing-x86_64/rsyncd.conf	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,10 @@
+uid = nobody
+gid = nobody
+use chroot = no
+max connections = 4
+syslog facility = local5
+pid file = /run/rsyncd.pid
+
+[ftp]
+        path = /srv/ftp
+        comment = ftp area

Copied: rsync/repos/testing-x86_64/rsyncd.service (from rev 306512, rsync/trunk/rsyncd.service)
===================================================================
--- testing-x86_64/rsyncd.service	                        (rev 0)
+++ testing-x86_64/rsyncd.service	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,10 @@
+[Unit]
+Description=A file transfer program to keep remote files in sync
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/rsync --daemon --no-detach
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target

Copied: rsync/repos/testing-x86_64/rsyncd.socket (from rev 306512, rsync/trunk/rsyncd.socket)
===================================================================
--- testing-x86_64/rsyncd.socket	                        (rev 0)
+++ testing-x86_64/rsyncd.socket	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Rsync Socket
+Conflicts=rsyncd.service
+
+[Socket]
+ListenStream=873
+Accept=true
+
+[Install]
+WantedBy=sockets.target

Copied: rsync/repos/testing-x86_64/rsyncd at .service (from rev 306512, rsync/trunk/rsyncd at .service)
===================================================================
--- testing-x86_64/rsyncd at .service	                        (rev 0)
+++ testing-x86_64/rsyncd at .service	2017-10-01 20:55:54 UTC (rev 306513)
@@ -0,0 +1,9 @@
+[Unit]
+Description=A file transfer program to keep remote files in sync
+After=network.target
+
+[Service]
+ExecStart=-/usr/bin/rsync --daemon
+StandardInput=socket
+StandardOutput=inherit
+StandardError=journal



More information about the arch-commits mailing list