mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-16 15:02:36 +01:00
parent
9d500de059
commit
c1aa2842a0
41
testing/pytest/APKBUILD
Normal file
41
testing/pytest/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||||
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||||
|
pkgname=pytest
|
||||||
|
_pkgname=pytest
|
||||||
|
pkgver=2.6.1
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="A python test library"
|
||||||
|
url="http://pytest.org"
|
||||||
|
arch="noarch"
|
||||||
|
license="MIT"
|
||||||
|
depends="python"
|
||||||
|
depends_dev=""
|
||||||
|
makedepends="python-dev py-setuptools"
|
||||||
|
install=""
|
||||||
|
subpackages=""
|
||||||
|
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||||||
|
|
||||||
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
||||||
|
prepare() {
|
||||||
|
local i
|
||||||
|
cd "$_builddir"
|
||||||
|
for i in $source; do
|
||||||
|
case $i in
|
||||||
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$_builddir"
|
||||||
|
python setup.py build || return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$_builddir"
|
||||||
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
md5sums="bb353f6cf6d9ff83ff7f2dfbeaca47a3 pytest-2.6.1.tar.gz"
|
||||||
|
sha256sums="994dabcb3149659d259add2aa7d11bff4d35efb7cf4c8233fa9b0b62c1255c3c pytest-2.6.1.tar.gz"
|
||||||
|
sha512sums="1bfbe27491800943484616a37cfe0f2f8677e3b2a25aee19f842bdf66a9c0205af8c2aecaeb50823970ab9f7042b1bb9115e3c4d689fe568a17a062c50ead829 pytest-2.6.1.tar.gz"
|
||||||
Loading…
x
Reference in New Issue
Block a user