diff options
author | prspkt <prspkt@protonmail.com> | 2018-07-17 18:09:28 +0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-07-17 20:24:59 +0000 |
commit | 2d1360e9a87293b21c606023b1938e24343d3c31 (patch) | |
tree | 636112726133bdbaeb4a263f41558fe2e8ba5749 /testing/py-flask-peewee | |
parent | 3a2a7dafc76a0ba8bd7381fb4c0f5d1a482bfb4e (diff) | |
download | aports-2d1360e9a87293b21c606023b1938e24343d3c31.tar.bz2 aports-2d1360e9a87293b21c606023b1938e24343d3c31.tar.xz |
testing/py-flask-peewee: upgrade to python3
Diffstat (limited to 'testing/py-flask-peewee')
-rw-r--r-- | testing/py-flask-peewee/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/py-flask-peewee/APKBUILD b/testing/py-flask-peewee/APKBUILD index 75cd2b825d..91071f7b19 100644 --- a/testing/py-flask-peewee/APKBUILD +++ b/testing/py-flask-peewee/APKBUILD @@ -8,9 +8,9 @@ pkgdesc="Flask integration for peewee" url="http://pypi.python.org/pypi/flask-peewee" arch="noarch" license="MIT" -depends="python2 py-flask py-peewee" +depends="python3 py3-flask py-peewee" depends_dev="" -makedepends="python2-dev py-setuptools" +makedepends="python3-dev py3-setuptools" install="" subpackages="" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" @@ -28,12 +28,12 @@ prepare() { build() { cd "$_builddir" - python2 setup.py build || return 1 + python3 setup.py build || return 1 } package() { cd "$_builddir" - python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1 + python3 setup.py install --prefix=/usr --root="$pkgdir" || return 1 } sha512sums="e9773a46e73eb03864487d98da1c1f094a13807c2364331cdfad56878e2d8424628d04769e8028516ba62577c4a9c32219d2dffeabb87e88ae37baaff22f5bc9 flask-peewee-3.0.0.tar.gz" |