diff options
author | Fabian Groffen <grobian@gentoo.org> | 2010-07-03 07:36:58 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2010-07-03 07:36:58 +0000 |
commit | 69d4977cf995513a7f037deb6a5b4bf893f08bb1 (patch) | |
tree | 28b95c453f2773dec21f140326350a5682ecbfd3 /dev-util | |
parent | stable x86, security bug 322857 (diff) | |
download | gentoo-2-69d4977cf995513a7f037deb6a5b4bf893f08bb1.tar.gz gentoo-2-69d4977cf995513a7f037deb6a5b4bf893f08bb1.tar.bz2 gentoo-2-69d4977cf995513a7f037deb6a5b4bf893f08bb1.zip |
Tests seem not to work with python3, depend on python2.
(Portage version: 2.2.01.15352-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/uncrustify/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.52.ebuild | 8 | ||||
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.53.ebuild | 6 | ||||
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.55.ebuild | 6 | ||||
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.56.ebuild | 6 |
5 files changed, 18 insertions, 14 deletions
diff --git a/dev-util/uncrustify/ChangeLog b/dev-util/uncrustify/ChangeLog index 88fd6d1b1cee..62fb1ffb901c 100644 --- a/dev-util/uncrustify/ChangeLog +++ b/dev-util/uncrustify/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/uncrustify # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.8 2010/06/25 13:54:03 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.9 2010/07/03 07:36:58 grobian Exp $ + + 03 Jul 2010; Fabian Groffen <grobian@gentoo.org> uncrustify-0.52.ebuild, + uncrustify-0.53.ebuild, uncrustify-0.55.ebuild, uncrustify-0.56.ebuild: + Tests seem not to work with python3, depend on python2. 25 Jun 2010; Christian Faulhammer <fauli@gentoo.org> uncrustify-0.55.ebuild: diff --git a/dev-util/uncrustify/uncrustify-0.52.ebuild b/dev-util/uncrustify/uncrustify-0.52.ebuild index 2344dea40936..29028ca54fbd 100644 --- a/dev-util/uncrustify/uncrustify-0.52.ebuild +++ b/dev-util/uncrustify/uncrustify-0.52.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.52.ebuild,v 1.1 2009/10/01 17:43:44 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.52.ebuild,v 1.2 2010/07/03 07:36:58 grobian Exp $ DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier" HOMEPAGE="http://uncrustify.sourceforge.net/" @@ -11,12 +11,12 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~ppc-macos ~x86-solaris" IUSE="test" -DEPEND="test? ( dev-lang/python )" +DEPEND="test? ( =dev-lang/python-2* )" RDEPEND="" src_test() { cd tests - ./run_tests.py || die "tests failed" + python2 run_tests.py || die "tests failed" } src_install() { diff --git a/dev-util/uncrustify/uncrustify-0.53.ebuild b/dev-util/uncrustify/uncrustify-0.53.ebuild index 1fee59df9920..b6160915d505 100644 --- a/dev-util/uncrustify/uncrustify-0.53.ebuild +++ b/dev-util/uncrustify/uncrustify-0.53.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-util/uncrustify/uncrustify-0.53.ebuild,v 1.2 2010/02/09 20:52:41 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.53.ebuild,v 1.3 2010/07/03 07:36:58 grobian Exp $ DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier" HOMEPAGE="http://uncrustify.sourceforge.net/" @@ -11,12 +11,12 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x86-solaris" IUSE="test" -DEPEND="test? ( dev-lang/python )" +DEPEND="test? ( =dev-lang/python-2* )" RDEPEND="" src_test() { cd tests - ./run_tests.py || die "tests failed" + python2 run_tests.py || die "tests failed" } src_install() { diff --git a/dev-util/uncrustify/uncrustify-0.55.ebuild b/dev-util/uncrustify/uncrustify-0.55.ebuild index f086cf5b9911..479761a108e7 100644 --- a/dev-util/uncrustify/uncrustify-0.55.ebuild +++ b/dev-util/uncrustify/uncrustify-0.55.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-util/uncrustify/uncrustify-0.55.ebuild,v 1.3 2010/06/25 13:54:03 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.55.ebuild,v 1.4 2010/07/03 07:36:58 grobian Exp $ DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier" HOMEPAGE="http://uncrustify.sourceforge.net/" @@ -11,12 +11,12 @@ SLOT="0" KEYWORDS="amd64 x86 ~amd64-linux ~ppc-macos ~x86-solaris" IUSE="test" -DEPEND="test? ( dev-lang/python )" +DEPEND="test? ( =dev-lang/python-2* )" RDEPEND="" src_test() { cd tests - ./run_tests.py || die "tests failed" + python2 run_tests.py || die "tests failed" } src_install() { diff --git a/dev-util/uncrustify/uncrustify-0.56.ebuild b/dev-util/uncrustify/uncrustify-0.56.ebuild index 9e8274af1ab7..5f09847721d7 100644 --- a/dev-util/uncrustify/uncrustify-0.56.ebuild +++ b/dev-util/uncrustify/uncrustify-0.56.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-util/uncrustify/uncrustify-0.56.ebuild,v 1.1 2010/06/08 17:43:18 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.56.ebuild,v 1.2 2010/07/03 07:36:58 grobian Exp $ DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier" HOMEPAGE="http://uncrustify.sourceforge.net/" @@ -11,12 +11,12 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x86-solaris" IUSE="test" -DEPEND="test? ( dev-lang/python )" +DEPEND="test? ( =dev-lang/python-2* )" RDEPEND="" src_test() { cd tests - ./run_tests.py || die "tests failed" + python2 run_tests.py || die "tests failed" } src_install() { |