mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
46 lines
1.1 KiB
Text
46 lines
1.1 KiB
Text
# Contributor: Thomas Boerger <thomas@webhippie.de>
|
|
# Maintainer: Thomas Boerger <thomas@webhippie.de>
|
|
pkgname=py-pymysql
|
|
_pkgname=PyMySQL
|
|
pkgver=0.7.11
|
|
pkgrel=0
|
|
pkgdesc="Pure Python MySQL Client"
|
|
url="https://pypi.python.org/pypi/PyMySQL"
|
|
arch="noarch"
|
|
license="MIT"
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
rm -r "$subpkgdir"/usr/lib/python*/site-packages/pymysql/tests
|
|
}
|
|
|
|
sha512sums="23a9bf79a8c19c769399354986c4eec90fa1d1a4dd09be6055c6da28b1c45e96900957f697b7335afbe5651d8127f6c85082b0bd817f49a94d3321f8a34c88aa py-pymysql-0.7.11.tar.gz"
|