diff options
author | Pierre-Gildas MILLON | 2017-10-17 17:03:43 +0200 |
---|---|---|
committer | Pierre-Gildas MILLON | 2017-10-17 17:03:43 +0200 |
commit | 2ff2edafd3a0addeda287db66aaee39ce3f37e7a (patch) | |
tree | b364c7d014a5242356d286d5c9506e713574945e | |
parent | ce171beac3b0312bef9668a350b408b64faa0885 (diff) | |
download | aur-python2-pypac.tar.gz |
Fix dependencies
-rw-r--r-- | .SRCINFO | 5 | ||||
-rw-r--r-- | PKGBUILD | 9 |
2 files changed, 11 insertions, 3 deletions
@@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Tue Oct 17 14:20:53 UTC 2017 +# Tue Oct 17 15:02:56 UTC 2017 pkgbase = python2-pypac pkgdesc = Proxy auto-config and auto-discovery for Python pkgver = 0.3.1 @@ -9,6 +9,9 @@ pkgbase = python2-pypac license = Apache 2.0 makedepends = python2-setuptools depends = python2 + depends = python2-requests>=2.13.0 + depends = python2-js2py>=0.44 + depends = python2-tld>=0.7.8 source = https://github.com/carsonyl/pypac/archive/v0.3.1.tar.gz md5sums = 3221632b0b434c10162f281a849ba861 @@ -7,14 +7,19 @@ pkgdesc="Proxy auto-config and auto-discovery for Python" arch=('any') url="https://pypi.python.org/pypi/pypac/" license=('Apache 2.0') -depends=('python2') +depends=( + 'python2' + 'python2-requests>=2.13.0' + 'python2-js2py>=0.44' + 'python2-tld>=0.7.8' + ) makedepends=('python2-setuptools') source=("https://github.com/carsonyl/pypac/archive/v$pkgver.tar.gz") md5sums=('3221632b0b434c10162f281a849ba861') build() { cd "${srcdir}/pypac-${pkgver}" - python setup.py bdist_wheel + python2 setup.py bdist_wheel } package() { |