# Contributor: William Pitcock # Contributor: Drew DeVault # Maintainer: William Pitcock pkgname=py-sqlalchemy _pkgname=SQLAlchemy pkgver=1.3.1 pkgrel=0 pkgdesc="An object relational mapper for Python" url="https://pypi.python.org/pypi/SQLAlchemy" arch="all" license="MIT" makedepends="python2-dev py-setuptools python3-dev" checkdepends="pytest py-mock 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="a5f9506060cce7c688be5d0b25c5a34a904a64e07447e11d9a2e546c1020849038f370f5808d817f192ec36d6df7443ad328145be1af2baaad3913dab6b4cb8d SQLAlchemy-1.3.1.tar.gz"