diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-09-04 01:57:36 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-09-04 01:57:36 -0300 |
commit | 0be822175bb3cef0534b9a0597e84ae1ee6374ec (patch) | |
tree | c9a4fb91c61309280fd8201c7cb52789ce02a7c6 /nonprism/duplicity-nonprism/PKGBUILD | |
parent | 468e115b1432c745ce9ccf06d2fcca6b3cfb7227 (diff) | |
download | abslibre-0be822175bb3cef0534b9a0597e84ae1ee6374ec.tar.gz abslibre-0be822175bb3cef0534b9a0597e84ae1ee6374ec.tar.bz2 abslibre-0be822175bb3cef0534b9a0597e84ae1ee6374ec.zip |
remove nonprism suffix and add complex pkgrel on nonprism packages
Diffstat (limited to 'nonprism/duplicity-nonprism/PKGBUILD')
-rw-r--r-- | nonprism/duplicity-nonprism/PKGBUILD | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/nonprism/duplicity-nonprism/PKGBUILD b/nonprism/duplicity-nonprism/PKGBUILD deleted file mode 100644 index a145c4165..000000000 --- a/nonprism/duplicity-nonprism/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# $Id: PKGBUILD 110919 2014-05-09 15:34:16Z lfleischer $ -# Maintainer (Arch): Lukas Fleischer <archlinux at cryptocrack dot de> -# Contributor (Arch): Kaiting Chen <kaitocracy@gmail.com> -# Contributor (Arch): Aaron Schaefer <aaron@elasticdog.com> -# Maintainer: André Silva <emulatorman@parabola.nu> - -_pkgname=duplicity -pkgname=duplicity-nonprism -pkgver=0.6.24 -pkgrel=1 -pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm, without python2-gdata recommendation' -arch=('i686' 'x86_64' 'mips64el') -url='http://www.nongnu.org/duplicity/' -license=('GPL') -replaces=($_pkgname) -conflicts=($_pkgname) -provides=($_pkgname=$pkgver) -depends=('gnupg' 'librsync' 'ncftp' 'python2-paramiko' 'python2-lockfile') -makedepends=('python2-setuptools') -optdepends=('lftp: FTPS backend' - 'python2-boto: Amazon S3 backend' - 'python2-gobject: GIO backend' - 'gvfs: GIO backend' - 'python2-httplib2: Ubuntu One backend' - 'python2-oauthlib: Ubuntu One backend' - 'rsync: rsync backend') -source=("https://launchpad.net/$_pkgname/0.6-series/$pkgver/+download/$_pkgname-$pkgver.tar.gz"{,.sig}) -md5sums=('5d4e9329a6d793880909d18b0736ff06' - 'SKIP') - -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"/* -} |