mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/py-responses: new aport
This commit is contained in:
parent
a21df24acd
commit
96bc87369e
46
testing/py-responses/APKBUILD
Normal file
46
testing/py-responses/APKBUILD
Normal file
@ -0,0 +1,46 @@
|
||||
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
||||
pkgname=py-responses
|
||||
pkgver=0.7.0
|
||||
pkgrel=0
|
||||
pkgdesc="generate and validate responses check digits"
|
||||
url="https://pypi.python.org/pypi/responses/"
|
||||
arch="noarch"
|
||||
license="BSD"
|
||||
depends="py-amqp"
|
||||
makedepends="python2-dev python3-dev py-setuptools"
|
||||
install=""
|
||||
subpackages="py2-responses:py2 py3-responses:py3"
|
||||
source="https://files.pythonhosted.org/packages/source/r/responses/responses-$pkgver.tar.gz"
|
||||
builddir="$srcdir/responses-$pkgver"
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
python2 setup.py build
|
||||
python3 setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir"
|
||||
}
|
||||
|
||||
_py() {
|
||||
local python="$1"
|
||||
pkgdesc="$pkgdesc ${python#python}"
|
||||
depends="$depends $python"
|
||||
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
||||
|
||||
cd "$builddir"
|
||||
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
||||
}
|
||||
|
||||
py2() {
|
||||
cd "$builddir"
|
||||
_py python2
|
||||
}
|
||||
|
||||
py3() {
|
||||
cd "$builddir"
|
||||
_py python3
|
||||
}
|
||||
|
||||
sha512sums="352cf833b2c2a0b30618daac62355f6e62df2f0ad8b7bacd19b3f815c40a69064088238a0ecc44faa49dc2fc65fd176b30c0cbc526b468d38833af59a715a6d5 responses-0.7.0.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user