aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-protobuf/APKBUILD
blob: 96b1443fd7e3f6a0a249c62bf8c5b92d20cdfa1c (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Maintainer: Corentin Henry <corentinhenry@gmail.com>
# Contributor: Corentin Henry <corentinhenry@gmail.com>
pkgname=py-protobuf
_pkgname=${pkgname#py-}
pkgver=3.8.0
pkgrel=0
pkgdesc="Google's data interchange format."
url="https://github.com/google/protobuf"
arch="noarch"
license="BSD-3-Clause"
depends="py-six>=1.9"
makedepends="protobuf py-setuptools py3-setuptools py-google-apputils"
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
# 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

build() {
	python2 setup.py build
	python3 setup.py build
}

package() {
	mkdir -p "$pkgdir"
}

check() {
	python3 setup.py test
}

_py2() {
	replaces="$pkgname"
	depends="${depends//py-/py2-}"
	_py python2
}

_py3() {
	depends="${depends//py-/py3-}"
	_py python3
}

_py() {
	local python="$1"
	pkgdesc="$pkgdesc (for $python)"
	depends="$depends $python"
	install_if="$pkgname=$pkgver-r$pkgrel $python"

	cd "$builddir"
	$python setup.py install --prefix=/usr --root="$subpkgdir"
	# correct permissions
	chmod +r "$subpkgdir"/usr/lib/*/site-packages/*/*
}

sha512sums="7ef725ad70d91154c69ffabfa3d292abdd477cf5be97ebcee8404f1b4354a5620108169e2e2c48fdacd09ea5e73957f30c1bcfd98d01c84916a6f7b416a4b9a5  protobuf-python-3.8.0.tar.gz"