diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2014-08-21 21:16:09 +0000 |
---|---|---|
committer | Fabian Affolter <fabian@affolter-engineering.ch> | 2014-08-23 10:29:07 +0000 |
commit | 2e2bfc43ec0e502ddaad99f1442341db45d01bc8 (patch) | |
tree | 6d089d8ae3ee1fd0c6e09470434c25b326c53a9f /testing/py-mock | |
parent | c1aa2842a0bf660ede09c9be378b2a200354e18c (diff) | |
download | aports-2e2bfc43ec0e502ddaad99f1442341db45d01bc8.tar.bz2 aports-2e2bfc43ec0e502ddaad99f1442341db45d01bc8.tar.xz |
testing/py-mock: new aport
A Python Mocking and Patching Library for Testing
http://www.voidspace.org.uk/python/mock/
Diffstat (limited to 'testing/py-mock')
-rw-r--r-- | testing/py-mock/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-mock/APKBUILD b/testing/py-mock/APKBUILD new file mode 100644 index 0000000000..14a18d55bb --- /dev/null +++ b/testing/py-mock/APKBUILD @@ -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" |