diff options
author | Sebastian Pipping <sping@gentoo.org> | 2014-11-09 15:10:32 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2014-11-09 15:10:32 +0000 |
commit | 56d869912d785a67d7cd6c50d6194f233e653636 (patch) | |
tree | 5e07b4be00843beae7b5dcb6b92c6fa64b4f2e10 /eclass | |
parent | Fix 'avahi not in IUSE' when system-wide is enabled, bug #525290. (diff) | |
download | gentoo-2-56d869912d785a67d7cd6c50d6194f233e653636.tar.gz gentoo-2-56d869912d785a67d7cd6c50d6194f233e653636.tar.bz2 gentoo-2-56d869912d785a67d7cd6c50d6194f233e653636.zip |
Use python 3.4 rather than dead 3.2 in python-r1 examples
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python-r1.eclass | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 0cf8f9698946..ba8207684b3c 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1408 2014/11/07 18:18:33 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1409 2014/11/09 15:10:32 sping Exp $ + + 09 Nov 2014; Sebastian Pipping <sping@gentoo.org> python-r1.eclass: + Use python 3.4 rather than dead 3.2 in python-r1 examples 07 Nov 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> python-single-r1.eclass: diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass index d1e1632a0a89..039535db26a2 100644 --- a/eclass/python-r1.eclass +++ b/eclass/python-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.77 2014/11/05 23:03:01 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.78 2014/11/09 15:10:32 sping Exp $ # @ECLASS: python-r1 # @MAINTAINER: @@ -262,7 +262,7 @@ _python_validate_useflags() { # # Example: # @CODE -# PYTHON_COMPAT=( python{2_7,3_2} ) +# PYTHON_COMPAT=( python{2_7,3_4} ) # DEPEND="doc? ( dev-python/epydoc[$(python_gen_usedep 'python2*')] )" # @CODE # @@ -305,7 +305,7 @@ python_gen_usedep() { # # Example: # @CODE -# PYTHON_COMPAT=( python{2_7,3_2} ) +# PYTHON_COMPAT=( python{2_7,3_4} ) # REQUIRED_USE="doc? ( || ( $(python_gen_useflags python2*) ) )" # @CODE # |