aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-pypeg2/APKBUILD
blob: 61e88e502f180b7c03de93980464ede24aa7061f (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
57
58
# Contributor: Orson Teodoro <orsonteodoro@hotmail.com>
# Maintainer: Orson Teodoro <orsonteodoro@hotmail.com>
pkgname=py-pypeg2
_pkgname=pypeg2
__pkgname=pypeg
pkgver=2.15.2
pkgrel=0
pkgdesc="An intrinsic PEG Parser-Interpreter for Python"
url="https://fdik.org/pyPEG2/"
arch="noarch"
license="GPL-2.0-only"
_gitrev="43b84d987ec1"
depends="py-lxml"
makedepends="py-setuptools py3-setuptools"
subpackages="py2-$_pkgname:_py2 py3-$_pkgname:_py3 $pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://bitbucket.org/fdik/$__pkgname/get/$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver

prepare() {
	mv "$srcdir"/fdik-$__pkgname-* "$builddir"
	default_prepare
}

check() {
	cd "$builddir"
	python2 setup.py check
	python3 setup.py check
	sed -i -e "s|PYTHON=python3.3||g" Makefile
	PYTHON="/usr/bin/python2" make test
	PYTHON="/usr/bin/python3" make test
}

_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"
}

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

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

package() {
	cd "$builddir"
	install -d "$pkgdir"/usr/share/doc/$pkgname
	install -t "$pkgdir"/usr/share/doc/$pkgname CHANGES.txt README.txt
}

sha512sums="425e9f56c2353687ab0a77789c209359fd0cf50a949f39fea88c2e153737fbd4e7b0c9716895606a912fa4b98ced3380361739ebddeb13f60c6aad9e41a018d7  py-pypeg2-2.15.2.tar.gz"