mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-17 15:06:53 +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
31 lines
1 KiB
Text
31 lines
1 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-sphinxcontrib-htsql
|
|
_pkgname=sphinxcontrib-htsql
|
|
pkgver=0.1.5
|
|
pkgrel=8
|
|
pkgdesc="Sphinx htsql extension"
|
|
url="https://pypi.org/project/sphinxcontrib-htsql"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="python3 py3-sphinx"
|
|
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"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-sphinxcontrib-htsql" # Backwards compatibility
|
|
provides="py-sphinxcontrib-htsql=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="778114bd18f3f0d3f08465ccb477949d7934eca2223d346cc130cbb9256572d769082b86436ce60211b030965155792c6ab6d02074fd47d3838a26c906092de6 sphinxcontrib-htsql-0.1.5.tar.gz"
|