mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
testing/py-mock: new aport
A Python Mocking and Patching Library for Testing http://www.voidspace.org.uk/python/mock/
This commit is contained in:
parent
c1aa2842a0
commit
2e2bfc43ec
41
testing/py-mock/APKBUILD
Normal file
41
testing/py-mock/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=py-mock
|
||||
_pkgname=mock
|
||||
pkgver=1.0.1
|
||||
pkgrel=0
|
||||
pkgdesc="A Python Mocking and Patching Library for Testing"
|
||||
url="http://www.voidspace.org.uk/python/mock/"
|
||||
arch="noarch"
|
||||
license="BSD"
|
||||
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="c3971991738caa55ec7c356bbc154ee2 mock-1.0.1.tar.gz"
|
||||
sha256sums="b839dd2d9c117c701430c149956918a423a9863b48b09c90e30a6013e7d2f44f mock-1.0.1.tar.gz"
|
||||
sha512sums="4f6f4ebc34843e16b15d866e415ad9992e79bd266a63a22fee31b773ba77615e3406bc8890ceed92c0ee296380d68c46299c4c4448a3526f9cb96b258d32cf58 mock-1.0.1.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user