diff options
author | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
commit | dee9f17b595ea903a982d31d1124b302bb17e2ff (patch) | |
tree | 295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/duplicity/PKGBUILD | |
parent | 380530d02a5449fdef97b63b394a6743c3de0092 (diff) |
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/duplicity/PKGBUILD')
-rw-r--r-- | community/duplicity/PKGBUILD | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/community/duplicity/PKGBUILD b/community/duplicity/PKGBUILD deleted file mode 100644 index 56c51bbcf..000000000 --- a/community/duplicity/PKGBUILD +++ /dev/null @@ -1,53 +0,0 @@ -# $Id: PKGBUILD 92894 2013-06-18 09:01:17Z lfleischer $ -# Maintainer: Kaiting Chen <kaitocracy@gmail.com> -# Contributor: Aaron Schaefer <aaron@elasticdog.com> - -pkgname=duplicity -pkgver=0.6.21 -pkgrel=3 -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=('gnupg' 'librsync' 'ncftp' 'python2-paramiko') -optdepends=('lftp: FTPS backend' - 'python2-boto: Amazon S3 backend' - 'python2-gobject: GIO backend' - 'gvfs: GIO backend' - 'python2-gdata: Google Docs backend' - 'python2-httplib2: Ubuntu One backend' - 'python2-oauthlib: Ubuntu One backend' - 'rsync: rsync backend') -source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig} - "u1backend.patch") -md5sums=('4ade1de475e0af64211bb6933b593057' - '3521d679ba7dff46653313aa3b3e6855' - 'b7aede10a3f5503ae4428a506b57486c') - -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # Fix Ubuntu One backup (FS#35487, upstream revisions 912 and 913, will be fixed in 0.6.22). - patch -p0 duplicity/backends/u1backend.py ../u1backend.patch -} - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # python2 fix - for file in $(find . -name '*.py' -print); do - sed -i 's_^#!.*/usr/bin/python$_#!/usr/bin/python2_' $file - sed -i 's_^#!.*/usr/bin/env.*python$_#!/usr/bin/env python2_' $file - done -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - python2 setup.py install --root="$pkgdir" --optimize=1 - - # fix broken documentation permissions until upstream does (FS#27301) - chmod 644 "$pkgdir/usr/share/man/man1/$pkgname.1" - chmod 644 "$pkgdir/usr/share/man/man1/rdiffdir.1" - chmod 644 "$pkgdir/usr/share/doc/$pkgname-$pkgver"/* -} |