diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-03-23 19:52:17 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-03-23 19:52:17 (GMT) |
commit | 6751533ca5a79e39860e96f6a780536e849ee8b5 (patch) | |
tree | fa064b52ea4cc3f47a7a2ff10dc585dd8f3a4e32 /abs | |
parent | 99b462aa3e2a1b5ea4cf5bfa91476bfdfd87c2c8 (diff) | |
download | linhes_pkgbuild-6751533ca5a79e39860e96f6a780536e849ee8b5.zip linhes_pkgbuild-6751533ca5a79e39860e96f6a780536e849ee8b5.tar.gz linhes_pkgbuild-6751533ca5a79e39860e96f6a780536e849ee8b5.tar.bz2 |
python-hyperlink: dep of twisted
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core/python_modules/python-hyperlink/PKGBUILD | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/abs/core/python_modules/python-hyperlink/PKGBUILD b/abs/core/python_modules/python-hyperlink/PKGBUILD new file mode 100644 index 0000000..cfe2472 --- /dev/null +++ b/abs/core/python_modules/python-hyperlink/PKGBUILD @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Felix Yan <felixonmars@archlinux.org> + +pkgbase=python-hyperlink +pkgname=('python-hyperlink' 'python2-hyperlink') +pkgver=18.0.0 +pkgrel=1 +pkgdesc='A featureful, correct URL for Python' +arch=('any') +license=('BSD') +url='https://github.com/python-hyper/hyperlink' +makedepends=('python-idna' 'python2-idna' 'python-setuptools' 'python2-setuptools') +checkdepends=('python-pytest-runner' 'python2-pytest-runner') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/python-hyper/hyperlink/archive/v$pkgver.tar.gz") +sha512sums=('b50bdd7a635804da449a6f2902e833f39d408e72a2b8e46a8b2bb773e2c310e0d4dced3f683951f8777e6104fe8d4faa4390f1a677bfb257c0e88dff860f1523') + +prepare() { + cp -a hyperlink-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/hyperlink-$pkgver + python setup.py build + + cd "$srcdir"/hyperlink-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/hyperlink-$pkgver + python setup.py pytest + + cd "$srcdir"/hyperlink-$pkgver-py2 + python2 setup.py pytest +} + +package_python-hyperlink() { + depends=('python-idna') + + cd hyperlink-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +package_python2-hyperlink() { + depends=('python2-idna') + + cd hyperlink-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +# vim:set ts=2 sw=2 et: |