mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01:00
47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
# Maintainer:
|
|
pkgname=py-responses
|
|
pkgver=0.7.0
|
|
pkgrel=2
|
|
pkgdesc="generate and validate responses check digits"
|
|
url="https://pypi.python.org/pypi/responses/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="py-cookies"
|
|
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"
|