diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-23 13:58:13 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-23 13:58:13 +0000 |
commit | e1121ed8da1c730202601fea8bdd09d6b56ea978 (patch) | |
tree | 2cd3e9bcf0b519905556c79267bd8e0c4e4e0250 /dev-python/pylint | |
parent | Stable 10.9-r1 and remove some older. (diff) | |
download | gentoo-2-e1121ed8da1c730202601fea8bdd09d6b56ea978.tar.gz gentoo-2-e1121ed8da1c730202601fea8bdd09d6b56ea978.tar.bz2 gentoo-2-e1121ed8da1c730202601fea8bdd09d6b56ea978.zip |
Skip tests with old versions of dev-python/logilab-common (bug #341651).
(Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pylint')
-rw-r--r-- | dev-python/pylint/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/pylint/pylint-0.21.3.ebuild | 7 |
2 files changed, 11 insertions, 2 deletions
diff --git a/dev-python/pylint/ChangeLog b/dev-python/pylint/ChangeLog index 65d10cc2322e..cbf0c98aed69 100644 --- a/dev-python/pylint/ChangeLog +++ b/dev-python/pylint/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/pylint # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.74 2010/09/29 01:01:16 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.75 2010/10/23 13:58:13 arfrever Exp $ + + 23 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + pylint-0.21.3.ebuild: + Skip tests with old versions of dev-python/logilab-common (bug #341651). *pylint-0.21.3 (29 Sep 2010) diff --git a/dev-python/pylint/pylint-0.21.3.ebuild b/dev-python/pylint/pylint-0.21.3.ebuild index 0923017dc635..81cb51f917cd 100644 --- a/dev-python/pylint/pylint-0.21.3.ebuild +++ b/dev-python/pylint/pylint-0.21.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-0.21.3.ebuild,v 1.1 2010/09/29 01:01:16 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-0.21.3.ebuild,v 1.2 2010/10/23 13:58:13 arfrever Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -29,6 +29,11 @@ DEPEND="${RDEPEND} DOCS="doc/*.txt" src_test() { + if has_version "<dev-python/logilab-common-0.52.0"; then + ewarn "Skipping tests due to old version of dev-python/logilab-common" + return + fi + testing() { PYTHONPATH="build-${PYTHON_ABI}/lib" pytest -v } |