diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2014-11-23 14:56:59 +0000 |
---|---|---|
committer | Fabian Affolter <fabian@affolter-engineering.ch> | 2014-11-27 07:54:00 +0000 |
commit | c59e61131c8c1f1dfea790de80f0d25170304a29 (patch) | |
tree | 74bc8582330c766bc92b4b226f220864211f78e8 /testing | |
parent | 851238efa753cf2ba802299483e4b956e4a68957 (diff) | |
download | aports-c59e61131c8c1f1dfea790de80f0d25170304a29.tar.bz2 aports-c59e61131c8c1f1dfea790de80f0d25170304a29.tar.xz |
testing/py-flask-loopback: new aport
Library for using flask applications without actual network operations
https://pypi.python.org/pypi/Flask-Loopback
Diffstat (limited to 'testing')
-rw-r--r-- | testing/py-flask-loopback/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-flask-loopback/APKBUILD b/testing/py-flask-loopback/APKBUILD new file mode 100644 index 0000000000..f37c38a47e --- /dev/null +++ b/testing/py-flask-loopback/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-flask-loopback +_pkgname=Flask-Loopback +pkgver=1.2.3 +pkgrel=0 +pkgdesc="A library to create requests without network connection" +url="http://pypi.python.org/pypi/Flask-Loopback" +arch="noarch" +license="BSD" +depends="python py-flask py-requests py-urlobject" +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="1281519c7b491446547b808ad479df9c Flask-Loopback-1.2.3.tar.gz" +sha256sums="5d67e55758b03436ceee61375bf924af8c39cb6a43273a50b29e94f7aceaf882 Flask-Loopback-1.2.3.tar.gz" +sha512sums="a206c53026645d7e7bfd168b05cce375780c4568292381269eb7bd05a2486a0c12353554509b54ec2fd46339cb9882194992bea26165eca691f5e58dedc96954 Flask-Loopback-1.2.3.tar.gz" |