summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2013-09-26 11:24:30 +0000
committerMichał Górny <mgorny@gentoo.org>2013-09-26 11:24:30 +0000
commitb1bf78fbba19f23863d7dd98bee659703c2f6858 (patch)
tree14e70041293d8bb56fe386086896f896895c91a3 /eclass/python-r1.eclass
parentAdd myself to maintainers (okayed by lu_zero in IRC). (diff)
downloadhistorical-b1bf78fbba19f23863d7dd98bee659703c2f6858.tar.gz
historical-b1bf78fbba19f23863d7dd98bee659703c2f6858.tar.bz2
historical-b1bf78fbba19f23863d7dd98bee659703c2f6858.zip
Fix EAPI=4 on python-exec:2 since that is what pkgcore will require (the only EAPI=4 consumer right now).
Diffstat (limited to 'eclass/python-r1.eclass')
-rw-r--r--eclass/python-r1.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass
index 03f2f586c75a..750fa910254b 100644
--- a/eclass/python-r1.eclass
+++ b/eclass/python-r1.eclass
@@ -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/eclass/python-r1.eclass,v 1.61 2013/09/17 13:33:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.62 2013/09/26 11:24:30 mgorny Exp $
# @ECLASS: python-r1
# @MAINTAINER:
@@ -204,11 +204,11 @@ _python_set_globals() {
# 2) python-exec should be built with all targets forced anyway
# but if new targets were added, we may need to force a rebuild
# 3) use whichever python-exec slot installed in EAPI 5. For EAPI 4,
- # just fix :0 for now since := deps are not supported.
+ # just fix :2 since := deps are not supported.
if [[ ${EAPI} != 4 ]]; then
PYTHON_DEPS+="dev-python/python-exec:=[${PYTHON_USEDEP}]"
else
- PYTHON_DEPS+="dev-python/python-exec:0[${PYTHON_USEDEP}]"
+ PYTHON_DEPS+="dev-python/python-exec:2[${PYTHON_USEDEP}]"
fi
}
_python_set_globals