aboutsummaryrefslogtreecommitdiffstats
path: root/community/py-sqlparse
diff options
context:
space:
mode:
Diffstat (limited to 'community/py-sqlparse')
-rw-r--r--community/py-sqlparse/APKBUILD60
1 files changed, 0 insertions, 60 deletions
diff --git a/community/py-sqlparse/APKBUILD b/community/py-sqlparse/APKBUILD
deleted file mode 100644
index a7bf0ea18c..0000000000
--- a/community/py-sqlparse/APKBUILD
+++ /dev/null
@@ -1,60 +0,0 @@
-# Contributor: Thomas Boerger <thomas@webhippie.de>
-# Maintainer: Thomas Boerger <thomas@webhippie.de>
-pkgname=py-sqlparse
-_pkgname=sqlparse
-pkgver=0.3.0
-pkgrel=0
-pkgdesc="A non-validating SQL parser module for Python"
-url="https://sqlparse.readthedocs.io"
-arch="noarch"
-license="BSD"
-depends=""
-checkdepends="pytest"
-makedepends="python2-dev py-setuptools python3-dev"
-subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
-source="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
-}
-
-check() {
- cd "$builddir"
- python2 -m pytest .
- python3 -m pytest .
-}
-
-package() {
- mkdir -p "$pkgdir"/usr/bin
- ln -s sqlformat-3 "$pkgdir"/usr/bin/sqlformat
-}
-
-_py2() {
- replaces="$pkgname"
- _py python2
-}
-
-_py3() {
- _py python3
-}
-
-_py() {
- local python="$1"
- local pyver="${1:6:1}"
- pkgdesc="$pkgdesc (for $python)"
- depends="$depends $python"
- install_if="$pkgname=$pkgver-r$pkgrel $python"
-
- cd "$builddir"
- $python setup.py install --prefix=/usr --root="$subpkgdir"
-
- # Add version suffix to executable files.
- local path; for path in "$subpkgdir"/usr/bin/*; do
- mv "$path" "$path-$pyver"
- done
-}
-
-sha512sums="596d25f5fa2c797fe5652e36e9633397e7867586ff0959f52d1ff861c16d0e7c73644daf03d74169dd20255e802b7369d4dace0a44a3d94c15bd67faa41df551 sqlparse-0.3.0.tar.gz"