summaryrefslogtreecommitdiff
path: root/community/duplicity
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-02-16 00:07:09 -0800
committerroot <root@rshg054.dnsready.net>2013-02-16 00:07:09 -0800
commit4a4f6be8604aa35bdc81ae29d86b07dc8aea0c5c (patch)
tree41f9694a761d6e5637f15f9f9241e5b84cd8897b /community/duplicity
parent067830244f6b16cb094a59e5ca8fa262bd66a2ec (diff)
Sat Feb 16 00:07:08 PST 2013
Diffstat (limited to 'community/duplicity')
-rw-r--r--community/duplicity/PKGBUILD17
-rw-r--r--community/duplicity/u1-ascii-error.patch13
2 files changed, 6 insertions, 24 deletions
diff --git a/community/duplicity/PKGBUILD b/community/duplicity/PKGBUILD
index 654d1a743..dd8e8f3ed 100644
--- a/community/duplicity/PKGBUILD
+++ b/community/duplicity/PKGBUILD
@@ -1,27 +1,22 @@
-# $Id: PKGBUILD 79464 2012-11-05 20:16:41Z bgyorgy $
+# $Id: PKGBUILD 84281 2013-02-15 14:20:17Z lfleischer $
# Maintainer: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: Aaron Schaefer <aaron@elasticdog.com>
pkgname=duplicity
-pkgver=0.6.20
-pkgrel=2
+pkgver=0.6.21
+pkgrel=1
pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm.'
arch=('i686' 'x86_64')
url='http://www.nongnu.org/duplicity/'
license=('GPL')
depends=('librsync' 'ncftp' 'python2' 'python2-boto' 'python2-gnupginterface' 'python2-paramiko')
-source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
- u1-ascii-error.patch)
-md5sums=('83a56c4c17fc50961c961943867deae4'
- '2bd2d4a3a331ab728473f46963dc87da'
- '7e19cc49547848ce847297b1880f5a8e')
+source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+md5sums=('4ade1de475e0af64211bb6933b593057'
+ '3521d679ba7dff46653313aa3b3e6855')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- # Fix ascii error in U1 backend
- patch -Np0 -i "${srcdir}/u1-ascii-error.patch"
-
# python2 fix
for file in $(find . -name '*.py' -print); do
sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
diff --git a/community/duplicity/u1-ascii-error.patch b/community/duplicity/u1-ascii-error.patch
deleted file mode 100644
index 0812653b9..000000000
--- a/community/duplicity/u1-ascii-error.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-=== modified file 'duplicity/backends/u1backend.py'
---- duplicity/backends/u1backend.py 2012-10-27 12:16:19 +0000
-+++ duplicity/backends/u1backend.py 2012-11-03 21:39:23 +0000
-@@ -207,7 +207,7 @@
- "Content-Type": content_type}
- resp, content = self.client.request(remote_full,
- method="PUT",
-- body=str(data),
-+ body=bytearray(data),
- headers=headers)
-
- def get(self, filename, local_path):
-