mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 14:26:38 +02:00
this is only a partial rebuild, including stuff that i built on my personal machine with python 3.12.2; might fail with 3.12.3
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-bottle-sqlalchemy
|
|
_pkgname=bottle-sqlalchemy
|
|
pkgver=0.4.3
|
|
pkgrel=8
|
|
pkgdesc="Bottle SQLAlchemy integration plugin"
|
|
options="!check" # No testsuite in tarballs or usable github tarballs
|
|
url="https://github.com/iurisilvio/bottle-sqlalchemy"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-bottle py3-sqlalchemy"
|
|
makedepends="py3-setuptools py3-gpep517 py3-wheel"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
replaces="py-bottle-sqlalchemy" # Backwards compat
|
|
provides="py-bottle-sqlalchemy=$pkgver-r$pkgrel" # Backwards compat
|
|
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="3b7eeafa1d8dcd5864b2a132ccf68eb0dfa738c090101615d0cef68f5b0f1efc2cecd66d34be59ac46aaa14c939e2bf7eeb0b6a8932921fa2bd11dc2dcf3a3aa bottle-sqlalchemy-0.4.3.tar.gz"
|