Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/wxpython/files: wxpython-2.9-wxversion-demo.patch wxpython-2.9-wxversion-scripts.patch
Date: Sun, 23 Jan 2011 01:12:47
Message-Id: 20110123011236.C91AA20057@flycatcher.gentoo.org
1 dirtyepic 11/01/23 01:12:36
2
3 Added: wxpython-2.9-wxversion-demo.patch
4 wxpython-2.9-wxversion-scripts.patch
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha18/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 dev-python/wxpython/files/wxpython-2.9-wxversion-demo.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wxpython/files/wxpython-2.9-wxversion-demo.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wxpython/files/wxpython-2.9-wxversion-demo.patch?rev=1.1&content-type=text/plain
15
16 Index: wxpython-2.9-wxversion-demo.patch
17 ===================================================================
18 --- demo/demo.org
19 +++ demo/demo.py
20 @@ -1,4 +1,7 @@
21 #!/usr/bin/env python
22
23 +import wxversion
24 +wxversion.select("2.9")
25 +
26 import Main
27 Main.main()
28
29
30
31 1.1 dev-python/wxpython/files/wxpython-2.9-wxversion-scripts.patch
32
33 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wxpython/files/wxpython-2.9-wxversion-scripts.patch?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wxpython/files/wxpython-2.9-wxversion-scripts.patch?rev=1.1&content-type=text/plain
35
36 Index: wxpython-2.9-wxversion-scripts.patch
37 ===================================================================
38 --- a/distrib/PyAlaMode.desktop
39 +++ b/distrib/PyAlaMode.desktop
40 @@ -1,8 +1,8 @@
41 [Desktop Entry]
42 -Name=PyAlaMode
43 +Name=PyAlaMode (2.9)
44 Comment=GUI Python Shell with Filling and editor windows
45 -Exec=pyalamode
46 -Icon=PyCrust.png
47 +Exec=pyalamode-2.9
48 +Icon=/usr/share/pixmaps/PyCrust-2.9.png
49 Terminal=false
50 Type=Application
51 Categories=Application;Development;
52 --- a/distrib/PyCrust.desktop
53 +++ b/distrib/PyCrust.desktop
54 @@ -1,8 +1,8 @@
55 [Desktop Entry]
56 -Name=PyCrust
57 +Name=PyCrust (2.9)
58 Comment=GUI Python Shell with Filling
59 -Exec=pycrust
60 -Icon=PyCrust.png
61 +Exec=pycrust-2.9
62 +Icon=/usr/share/pixmaps/PyCrust-2.9.png
63 Terminal=false
64 Type=Application
65 Categories=Application;Development;
66 --- a/distrib/PyShell.desktop
67 +++ b/distrib/PyShell.desktop
68 @@ -1,8 +1,8 @@
69 [Desktop Entry]
70 -Name=PyShell
71 +Name=PyShell (2.9)
72 Comment=GUI Python Shell
73 -Exec=pyshell
74 -Icon=PyCrust.png
75 +Exec=pyshell-2.9
76 +Icon=/usr/share/pixmaps/PyCrust-2.9.png
77 Terminal=false
78 Type=Application
79 Categories=Application;Development;
80 --- a/distrib/PySlices.desktop
81 +++ b/distrib/PySlices.desktop
82 @@ -1,8 +1,8 @@
83 [Desktop Entry]
84 -Name=PySlices
85 +Name=PySlices (2.9)
86 Comment=GUI Python Shell with Filling
87 -Exec=pyslices
88 -Icon=PySlices.png
89 +Exec=pyslices-2.9
90 +Icon=/usr/share/pixmaps/PySlices-2.9.png
91 Terminal=false
92 Type=Application
93 Categories=Application;Development;
94 --- a/distrib/PySlicesShell.desktop
95 +++ b/distrib/PySlicesShell.desktop
96 @@ -1,9 +1,9 @@
97
98 [Desktop Entry]
99 -Name=PySlicesShell
100 +Name=PySlicesShell (2.9)
101 Comment=GUI Python Shell
102 -Exec=pysliceshell
103 -Icon=PySlices.png
104 +Exec=pysliceshell-2.9
105 +Icon=/usr/share/pixmaps/PySlices-2.9.png
106 Terminal=false
107 Type=Application
108 Categories=Application;Development;
109 --- a/distrib/XRCed.desktop
110 +++ b/distrib/XRCed.desktop
111 @@ -1,8 +1,8 @@
112 [Desktop Entry]
113 -Name=XRCed
114 +Name=XRCed (2.9)
115 Comment=wxPython XRC resource editor
116 -Exec=xrced
117 -Icon=XRCed.png
118 +Exec=xrced-2.9
119 +Icon=/usr/share/pixmaps/XRCed-2.9.png
120 Terminal=false
121 Type=Application
122 Categories=Application;Development;
123 --- a/scripts/editra
124 +++ b/scripts/editra
125 @@ -1,4 +1,6 @@
126 #!/usr/bin/env python
127 +import wxversion
128 +wxversion.select("2.9")
129
130 from wx.tools.Editra.launcher import main
131 main()
132 --- a/scripts/genaxmodule
133 +++ b/scripts/genaxmodule
134 @@ -1,4 +1,6 @@
135 #!/usr/bin/env python
136 +import wxversion
137 +wxversion.select("2.9")
138
139 from wx.tools.genaxmodule import main
140 main()
141 --- a/scripts/helpviewer
142 +++ b/scripts/helpviewer
143 @@ -1,4 +1,6 @@
144 #!/usr/bin/env python
145 +import wxversion
146 +wxversion.select("2.9")
147
148 from wx.tools.helpviewer import main
149 main()
150 --- a/scripts/img2png
151 +++ b/scripts/img2png
152 @@ -1,4 +1,6 @@
153 #!/usr/bin/env python
154 +import wxversion
155 +wxversion.select("2.9")
156
157 from wx.tools.img2png import main
158 main()
159 --- a/scripts/img2py
160 +++ b/scripts/img2py
161 @@ -1,4 +1,6 @@
162 #!/usr/bin/env python
163 +import wxversion
164 +wxversion.select("2.9")
165
166 from wx.tools.img2py import main
167 main()
168 --- a/scripts/img2xpm
169 +++ b/scripts/img2xpm
170 @@ -1,4 +1,6 @@
171 #!/usr/bin/env python
172 +import wxversion
173 +wxversion.select("2.9")
174
175 from wx.tools.img2xpm import main
176 main()
177 --- a/scripts/pyalacarte
178 +++ b/scripts/pyalacarte
179 @@ -1,4 +1,6 @@
180 #!/usr/bin/env python
181 +import wxversion
182 +wxversion.select("2.9")
183
184 from wx.py.PyAlaCarte import main
185 main()
186 --- a/scripts/pyalamode
187 +++ b/scripts/pyalamode
188 @@ -1,4 +1,6 @@
189 #!/usr/bin/env python
190 +import wxversion
191 +wxversion.select("2.9")
192
193 from wx.py.PyAlaMode import main
194 main()
195 --- a/scripts/pycrust
196 +++ b/scripts/pycrust
197 @@ -1,4 +1,6 @@
198 #!/usr/bin/env python
199 +import wxversion
200 +wxversion.select("2.9")
201
202 from wx.py.PyCrust import main
203 main()
204 --- a/scripts/pyshell
205 +++ b/scripts/pyshell
206 @@ -1,4 +1,6 @@
207 #!/usr/bin/env python
208 +import wxversion
209 +wxversion.select("2.9")
210
211 from wx.py.PyShell import main
212 main()
213 --- a/scripts/pyslices
214 +++ b/scripts/pyslices
215 @@ -1,4 +1,6 @@
216 #!/usr/bin/env python
217 +import wxversion
218 +wxversion.select("2.9")
219
220 from wx.py.PySlices import main
221 main()
222 --- a/scripts/pysliceshell
223 +++ b/scripts/pysliceshell
224 @@ -1,4 +1,6 @@
225 #!/usr/bin/env python
226 +import wxversion
227 +wxversion.select("2.9")
228
229 from wx.py.PySlicesShell import main
230 main()
231 --- a/scripts/pywrap
232 +++ b/scripts/pywrap
233 @@ -1,4 +1,6 @@
234 #!/usr/bin/env python
235 +import wxversion
236 +wxversion.select("2.9")
237
238 from wx.py.PyWrap import main
239 main()
240 --- a/scripts/pywxrc
241 +++ b/scripts/pywxrc
242 @@ -1,5 +1,7 @@
243 #!/usr/bin/env python
244
245 +import wxversion
246 +wxversion.select("2.9")
247 from wx.tools.pywxrc import main
248 main()
249
250 --- a/scripts/xrced
251 +++ b/scripts/xrced
252 @@ -1,4 +1,6 @@
253 #!/usr/bin/env python
254 +import wxversion
255 +wxversion.select("2.9")
256
257 from wx.tools.XRCed.xrced import main
258 main()