33 lines
980 B
Bash
33 lines
980 B
Bash
# Template file for 'python-astroid'
|
|
pkgname=python-astroid
|
|
version=1.6.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="astroid-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-six python-lazy-object-proxy python-wrapt
|
|
python-backports.functools_lru_cache python-enum34 python-singledispatch"
|
|
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=71dadba2110008e2c03f9fde662ddd2053db3c0489d0e03c94e828a0399edd4f
|
|
|
|
post_install() {
|
|
# no tests
|
|
rm -rf ${DESTDIR}/usr/lib/python*/site-packages/astroid/tests
|
|
}
|
|
|
|
python3-astroid_package() {
|
|
noarch=yes
|
|
depends="python3-six python3-lazy-object-proxy python3-wrapt"
|
|
pycompile_module="astroid"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|