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

Thomas Bächler thomas at archlinux.org
Sat Oct 13 16:13:00 UTC 2012


    Date: Saturday, October 13, 2012 @ 12:13:00
  Author: thomas
Revision: 168627

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

Deleted:
  rsync/repos/extra-i686/PKGBUILD
  rsync/repos/extra-i686/rsync.xinetd
  rsync/repos/extra-i686/rsyncd
  rsync/repos/extra-i686/rsyncd.conf
  rsync/repos/extra-i686/rsyncd.service
  rsync/repos/extra-i686/rsyncd.socket
  rsync/repos/extra-x86_64/PKGBUILD
  rsync/repos/extra-x86_64/rsync.xinetd
  rsync/repos/extra-x86_64/rsyncd
  rsync/repos/extra-x86_64/rsyncd.conf
  rsync/repos/extra-x86_64/rsyncd.service
  rsync/repos/extra-x86_64/rsyncd.socket

-----------------------------+
 extra-i686/PKGBUILD         |   44 ------------------------------------------
 extra-i686/rsync.xinetd     |   11 ----------
 extra-i686/rsyncd           |   37 -----------------------------------
 extra-i686/rsyncd.conf      |   10 ---------
 extra-i686/rsyncd.service   |   10 ---------
 extra-i686/rsyncd.socket    |   11 ----------
 extra-x86_64/PKGBUILD       |   44 ------------------------------------------
 extra-x86_64/rsync.xinetd   |   11 ----------
 extra-x86_64/rsyncd         |   37 -----------------------------------
 extra-x86_64/rsyncd.conf    |   10 ---------
 extra-x86_64/rsyncd.service |   10 ---------
 extra-x86_64/rsyncd.socket  |   11 ----------
 12 files changed, 246 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-i686/PKGBUILD	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,44 +0,0 @@
-# $Id$
-
-pkgname=rsync
-pkgver=3.0.9
-pkgrel=4
-pkgdesc="A file transfer program to keep remote files in sync"
-arch=('i686' 'x86_64')
-url="http://samba.anu.edu.au/rsync/"
-license=('GPL3')
-depends=('perl')
-backup=('etc/rsyncd.conf' 'etc/xinetd.d/rsync')
-source=("http://rsync.samba.org/ftp/rsync/$pkgname-$pkgver.tar.gz"
-        'rsyncd.conf' 'rsyncd' 'rsync.xinetd' 'rsyncd.service'
-        'rsyncd.socket' 'rsyncd at .service')
-md5sums=('5ee72266fe2c1822333c407e1761b92b'
-         'bce64d122a8e0f86872a4a21a03bc7f3'
-         'ba413da4ebca05c57860151fda21efbc'
-         'ea3e9277dc908bc51f9eddc0f6b935c1'
-         'ec96f9089d71109557cdcaa3f0633ed6'
-         'af4eabd94380050191b20ab03e6f6076'
-         '53f94e613e0bc502d38dd61bd2cd7636')
-
-build() {
-	cd "$srcdir/$pkgname-$pkgver"
-	./configure --prefix=/usr --with-included-popt
-	make
-}
-
-check() {
-	cd "$srcdir/$pkgname-$pkgver"
-	make test
-}
-
-package() {
-	cd "$srcdir/$pkgname-$pkgver"
-	make DESTDIR="$pkgdir" install
-	install -Dm755 ../rsyncd "$pkgdir/etc/rc.d/rsyncd"
-	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"
-}

Deleted: extra-i686/rsync.xinetd
===================================================================
--- extra-i686/rsync.xinetd	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-i686/rsync.xinetd	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,11 +0,0 @@
-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
-}

Deleted: extra-i686/rsyncd
===================================================================
--- extra-i686/rsyncd	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-i686/rsyncd	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-[ -f /etc/conf.d/rsyncd ] && . /etc/conf.d/rsyncd
-
-case "$1" in
-  start)
-    stat_busy "Starting rsyncd"
-    [ ! -f /run/daemons/rsyncd ] && /usr/bin/rsync --daemon $RSYNCD_ARGS
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon rsyncd
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping rsyncd"
-    [ -f /run/rsyncd.pid ] && kill `cat /run/rsyncd.pid`
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon rsyncd
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 1
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"
-esac
-exit 0

Deleted: extra-i686/rsyncd.conf
===================================================================
--- extra-i686/rsyncd.conf	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-i686/rsyncd.conf	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,10 +0,0 @@
-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

Deleted: extra-i686/rsyncd.service
===================================================================
--- extra-i686/rsyncd.service	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-i686/rsyncd.service	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,10 +0,0 @@
-[Unit]
-Description=A file transfer program to keep remote files in sync
-
-[Service]
-EnvironmentFile=-/etc/conf.d/rsyncd
-ExecStart=/usr/bin/rsync --daemon --no-detach ${RSYNCD_ARGS}
-RestartSec=1
-
-[Install]
-WantedBy=multi-user.target

Deleted: extra-i686/rsyncd.socket
===================================================================
--- extra-i686/rsyncd.socket	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-i686/rsyncd.socket	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,11 +0,0 @@
-[Unit]
-Description=Rsync Socket
-After=network.target
-Conflicts=rsyncd.service
-
-[Socket]
-ListenStream=873
-Accept=true
-
-[Install]
-WantedBy=sockets.target

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-x86_64/PKGBUILD	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,44 +0,0 @@
-# $Id$
-
-pkgname=rsync
-pkgver=3.0.9
-pkgrel=4
-pkgdesc="A file transfer program to keep remote files in sync"
-arch=('i686' 'x86_64')
-url="http://samba.anu.edu.au/rsync/"
-license=('GPL3')
-depends=('perl')
-backup=('etc/rsyncd.conf' 'etc/xinetd.d/rsync')
-source=("http://rsync.samba.org/ftp/rsync/$pkgname-$pkgver.tar.gz"
-        'rsyncd.conf' 'rsyncd' 'rsync.xinetd' 'rsyncd.service'
-        'rsyncd.socket' 'rsyncd at .service')
-md5sums=('5ee72266fe2c1822333c407e1761b92b'
-         'bce64d122a8e0f86872a4a21a03bc7f3'
-         'ba413da4ebca05c57860151fda21efbc'
-         'ea3e9277dc908bc51f9eddc0f6b935c1'
-         'ec96f9089d71109557cdcaa3f0633ed6'
-         'af4eabd94380050191b20ab03e6f6076'
-         '53f94e613e0bc502d38dd61bd2cd7636')
-
-build() {
-	cd "$srcdir/$pkgname-$pkgver"
-	./configure --prefix=/usr --with-included-popt
-	make
-}
-
-check() {
-	cd "$srcdir/$pkgname-$pkgver"
-	make test
-}
-
-package() {
-	cd "$srcdir/$pkgname-$pkgver"
-	make DESTDIR="$pkgdir" install
-	install -Dm755 ../rsyncd "$pkgdir/etc/rc.d/rsyncd"
-	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"
-}

Deleted: extra-x86_64/rsync.xinetd
===================================================================
--- extra-x86_64/rsync.xinetd	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-x86_64/rsync.xinetd	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,11 +0,0 @@
-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
-}

Deleted: extra-x86_64/rsyncd
===================================================================
--- extra-x86_64/rsyncd	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-x86_64/rsyncd	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-[ -f /etc/conf.d/rsyncd ] && . /etc/conf.d/rsyncd
-
-case "$1" in
-  start)
-    stat_busy "Starting rsyncd"
-    [ ! -f /run/daemons/rsyncd ] && /usr/bin/rsync --daemon $RSYNCD_ARGS
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon rsyncd
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping rsyncd"
-    [ -f /run/rsyncd.pid ] && kill `cat /run/rsyncd.pid`
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon rsyncd
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 1
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"
-esac
-exit 0

Deleted: extra-x86_64/rsyncd.conf
===================================================================
--- extra-x86_64/rsyncd.conf	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-x86_64/rsyncd.conf	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,10 +0,0 @@
-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

Deleted: extra-x86_64/rsyncd.service
===================================================================
--- extra-x86_64/rsyncd.service	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-x86_64/rsyncd.service	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,10 +0,0 @@
-[Unit]
-Description=A file transfer program to keep remote files in sync
-
-[Service]
-EnvironmentFile=-/etc/conf.d/rsyncd
-ExecStart=/usr/bin/rsync --daemon --no-detach ${RSYNCD_ARGS}
-RestartSec=1
-
-[Install]
-WantedBy=multi-user.target

Deleted: extra-x86_64/rsyncd.socket
===================================================================
--- extra-x86_64/rsyncd.socket	2012-10-13 16:12:06 UTC (rev 168626)
+++ extra-x86_64/rsyncd.socket	2012-10-13 16:13:00 UTC (rev 168627)
@@ -1,11 +0,0 @@
-[Unit]
-Description=Rsync Socket
-After=network.target
-Conflicts=rsyncd.service
-
-[Socket]
-ListenStream=873
-Accept=true
-
-[Install]
-WantedBy=sockets.target




More information about the arch-commits mailing list