39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Template file for 'python-astroid'
|
|
pkgname=python-astroid
|
|
version=1.4.8
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="astroid-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-six python-lazy-object-proxy python-wrapt"
|
|
pycompile_module="astroid"
|
|
short_desc="Abstract syntax tree for Python2"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/PyCQA/astroid"
|
|
license="GPL-2, LGPL-2.1"
|
|
distfiles="${PYPI_SITE}/a/astroid/astroid-${version}.tar.gz"
|
|
checksum=5f064785a7e45ed519285f2eb30b795e58a4932a0736b32030da6fef3394ddb3
|
|
|
|
post_install() {
|
|
# no tests
|
|
rm -rf ${DESTDIR}/usr/lib/python*/site-packages/astroid/tests
|
|
}
|
|
|
|
python3-astroid_package() {
|
|
noarch=yes
|
|
replaces="python3.4-astroid>=0"
|
|
depends="python3-six python3-lazy-object-proxy python3-wrapt"
|
|
pycompile_module="astroid"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|
|
python3.4-astroid_package() {
|
|
noarch=yes
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-astroid>=${version}_${revision}"
|
|
}
|