mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 13:16:45 +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
967 B
Text
31 lines
967 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-aiohttp-jinja2
|
|
_pkgname=aiohttp_jinja2
|
|
pkgver=1.6
|
|
pkgrel=2
|
|
pkgdesc="Jinja2 template renderer for aiohttp"
|
|
options="!check" # Requires unpackaged pytest-aiohttp
|
|
url="https://github.com/aio-libs/aiohttp-jinja2"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="py3-aiohttp py3-jinja2"
|
|
makedepends="py3-setuptools py3-gpep517 py3-wheel"
|
|
subpackages="$pkgname-pyc"
|
|
source="$_pkgname-$pkgver.tar.gz::https://github.com/aio-libs/aiohttp-jinja2/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir"/aiohttp-jinja2-$pkgver
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
a434443580b050ac849f80ec3fc1815bce7b682febadb827e473e6b8b88d79017335cf2cd93bfc37d8ab79552afedaf5a67cb961341407d768bce0c15fa20b3c aiohttp_jinja2-1.6.tar.gz
|
|
"
|