testing/py3-ipware: move from user
This commit is contained in:
parent
f38b6ca78c
commit
03aec9e958
1 changed files with 13 additions and 4 deletions
|
@ -9,19 +9,28 @@ arch="noarch"
|
||||||
pkgdesc="A python package for server applications to retrieve client's IP address"
|
pkgdesc="A python package for server applications to retrieve client's IP address"
|
||||||
url="https://pypi.python.org/project/$_pyname"
|
url="https://pypi.python.org/project/$_pyname"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
depends='python3'
|
makedepends="
|
||||||
makedepends='py3-setuptools'
|
py3-setuptools
|
||||||
|
py3-gpep517
|
||||||
|
py3-installer
|
||||||
|
py3-wheel
|
||||||
|
"
|
||||||
options="!check" # No testsuite
|
options="!check" # No testsuite
|
||||||
source="$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz"
|
source="$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz"
|
||||||
builddir="$srcdir"/$_pyname-$pkgver
|
builddir="$srcdir"/$_pyname-$pkgver
|
||||||
|
subpackages="$pkgname-pyc"
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
python3 setup.py build
|
gpep517 build-wheel \
|
||||||
|
--wheel-dir dist \
|
||||||
|
--output-fd 3 3>&1 >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
python3 setup.py install --root="$pkgdir"/ --optimize=1 --skip-build
|
python3 -m installer -d "$pkgdir" \
|
||||||
|
dist/*.whl
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
1e90bf41abf9e477ff5f8d2387584120425002b06ea64aa67368892a41bbbeda08a09e03e5c4c691dc82976706bc84824e27ac6a6f0f8d2a53fb658dd272f798 py3-ipware-0.9.0.tar.gz
|
1e90bf41abf9e477ff5f8d2387584120425002b06ea64aa67368892a41bbbeda08a09e03e5c4c691dc82976706bc84824e27ac6a6f0f8d2a53fb658dd272f798 py3-ipware-0.9.0.tar.gz
|
||||||
"
|
"
|
Loading…
Reference in a new issue