mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 07:31:35 +01:00
60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
pkgname=py-case
|
|
_pyname=case
|
|
pkgver=1.5.0
|
|
pkgrel=1
|
|
pkgdesc="Python unittest utilities"
|
|
url="https://github.com/celery/case/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
makedepends="python2-dev python3-dev py2-setuptools py3-setuptools"
|
|
checkdepends="
|
|
py2-coverage py3-coverage py2-mock py3-mock py2-nose py3-nose py2-unittest2
|
|
"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
_pypiprefix="${_pyname%${_pyname#?}}"
|
|
source="https://files.pythonhosted.org/packages/source/$_pypiprefix/$_pyname/$_pyname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pyname-$pkgver"
|
|
|
|
prepare() {
|
|
cd "$builddir"
|
|
cp -r "$builddir" "$builddir"-py2
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
cd "$builddir"-py2
|
|
python2 setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python3 setup.py test
|
|
cd "$builddir"-py2
|
|
python2 setup.py test
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
cd "$builddir"-py2
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
cd "$builddir"
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
_python="$1"
|
|
pkgdesc="$pkgdesc (for $_python)"
|
|
depends="$depends $_python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $_python"
|
|
$_python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
sha512sums="0ae03ab175903bc55a81df9c1847587960bec64202be66702456b447c3114d8a9b49fa7bfa08cb032040bc2c1f17411642392abee617e4400fae0a9b67d38702 case-1.5.0.tar.gz"
|