diff options
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/python2-authres/PKGBUILD | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/pcr/python2-authres/PKGBUILD b/pcr/python2-authres/PKGBUILD index c2d66344d..bb313d953 100644 --- a/pcr/python2-authres/PKGBUILD +++ b/pcr/python2-authres/PKGBUILD @@ -1,9 +1,13 @@ -# Maintainer: Thomas Haider <t.haider@deprecate.de> -# Contributor: Filip S. Adamsen <fsa [at] fsadev [dot] com> -# Contributor: Samed Beyribey <ras0ir@eventualis.org> +# Maintainer (AUR): Thomas Haider <t.haider@deprecate.de> +# Contributor (AUR): Filip S. Adamsen <fsa [at] fsadev [dot] com> +# Contributor (AUR): Samed Beyribey <ras0ir@eventualis.org> + +# parabola changes and rationale: +# no changes. + pkgname=python2-authres _pkgname=authentication-results-python -pkgver=0.602 +pkgver=0.900 pkgrel=1 pkgdesc="Python2 Authentication-Results Headers generation and parsing" arch=('any') @@ -11,16 +15,16 @@ url="http://launchpad.net/authentication-results-python" license=('Apache') depends=('python2') conflicts=('python-authres') -source=(http://launchpad.net/$_pkgname/trunk/$pkgver/+download/authres-$pkgver.tar.gz) - +source=("https://launchpad.net/$_pkgname/$pkgver/$pkgver/+download/authres-$pkgver.tar.gz") +sha256sums=('de91d6cc6e5c6fef545bbf0a810a765fab4ca162906d14f3f2a6b9858602c186') + build() { cd "$srcdir/authres-$pkgver" - python2 setup.py build + python2 setup.py build } package() { cd "$srcdir/authres-$pkgver" - python2 setup.py install --root=$pkgdir --optimize=1 + python2 setup.py install --root="$pkgdir" --optimize=1 } -sha256sums=('41cea7fcc3387e381b520053dbbba1825598b6cb9d45c505ae466d7a2a27edc3') |