# Template file for 'python-pycparser'
pkgname=python-pycparser
version=2.21
revision=1
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="python-ply"
checkdepends="python3-ply python3-pytest"
short_desc="Complete C99 parser in pure Python (Python2)"
maintainer="Orphaned <orphan@voidlinux.org>"
homepage="https://github.com/eliben/pycparser"
license="BSD-3-Clause"
distfiles="${PYPI_SITE}/p/pycparser/pycparser-${version}.tar.gz"
checksum=e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206

do_check() {
	python3 -m pytest
}

post_install() {
	# replace bundled copy of ply
	for pyver in $py2_ver $py3_ver; do
		rm -rf ${DESTDIR}/usr/lib/python${pyver}/site-packages/pycparser/ply
		ln -sf ../ply ${DESTDIR}/usr/lib/python${pyver}/site-packages/pycparser/ply
	done
	vlicense LICENSE
}

python3-pycparser_package() {
	depends="python3-ply"
	short_desc="${short_desc/Python2/Python3}"
	pkg_install() {
		vmove usr/lib/python3*
		vlicense LICENSE
	}
}
