diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-18 23:16:53 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-18 23:16:53 +0000 |
commit | c50bf6c0bfdefcdb0aef2e02290b78840c40da47 (patch) | |
tree | ec914ba170cba6adb9affc856efd6db560d91b1c /dev-python/astng | |
parent | Improve error messages. (diff) | |
download | gentoo-2-c50bf6c0bfdefcdb0aef2e02290b78840c40da47.tar.gz gentoo-2-c50bf6c0bfdefcdb0aef2e02290b78840c40da47.tar.bz2 gentoo-2-c50bf6c0bfdefcdb0aef2e02290b78840c40da47.zip |
Version bump.
(Portage version: 2.2_rc83_p41/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/astng')
-rw-r--r-- | dev-python/astng/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/astng/astng-0.20.2.ebuild | 60 |
2 files changed, 67 insertions, 1 deletions
diff --git a/dev-python/astng/ChangeLog b/dev-python/astng/ChangeLog index a0b9ab1b73cd..9d60c2ee1760 100644 --- a/dev-python/astng/ChangeLog +++ b/dev-python/astng/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/astng # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/astng/ChangeLog,v 1.41 2010/07/18 14:06:29 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/astng/ChangeLog,v 1.42 2010/09/18 23:16:53 arfrever Exp $ + +*astng-0.20.2 (18 Sep 2010) + + 18 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +astng-0.20.2.ebuild: + Version bump. 18 Jul 2010; <nixnut@gentoo.org> astng-0.20.1.ebuild: ppc stable #325377 diff --git a/dev-python/astng/astng-0.20.2.ebuild b/dev-python/astng/astng-0.20.2.ebuild new file mode 100644 index 000000000000..f98beb5dbd48 --- /dev/null +++ b/dev-python/astng/astng-0.20.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/astng/astng-0.20.2.ebuild,v 1.1 2010/09/18 23:16:53 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils + +DESCRIPTION="Abstract Syntax Tree New Generation for logilab packages" +HOMEPAGE="http://www.logilab.org/projects/astng/ http://pypi.python.org/pypi/logilab-astng" +SRC_URI="ftp://ftp.logilab.org/pub/astng/logilab-${P}.tar.gz mirror://pypi/l/logilab-astng/logilab-${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos" +IUSE="test" + +# Version specified in __pkginfo__.py. +RDEPEND=">=dev-python/logilab-common-0.49.0" +DEPEND="${RDEPEND} + dev-python/setuptools + test? ( >=dev-python/egenix-mx-base-3.0.0 )" + +S="${WORKDIR}/logilab-${P}" + +PYTHON_MODNAME="logilab/astng" + +src_test() { + testing() { + local tpath="${T}/test-${PYTHON_ABI}" + local spath="${tpath}$(python_get_sitedir)" + + mkdir -p "${spath}/logilab" || return 1 + cp -r "$(python_get_sitedir)/logilab/common" "${spath}/logilab" || return 1 + + "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install --root="${tpath}" || die "Installation for tests failed with $(python_get_implementation) $(python_get_version)" + + # pytest uses tests placed relatively to the current directory. + pushd "${spath}/logilab/astng" > /dev/null || return 1 + PYTHONPATH="${spath}" pytest -v || return 1 + popd > /dev/null || return 1 + } + python_execute_function testing +} + +src_install() { + distutils_src_install + + deletion_of_unneeded_files() { + # Avoid collision with dev-python/logilab-common. + rm -f "${ED}$(python_get_sitedir)/logilab/__init__.py" || return 1 + + # Don't install tests. + rm -fr "${ED}$(python_get_sitedir)/logilab/astng/test" || return 1 + } + python_execute_function -q deletion_of_unneeded_files +} |