mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-18 06:17:10 +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.1 KiB
Text
31 lines
1.1 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-sphinxcontrib-issuetracker
|
|
_pkgname=sphinxcontrib-issuetracker
|
|
pkgver=0.11
|
|
pkgrel=7
|
|
pkgdesc="Sphinx issuetracker extension"
|
|
url="https://github.com/ignatenkobrain/sphinxcontrib-issuetracker"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="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-issuetracker" # for backwards compatibility
|
|
provides="py-sphinxcontrib-issuetracker=$pkgver-r$pkgrel" # for backwards compatibility
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="fb4a977bea22451a3d90b16821fc2a38ed53b17913666ca250e9aab8bb1726bbdb52fb2b6dbb2ae512a0ca6cc3d33dcddeba758c02c77b099180443d67e147c9 sphinxcontrib-issuetracker-0.11.tar.gz"
|