mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-27 19:41:56 +01:00
29 lines
948 B
Plaintext
29 lines
948 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-bottle-pgsql
|
|
_pkgname=bottle-pgsql
|
|
pkgver=0.1
|
|
pkgrel=2
|
|
pkgdesc="Bottle PgSQL integration plugin"
|
|
options="!check" # No testsuite
|
|
url="https://github.com/raisoblast/bottle-pgsql"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-bottle"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-bottle-pgsql" # Backwards compatibility
|
|
provides="py-bottle-pgsql=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="a14d7cae86d7efa4cb7734886d34b8922fb06cbb47e46ecabf6cc993f9e266e2e072b1c0e6849689e6c11c3f20ce638753f2b6fcb4c2f68a3d5f90f1533292cb bottle-pgsql-0.1.tar.gz"
|