diff options
author | 2013-05-29 15:22:33 +0000 | |
---|---|---|
committer | 2013-05-29 15:22:33 +0000 | |
commit | 05775acfa68e71a23f879fc21c9cac7d5f04b2c8 (patch) | |
tree | c7ae88f854621d57cf62a9cbcdabbc4d85282945 /app-benchmarks/bootchart2 | |
parent | Disable jbig tests when USE=-jbig and fix all-in-place test failure due to fi... (diff) | |
download | gentoo-2-05775acfa68e71a23f879fc21c9cac7d5f04b2c8.tar.gz gentoo-2-05775acfa68e71a23f879fc21c9cac7d5f04b2c8.tar.bz2 gentoo-2-05775acfa68e71a23f879fc21c9cac7d5f04b2c8.zip |
app-benchmarks/bootchart2: Fix usage of new python r1 eclasses (missing PYTHON_REQUIRED_USE)
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'app-benchmarks/bootchart2')
-rw-r--r-- | app-benchmarks/bootchart2/ChangeLog | 5 | ||||
-rw-r--r-- | app-benchmarks/bootchart2/bootchart2-0.14.5-r1.ebuild | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/app-benchmarks/bootchart2/ChangeLog b/app-benchmarks/bootchart2/ChangeLog index 27845f12f314..f2e3be5c0e8d 100644 --- a/app-benchmarks/bootchart2/ChangeLog +++ b/app-benchmarks/bootchart2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-benchmarks/bootchart2 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/ChangeLog,v 1.17 2013/02/02 22:20:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/ChangeLog,v 1.18 2013/05/29 15:22:33 jlec Exp $ + + 29 May 2013; Justin Lecher <jlec@gentoo.org> bootchart2-0.14.5-r1.ebuild: + Fix usage of new python r1 eclasses (missing PYTHON_REQUIRED_USE) 02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> bootchart2-0.14.5.ebuild: Add ~arm, wrt bug #449220 diff --git a/app-benchmarks/bootchart2/bootchart2-0.14.5-r1.ebuild b/app-benchmarks/bootchart2/bootchart2-0.14.5-r1.ebuild index 169702add172..ab60ee2f81ed 100644 --- a/app-benchmarks/bootchart2/bootchart2-0.14.5-r1.ebuild +++ b/app-benchmarks/bootchart2/bootchart2-0.14.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/bootchart2-0.14.5-r1.ebuild,v 1.1 2013/01/30 11:25:18 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/bootchart2-0.14.5-r1.ebuild,v 1.2 2013/05/29 15:22:33 jlec Exp $ EAPI=5 @@ -17,7 +17,9 @@ LICENSE="GPL-2" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="svg test X" -REQUIRED_USE="test? ( X )" +REQUIRED_USE=" + X? ( ${PYTHON_REQUIRED_USE} ) + test? ( X )" RDEPEND=" !app-benchmarks/bootchart @@ -60,7 +62,7 @@ src_install() { python_optimize "${ED}"/$(python_get_sitedir) cp pybootchartgui.py "${T}"/pybootchartgui || die - python_doscript "${T}"/pybootchartgui + python_newscript pybootchartgui.py pybootchartgui } use X && python_foreach_impl installation |