mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
# Maintainer: Corentin Henry <corentinhenry@gmail.com>
|
|
# Contributor: Corentin Henry <corentinhenry@gmail.com>
|
|
pkgname=py3-protobuf
|
|
pkgver=3.10.1
|
|
pkgrel=1
|
|
pkgdesc="Google's data interchange format."
|
|
url="https://github.com/google/protobuf"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="py3-six>=1.9"
|
|
makedepends="protobuf py3-setuptools"
|
|
# NOTE: Always use releases of protobuf, not pypi or auto-generated GitHub
|
|
# tarballs as they do not contain the necessary componenets to run tests.
|
|
source="https://github.com/protocolbuffers/protobuf/releases/download/v$pkgver/protobuf-python-$pkgver.tar.gz"
|
|
builddir="$srcdir"/protobuf-$pkgver/python
|
|
|
|
replaces="py-protobuf" # Backwards compatibility
|
|
provides="py-protobuf=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
|
|
# correct permissions
|
|
chmod +r "$subpkgdir"/usr/lib/*/site-packages/*/*
|
|
}
|
|
|
|
sha512sums="7919391f73772459082da177164ef1767240dafd5b743bff2063ad9fa98da0b8b66c4b76f8d8dd09c3beb04d2aab9f1a164341916b53685006b03c004748a968 protobuf-python-3.10.1.tar.gz"
|