mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/py-pluggy: new aport
This commit is contained in:
parent
a8863590bd
commit
be4e3a69ca
56
testing/py-pluggy/APKBUILD
Normal file
56
testing/py-pluggy/APKBUILD
Normal file
@ -0,0 +1,56 @@
|
||||
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
||||
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
||||
pkgname=py-pluggy
|
||||
_pkgname=${pkgname#py-*}
|
||||
pkgver=0.4.0
|
||||
pkgrel=0
|
||||
pkgdesc="Plugin management and hook calling for Python"
|
||||
url="https://pluggy.readthedocs.io/en/latest/"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
makedepends="python2-dev python3-dev py-setuptools"
|
||||
#checkdepends="flake8 pytest py-tox"
|
||||
options="!check" # temp disable as requires tox module
|
||||
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/pytest-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"
|
||||
_py python2
|
||||
}
|
||||
|
||||
_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}|' tox.ini
|
||||
tox
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
sha512sums="dea3cdc045d295adf99ef1932ffad542bf57d5ecd91f5b48815f0a65e5f7ffd56e8e727436a20c83e5c261995092a0c561c81a5b20566f97768a24be1dd52eb1 py-pluggy-0.4.0.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user