diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-08 14:22:55 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-08 14:25:13 -0300 |
commit | 9a61db248c82b0a1f924aeeaf828f32cdfaa50e9 (patch) | |
tree | 53b21503b226b4a6a5c277e8e9cee7be4bfaf8ce | |
parent | bbad61d0623b30887a5a5561618e49911c07e157 (diff) | |
download | aports-9a61db248c82b0a1f924aeeaf828f32cdfaa50e9.tar.bz2 aports-9a61db248c82b0a1f924aeeaf828f32cdfaa50e9.tar.xz |
testing/py3-flask-autorouter: drop py2
-rw-r--r-- | testing/py3-flask-autorouter/APKBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/testing/py3-flask-autorouter/APKBUILD b/testing/py3-flask-autorouter/APKBUILD index 9905d46eb8..b1bd784af0 100644 --- a/testing/py3-flask-autorouter/APKBUILD +++ b/testing/py3-flask-autorouter/APKBUILD @@ -1,27 +1,27 @@ # Contributor: Fabian Affolter <fabian@affolter-engineering.ch> # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> -pkgname=py-flask-autorouter +pkgname=py3-flask-autorouter _pkgname=flask-autorouter pkgver=0.2.1 -pkgrel=0 +pkgrel=1 pkgdesc="Flask generating URL routing" url="https://pypi.python.org/pypi/flask-autorouter" arch="noarch" license="MIT" -depends="python2 py-flask" -makedepends="python2-dev py-setuptools" +depends="python3 py3-flask" +makedepends="py3-setuptools" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" - builddir="$srcdir/$_pkgname-$pkgver" +replaces="py-flask-autorouter" # Backwards compatibility +provides="py-flask-autorouter=$pkgver-r$pkgrel" # Backwards compatibility + build() { - cd "$builddir" - python2 setup.py build + python3 setup.py build } package() { - cd "$builddir" - python2 setup.py install --prefix=/usr --root="$pkgdir" + python3 setup.py install --prefix=/usr --root="$pkgdir" } sha512sums="d588377c2dafee3e478de2a03b7e5819df4f63e976d12b758e5da52fdeda4ec662538c174a7c0411195f0abaf9e3e7a942d1f571360344fcc296b8e18a682ead flask-autorouter-0.2.1.tar.gz" |