mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 09:27:19 +02:00
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
# Maintainer: Gennady Feldman <gena01@gmail.com>
|
|
# Contributor: Gennady Feldman <gena01@gmail.com>
|
|
pkgname=py3-avro
|
|
_pkgname=avro
|
|
pkgver=1.11.3
|
|
pkgrel=1
|
|
pkgdesc="Serialization and RPC framework"
|
|
url="https://avro.apache.org/"
|
|
# loongarch64: test failures
|
|
arch="noarch !loongarch64"
|
|
license="Apache-2.0"
|
|
depends="python3"
|
|
makedepends="
|
|
py3-gpep517
|
|
py3-isort
|
|
py3-setuptools
|
|
py3-wheel
|
|
"
|
|
checkdepends="py3-pytest"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/apache/$_pkgname/archive/release-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-release-$pkgver/lang/py"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer .dist/*.whl
|
|
.testenv/bin/python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
728609f562460e1115366663ede2c5d4acbdd6950c1ee3e434ffc65d28b72e3a43c3ebce93d0a8459f0c4f6c492ebb9444e2127a0385f38eb7cdf74b28f0c3ed py3-avro-1.11.3.tar.gz
|
|
"
|