[arch-commits] Commit in rsnapshot/repos/community-any (5 files)

Florian Pritz bluewind at nymeria.archlinux.org
Mon Mar 17 21:24:42 UTC 2014


    Date: Monday, March 17, 2014 @ 22:24:42
  Author: bluewind
Revision: 107550

archrelease: copy trunk to community-any

Added:
  rsnapshot/repos/community-any/0001-added-missing-back.patch
    (from rev 107549, rsnapshot/trunk/0001-added-missing-back.patch)
  rsnapshot/repos/community-any/PKGBUILD
    (from rev 107549, rsnapshot/trunk/PKGBUILD)
  rsnapshot/repos/community-any/rsnapshot
    (from rev 107549, rsnapshot/trunk/rsnapshot)
Deleted:
  rsnapshot/repos/community-any/PKGBUILD
  rsnapshot/repos/community-any/rsnapshot

-------------------------------+
 0001-added-missing-back.patch |   25 ++++++++++++
 PKGBUILD                      |   78 ++++++++++++++++++++++------------------
 rsnapshot                     |    8 ++--
 3 files changed, 72 insertions(+), 39 deletions(-)

Copied: rsnapshot/repos/community-any/0001-added-missing-back.patch (from rev 107549, rsnapshot/trunk/0001-added-missing-back.patch)
===================================================================
--- 0001-added-missing-back.patch	                        (rev 0)
+++ 0001-added-missing-back.patch	2014-03-17 21:24:42 UTC (rev 107550)
@@ -0,0 +1,25 @@
+From f5d99185002284440947f8eac7b216ac77b4f2e4 Mon Sep 17 00:00:00 2001
+From: Steven Roberts <strobert at strobe.net>
+Date: Sun, 7 Jul 2013 19:07:14 -0700
+Subject: [PATCH] added missing =back.
+
+---
+ rsnapshot-program.pl | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/rsnapshot-program.pl b/rsnapshot-program.pl
+index 85972fd..95b7031 100755
+--- a/rsnapshot-program.pl
++++ b/rsnapshot-program.pl
+@@ -6609,6 +6609,8 @@ additional disk space will be taken up.
+ 
+ =back
+ 
++=back
++
+ Remember that tabs must separate all elements, and that
+ there must be a trailing slash on the end of every directory.
+ 
+-- 
+1.9.0
+

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2014-03-17 21:24:39 UTC (rev 107549)
+++ PKGBUILD	2014-03-17 21:24:42 UTC (rev 107550)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Geoffroy Carrier <geoffroy at archlinux.org>
-# Contributor: Thorsten Tasch <tht at thorstentasch.de>
-# Contributor: JJDaNiMoTh <jjdanimoth at gmail.com>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=rsnapshot
-pkgver=1.3.1
-pkgrel=4
-pkgdesc="A remote filesystem snapshot utility"
-arch=('any')
-url="http://www.rsnapshot.org"
-license=('GPL')
-depends=('perl' 'rsync' 'openssh' 'perl-lchown')
-backup=('etc/rsnapshot.conf')
-source=("http://www.rsnapshot.org/downloads/${pkgname}-${pkgver}.tar.gz"
-        'rsnapshot')
-md5sums=('588f92995dcf60a6ea6df8d94a017e7e'
-         '4cd16eaa51d58a652cffde945985e91c')
-
-build() {
-	cd ${srcdir}/${pkgname}-${pkgver}
-	./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-	sed -i 's:/usr/bin/pod2man:/usr/bin/core_perl/pod2man:' Makefile
-	make
-}
-
-package() {
-	cd ${srcdir}/${pkgname}-${pkgver}
-
-	make DESTDIR=${pkgdir} install
-	mv ${pkgdir}/etc/rsnapshot.conf.default ${pkgdir}/etc/rsnapshot.conf
-	install -Dm644 ${srcdir}/rsnapshot ${pkgdir}/etc/logrotate.d/rsnapshot
-}

Copied: rsnapshot/repos/community-any/PKGBUILD (from rev 107549, rsnapshot/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2014-03-17 21:24:42 UTC (rev 107550)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer:
+# Contributor: Geoffroy Carrier <geoffroy at archlinux.org>
+# Contributor: Thorsten Tasch <tht at thorstentasch.de>
+# Contributor: JJDaNiMoTh <jjdanimoth at gmail.com>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=rsnapshot
+pkgver=1.3.1
+pkgrel=5
+pkgdesc="A remote filesystem snapshot utility"
+arch=('any')
+url="http://www.rsnapshot.org"
+license=('GPL')
+depends=('perl' 'rsync' 'openssh' 'perl-lchown')
+backup=('etc/rsnapshot.conf')
+source=("http://www.rsnapshot.org/downloads/${pkgname}-${pkgver}.tar.gz"
+        'rsnapshot'
+		'0001-added-missing-back.patch')
+md5sums=('588f92995dcf60a6ea6df8d94a017e7e'
+         '4cd16eaa51d58a652cffde945985e91c'
+         'a7075d9366eda5e699be86f7ffe8246e')
+
+prepare() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+
+	patch -p1 -i "$srcdir/0001-added-missing-back.patch"
+}
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+	sed -i 's:/usr/bin/pod2man:/usr/bin/core_perl/pod2man:' Makefile
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+
+	make DESTDIR=${pkgdir} install
+	mv ${pkgdir}/etc/rsnapshot.conf.default ${pkgdir}/etc/rsnapshot.conf
+	install -Dm644 ${srcdir}/rsnapshot ${pkgdir}/etc/logrotate.d/rsnapshot
+}

Deleted: rsnapshot
===================================================================
--- rsnapshot	2014-03-17 21:24:39 UTC (rev 107549)
+++ rsnapshot	2014-03-17 21:24:42 UTC (rev 107550)
@@ -1,4 +0,0 @@
-/var/log/rsnapshot {
-   copytruncate
-   missingok
-}

Copied: rsnapshot/repos/community-any/rsnapshot (from rev 107549, rsnapshot/trunk/rsnapshot)
===================================================================
--- rsnapshot	                        (rev 0)
+++ rsnapshot	2014-03-17 21:24:42 UTC (rev 107550)
@@ -0,0 +1,4 @@
+/var/log/rsnapshot {
+   copytruncate
+   missingok
+}




More information about the arch-commits mailing list