mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +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.4.1
|
|
pkgrel=1
|
|
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="49f02a63ef490c2e900cea6a0882891cd1381e0f398c4e38688444300b0f0e961c91c4f1a2355704bba7f170083594bd9e26c2a6cac934da9d87ab291accd27c sqlparse-0.4.1.tar.gz"
|