diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-09-12 17:31:11 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-09-12 17:31:11 +0000 |
commit | 8206e39379c731d528ac9b5eb4bb14f26ad503aa (patch) | |
tree | 02c3209ab2f8486372ee69c191e232f882730df8 /eclass | |
parent | Cleanup old. (diff) | |
download | gentoo-2-8206e39379c731d528ac9b5eb4bb14f26ad503aa.tar.gz gentoo-2-8206e39379c731d528ac9b5eb4bb14f26ad503aa.tar.bz2 gentoo-2-8206e39379c731d528ac9b5eb4bb14f26ad503aa.zip |
Depend on SLOT 0 of python-exec, for future compatibility.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/python-r1.eclass | 6 | ||||
-rw-r--r-- | eclass/python-single-r1.eclass | 6 |
3 files changed, 11 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 8a43407e468a..21c822427ab0 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.959 2013/09/12 11:46:41 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.960 2013/09/12 17:31:11 mgorny Exp $ + + 12 Sep 2013; Michał Górny <mgorny@gentoo.org> python-r1.eclass, + python-single-r1.eclass: + Depend on SLOT 0 of python-exec, for future compatibility. 12 Sep 2013; Michał Górny <mgorny@gentoo.org> systemd.eclass: Introduce systemd_install_serviced() to install foo.service.d/00gentoo.conf diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass index 5c5b33c95ac6..6994952ed5ef 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.58 2013/08/27 18:47:33 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.59 2013/09/12 17:31:11 mgorny Exp $ # @ECLASS: python-r1 # @MAINTAINER: @@ -122,7 +122,7 @@ fi # # Example value: # @CODE -# dev-python/python-exec +# dev-python/python-exec:0 # python_targets_python2_6? ( dev-lang/python:2.6[gdbm] ) # python_targets_python2_7? ( dev-lang/python:2.7[gdbm] ) # @CODE @@ -203,7 +203,7 @@ _python_set_globals() { # but no point in making this overcomplex, BDEP doesn't hurt anyone # 2) python-exec should be built with all targets forced anyway # but if new targets were added, we may need to force a rebuild - PYTHON_DEPS+="dev-python/python-exec[${PYTHON_USEDEP}]" + PYTHON_DEPS+="dev-python/python-exec:0[${PYTHON_USEDEP}]" } _python_set_globals diff --git a/eclass/python-single-r1.eclass b/eclass/python-single-r1.eclass index 768bbd8db1b8..2b099c329122 100644 --- a/eclass/python-single-r1.eclass +++ b/eclass/python-single-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-single-r1.eclass,v 1.19 2013/08/07 16:37:32 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-single-r1.eclass,v 1.20 2013/09/12 17:31:11 mgorny Exp $ # @ECLASS: python-single-r1 # @MAINTAINER: @@ -110,7 +110,7 @@ fi # # Example value: # @CODE -# dev-python/python-exec +# dev-python/python-exec:0 # python_single_target_python2_6? ( dev-lang/python:2.6[gdbm] ) # python_single_target_python2_7? ( dev-lang/python:2.7[gdbm] ) # @CODE @@ -193,7 +193,7 @@ _python_single_set_globals() { # but no point in making this overcomplex, BDEP doesn't hurt anyone # 2) python-exec should be built with all targets forced anyway # but if new targets were added, we may need to force a rebuild - PYTHON_DEPS+="dev-python/python-exec[${PYTHON_USEDEP}]" + PYTHON_DEPS+="dev-python/python-exec:0[${PYTHON_USEDEP}]" } _python_single_set_globals |