mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 12:45:20 +03:00
40 lines
1.1 KiB
Text
40 lines
1.1 KiB
Text
# Contributor: Thomas Boerger <thomas@webhippie.de>
|
|
# Maintainer: Thomas Boerger <thomas@webhippie.de>
|
|
pkgname=py3-sqlparse
|
|
_pkgname=sqlparse
|
|
pkgver=0.3.1
|
|
pkgrel=0
|
|
pkgdesc="A non-validating SQL parser module for Python"
|
|
url="https://sqlparse.readthedocs.io"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
replaces="py-sqlparse" # Backwards compatibility
|
|
provides="py-sqlparse=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 -m pytest .
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
|
|
# Add version suffix to executable files.
|
|
local path; for path in "$pkgdir"/usr/bin/*; do
|
|
mv "$path" "$path-3"
|
|
done
|
|
|
|
mkdir -p "$pkgdir"/usr/bin
|
|
ln -s sqlformat-3 "$pkgdir"/usr/bin/sqlformat
|
|
}
|
|
|
|
sha512sums="4c56a528b43578a7a48fc31cee369215b15761d9903ea1d8e034c69f0eb6431dd15362aab13af25a36fccb361436f1cba746bcbb515cbab5d30319629dd2ddfb sqlparse-0.3.1.tar.gz"
|