Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-r1.eclass
Date: Sat, 30 Mar 2013 12:56:30
Message-Id: 20130330125625.274552171D@flycatcher.gentoo.org
1 floppym 13/03/30 12:56:25
2
3 Modified: ChangeLog python-r1.eclass
4 Log:
5 Add note about quoting patterns for python_gen_usedep.
6
7 Revision Changes Path
8 1.759 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.759&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.759&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.758&r2=1.759
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.758
18 retrieving revision 1.759
19 diff -u -r1.758 -r1.759
20 --- ChangeLog 29 Mar 2013 12:27:04 -0000 1.758
21 +++ ChangeLog 30 Mar 2013 12:56:24 -0000 1.759
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.758 2013/03/29 12:27:04 pacho Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.759 2013/03/30 12:56:24 floppym Exp $
27 +
28 + 30 Mar 2013; Mike Gilbert <floppym@g.o> python-r1.eclass:
29 + Add note about quoting patterns for python_gen_usedep.
30
31 29 Mar 2013; Pacho Ramos <pacho@g.o> vala.eclass:
32 Update VALA_MAX_API_VERSION
33
34
35
36 1.52 eclass/python-r1.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-r1.eclass?rev=1.52&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-r1.eclass?rev=1.52&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-r1.eclass?r1=1.51&r2=1.52
41
42 Index: python-r1.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v
45 retrieving revision 1.51
46 retrieving revision 1.52
47 diff -u -r1.51 -r1.52
48 --- python-r1.eclass 20 Mar 2013 19:01:54 -0000 1.51
49 +++ python-r1.eclass 30 Mar 2013 12:56:24 -0000 1.52
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.51 2013/03/20 19:01:54 mgorny Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.52 2013/03/30 12:56:24 floppym Exp $
55
56 # @ECLASS: python-r1
57 # @MAINTAINER:
58 @@ -230,6 +230,9 @@
59 # are both in PYTHON_COMPAT and match any of the patterns passed
60 # as parameters to the function.
61 #
62 +# Remember to escape or quote the patterns to premature evaluation as a file
63 +# name glob.
64 +#
65 # When all implementations are requested, please use ${PYTHON_USEDEP}
66 # instead. Please also remember to set an appropriate REQUIRED_USE
67 # to avoid ineffective USE flags.
68 @@ -237,7 +240,7 @@
69 # Example:
70 # @CODE
71 # PYTHON_COMPAT=( python{2_7,3_2} )
72 -# DEPEND="doc? ( dev-python/epydoc[$(python_gen_usedep python2*)] )"
73 +# DEPEND="doc? ( dev-python/epydoc[$(python_gen_usedep 'python2*')] )"
74 # @CODE
75 #
76 # It will cause the dependency to look like: