mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-12 09:12:36 +02:00
28 lines
844 B
Plaintext
28 lines
844 B
Plaintext
# Contributor: Alex Yam <alex@alexyam.com>
|
|
# Maintainer: Alex Yam <alex@alexyam.com>
|
|
pkgname=py3-bookkeeper
|
|
pkgver=4.16.2
|
|
pkgrel=0
|
|
pkgdesc="Python client for Apache Bookkeeper"
|
|
url="https://github.com/apache/bookkeeper"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
options="!check" # test requires bookkeeper server
|
|
subpackages="$pkgname-pyc"
|
|
source="bookkeeper-release-$pkgver.tar.gz::https://github.com/apache/bookkeeper/archive/refs/tags/release-$pkgver.tar.gz"
|
|
builddir="$srcdir/bookkeeper-release-$pkgver/stream/clients/python"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
2826cbd9c8769a8d6f9d0c6102999684bccf9f667ca693e5f6fabb1e4c99ce096a9f99b51d87e5eae311bd5a8f3b8557e93edaaa8a00fd0e21be68aad44811eb bookkeeper-release-4.16.2.tar.gz
|
|
"
|