diff options
author | 2013-11-15 00:21:28 +0000 | |
---|---|---|
committer | 2013-11-15 00:21:28 +0000 | |
commit | f2508a0956e60b2a77bb573668af2d8ed39f21b7 (patch) | |
tree | 72633b01f297a7ea6aaf4168014ea81783ee7266 /dev-python/ipython | |
parent | jsonschema-2.3.0.ebuild (diff) | |
download | gentoo-2-f2508a0956e60b2a77bb573668af2d8ed39f21b7.tar.gz gentoo-2-f2508a0956e60b2a77bb573668af2d8ed39f21b7.tar.bz2 gentoo-2-f2508a0956e60b2a77bb573668af2d8ed39f21b7.zip |
Use python_gen_useflags instead of PYTHON_COMPAT directly.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-python/ipython')
-rw-r--r-- | dev-python/ipython/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/ipython/ipython-1.0.0.ebuild | 8 | ||||
-rw-r--r-- | dev-python/ipython/ipython-1.1.0.ebuild | 8 |
3 files changed, 13 insertions, 9 deletions
diff --git a/dev-python/ipython/ChangeLog b/dev-python/ipython/ChangeLog index f9ac99c52717..fd1256d6e21c 100644 --- a/dev-python/ipython/ChangeLog +++ b/dev-python/ipython/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/ipython # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.127 2013/11/14 18:48:50 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.128 2013/11/15 00:21:28 floppym Exp $ + + 15 Nov 2013; Mike Gilbert <floppym@gentoo.org> ipython-1.0.0.ebuild, + ipython-1.1.0.ebuild: + Use python_gen_useflags instead of PYTHON_COMPAT directly. 14 Nov 2013; Mike Gilbert <floppym@gentoo.org> ipython-1.0.0.ebuild, ipython-1.1.0.ebuild: diff --git a/dev-python/ipython/ipython-1.0.0.ebuild b/dev-python/ipython/ipython-1.0.0.ebuild index 49f00a05f7d1..055bb2634df3 100644 --- a/dev-python/ipython/ipython-1.0.0.ebuild +++ b/dev-python/ipython/ipython-1.0.0.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/dev-python/ipython/ipython-1.0.0.ebuild,v 1.13 2013/11/14 18:48:50 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-1.0.0.ebuild,v 1.14 2013/11/15 00:21:28 floppym Exp $ EAPI=5 @@ -23,9 +23,9 @@ IUSE="doc emacs examples matplotlib mongodb notebook nbconvert octave PY2_USEDEP=$(python_gen_usedep 'python2*') gen_python_deps() { - local impl - for impl in "${PYTHON_COMPAT[@]}"; do - echo "python_targets_${impl}? ( ${1}[python_targets_${impl}(-)] )" + local flag + for flag in $(python_gen_useflags '*'); do + echo "${flag}? ( ${1}[${flag}(-)] )" done } diff --git a/dev-python/ipython/ipython-1.1.0.ebuild b/dev-python/ipython/ipython-1.1.0.ebuild index 183b1ac0f174..44630e281c03 100644 --- a/dev-python/ipython/ipython-1.1.0.ebuild +++ b/dev-python/ipython/ipython-1.1.0.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/dev-python/ipython/ipython-1.1.0.ebuild,v 1.2 2013/11/14 18:48:50 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-1.1.0.ebuild,v 1.3 2013/11/15 00:21:28 floppym Exp $ EAPI=5 @@ -23,9 +23,9 @@ IUSE="doc emacs examples matplotlib mongodb notebook nbconvert octave PY2_USEDEP=$(python_gen_usedep 'python2*') gen_python_deps() { - local impl - for impl in "${PYTHON_COMPAT[@]}"; do - echo "python_targets_${impl}? ( ${1}[python_targets_${impl}(-)] )" + local flag + for flag in $(python_gen_useflags '*'); do + echo "${flag}? ( ${1}[${flag}(-)] )" done } |