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/uncrustify/uncrustify-0.52.ebuild | |
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/uncrustify/uncrustify-0.52.ebuild')
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.52.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
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() { |