mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
57 lines
1.4 KiB
Text
57 lines
1.4 KiB
Text
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
pkgname=py-tox
|
|
_pkgname=${pkgname#py-*}
|
|
pkgver=2.7.0
|
|
pkgrel=0
|
|
pkgdesc="virtualenv management and test command line tool"
|
|
url="https://tox.readthedocs.org/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
_depends="py-virtualenv"
|
|
depends="py-py py-pluggy py-argparse"
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
options="!check" # temp disable as requires itself
|
|
#checkdepends="py-tox"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/tox-dev/$_pkgname/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
depends="${depends//py-/py2-} $_depends"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
depends="${depends//py-/py3-}"
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$depends $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
sed -i 's|envlist.*|envlist=check,py{27,36}-pytest{30},flakes|' tox.ini
|
|
tox
|
|
}
|
|
|
|
sha512sums="ff300e2ee21f66a50365709ea71b68394b2207496e9858ff09012dfcd63527ba8404835a233d30b732a603ea774d8b86a169f874db8ca8cc66733a545cd41e19 py-tox-2.7.0.tar.gz"
|