diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-04-19 17:53:25 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-04-19 17:53:25 +0000 |
commit | 8f984a5b4ad3685a7022fdb86c9fa76bba807c65 (patch) | |
tree | 7dce3ede985323d57ed556fc743b56754f611830 /virtual/pmw | |
parent | Stable for sparc, wrt bug #500368 (diff) | |
download | gentoo-2-8f984a5b4ad3685a7022fdb86c9fa76bba807c65.tar.gz gentoo-2-8f984a5b4ad3685a7022fdb86c9fa76bba807c65.tar.bz2 gentoo-2-8f984a5b4ad3685a7022fdb86c9fa76bba807c65.zip |
Use ${PYTHON_USEDEP} substitution support added to python_gen_cond_dep().
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'virtual/pmw')
-rw-r--r-- | virtual/pmw/ChangeLog | 7 | ||||
-rw-r--r-- | virtual/pmw/pmw-1.ebuild | 12 |
2 files changed, 9 insertions, 10 deletions
diff --git a/virtual/pmw/ChangeLog b/virtual/pmw/ChangeLog index 77fce87cb470..93d89dfcbd9c 100644 --- a/virtual/pmw/ChangeLog +++ b/virtual/pmw/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for virtual/pmw -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/pmw/ChangeLog,v 1.3 2013/09/05 19:44:50 mgorny Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/pmw/ChangeLog,v 1.4 2014/04/19 17:53:25 mgorny Exp $ + + 19 Apr 2014; Michał Górny <mgorny@gentoo.org> pmw-1.ebuild: + Use ${PYTHON_USEDEP} substitution support added to python_gen_cond_dep(). 05 Sep 2013; Michał Górny <mgorny@gentoo.org> pmw-1.ebuild: Clean up PYTHON_COMPAT from old implementations. diff --git a/virtual/pmw/pmw-1.ebuild b/virtual/pmw/pmw-1.ebuild index b84a89e30c91..2a024d29c829 100644 --- a/virtual/pmw/pmw-1.ebuild +++ b/virtual/pmw/pmw-1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/pmw/pmw-1.ebuild,v 1.3 2013/09/05 19:44:50 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/virtual/pmw/pmw-1.ebuild,v 1.4 2014/04/19 17:53:25 mgorny Exp $ EAPI=5 @@ -18,9 +18,5 @@ KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND=" - $(python_gen_cond_dep \ - "dev-python/pmw:py2[$(python_gen_usedep 'python2*')]" \ - python2*) - $(python_gen_cond_dep \ - "dev-python/pmw:py3[$(python_gen_usedep 'python3*')]" \ - python3*)" + $(python_gen_cond_dep 'dev-python/pmw:py2[${PYTHON_USEDEP}]' python2*) + $(python_gen_cond_dep 'dev-python/pmw:py3[${PYTHON_USEDEP}]' python3*)" |