aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-protobuf/APKBUILD
blob: 74b38b05fa73b2bdd986a4192435c5e930b49581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Maintainer: Corentin Henry <corentinhenry@gmail.com>
# Contributor: Corentin Henry <corentinhenry@gmail.com>
pkgname=py3-protobuf
pkgver=3.11.3
pkgrel=0
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="629575037a17a69e88968438d4b7e6d4f73cb781a5dc5a1179dba66cbce36f9b602c3f6e541b915759217d986b47da9426c4dd6c3c94a8f6620eae1f7fa4fc8b  protobuf-python-3.11.3.tar.gz"