diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-29 02:02:27 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-29 20:00:43 -0300 |
commit | 428c14f861935383116ee5ab497cc057920feaec (patch) | |
tree | 6aa18cf5bb1874273fe981dafd2912eb36c21135 /community/py3-sqlalchemy | |
parent | fda44c43d77f7f045613cc358109c77fb629fbf3 (diff) | |
download | aports-428c14f861935383116ee5ab497cc057920feaec.tar.bz2 aports-428c14f861935383116ee5ab497cc057920feaec.tar.xz |
community/py3-sqlalchemy: rename from py-sqlalchemy
Diffstat (limited to 'community/py3-sqlalchemy')
-rw-r--r-- | community/py3-sqlalchemy/APKBUILD | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/community/py3-sqlalchemy/APKBUILD b/community/py3-sqlalchemy/APKBUILD new file mode 100644 index 0000000000..b684bcbb83 --- /dev/null +++ b/community/py3-sqlalchemy/APKBUILD @@ -0,0 +1,61 @@ +# Contributor: Drew DeVault <sir@cmpwn.com> +# Maintainer: Drew DeVault <sir@cmpwn.com> +pkgname=py-sqlalchemy +_pkgname=SQLAlchemy +pkgver=1.3.2 +pkgrel=1 +pkgdesc="An object relational mapper for Python" +url="https://pypi.python.org/pypi/SQLAlchemy" +arch="all" +license="MIT" +makedepends="python2-dev python3-dev py2-setuptools py3-setuptools" +checkdepends=" + pytest py3-pytest py2-mock py3-mock py2-pytest-xdist py3-pytest-xdist +" +subpackages="py3-${pkgname#py-}:_py3 py2-${pkgname#py-}:_py2" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +prepare() { + cd "$builddir" + cp -r "$builddir" "$builddir"-py3 +} + +build() { + cd "$builddir" + python2 setup.py build + cd "$builddir"-py3 + python3 setup.py build +} + +check() { + cd "$builddir" + pytest-2 -n $JOBS + cd "$builddir"-py3 + pytest-3 -n $JOBS +} + +package() { + mkdir -p "$pkgdir" +} + +_py2() { + cd "$builddir" + replaces="$pkgname" + _py python2 +} + +_py3() { + cd "$builddir" + _py python3 +} + +_py() { + local python="$1" + pkgdesc="$pkgdesc ${python:6:1}" + depends="$depends $python" + install_if="$pkgname=$pkgver-r$pkgrel $python" + $python setup.py install --prefix=/usr --root="$subpkgdir" +} + +sha512sums="fbbcff21e722a26a914d701cce430fcc5dac503fffb65e385e86754f39b585b5a4c6b4914533bc4adfe48269130e9b5c1c8c539aa60481c721c2ce7cfedca1bf SQLAlchemy-1.3.2.tar.gz" |