aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-protobuf/APKBUILD
blob: da983aa7a049a200c4e5470f608623c662c0d8fe (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
56
# Maintainer: Corentin Henry <corentinhenry@gmail.com>
# Contributor: Corentin Henry <corentinhenry@gmail.com>
pkgname=py-protobuf
_pkgname=${pkgname#py-}
pkgver=3.5.1
pkgrel=0
pkgdesc="Google's data interchange format."
url="https://github.com/google/protobuf"
arch="noarch"
license="BSD"
depends="py-six>=1.9"
makedepends="python2-dev python3-dev py-setuptools py-google-apputils"
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/protobuf-$pkgver

build() {
	cd "$builddir"
	python2 setup.py build
	python3 setup.py build
}

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

check() {
	cd "$builddir"
	python2 setup.py test
	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="4406bb9687a949a92cad27a7c9cdf63dca9c73041e796da6731c0d5076ea8e46299be17e77df453bf94340fe5d96b2b6f2436962a126c3157cf21606b42a60ae  py-protobuf-3.5.1.tar.gz"