public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/wxpython/files: wxpython-2.9-wxversion-demo.patch wxpython-2.9-wxversion-scripts.patch
@ 2011-01-23  1:12 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; only message in thread
From: Ryan Hill (dirtyepic) @ 2011-01-23  1:12 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    11/01/23 01:12:36

  Added:                wxpython-2.9-wxversion-demo.patch
                        wxpython-2.9-wxversion-scripts.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha18/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  dev-python/wxpython/files/wxpython-2.9-wxversion-demo.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wxpython/files/wxpython-2.9-wxversion-demo.patch?rev=1.1&view=markup
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

Index: wxpython-2.9-wxversion-demo.patch
===================================================================
--- demo/demo.org
+++ demo/demo.py
@@ -1,4 +1,7 @@
 #!/usr/bin/env python
 
+import wxversion
+wxversion.select("2.9")
+
 import Main
 Main.main()



1.1                  dev-python/wxpython/files/wxpython-2.9-wxversion-scripts.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wxpython/files/wxpython-2.9-wxversion-scripts.patch?rev=1.1&view=markup
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

Index: wxpython-2.9-wxversion-scripts.patch
===================================================================
--- a/distrib/PyAlaMode.desktop
+++ b/distrib/PyAlaMode.desktop
@@ -1,8 +1,8 @@
 [Desktop Entry]
-Name=PyAlaMode
+Name=PyAlaMode (2.9)
 Comment=GUI Python Shell with Filling and editor windows
-Exec=pyalamode
-Icon=PyCrust.png
+Exec=pyalamode-2.9
+Icon=/usr/share/pixmaps/PyCrust-2.9.png
 Terminal=false
 Type=Application
 Categories=Application;Development;
--- a/distrib/PyCrust.desktop
+++ b/distrib/PyCrust.desktop
@@ -1,8 +1,8 @@
 [Desktop Entry]
-Name=PyCrust
+Name=PyCrust (2.9)
 Comment=GUI Python Shell with Filling
-Exec=pycrust
-Icon=PyCrust.png
+Exec=pycrust-2.9
+Icon=/usr/share/pixmaps/PyCrust-2.9.png
 Terminal=false
 Type=Application
 Categories=Application;Development;
--- a/distrib/PyShell.desktop
+++ b/distrib/PyShell.desktop
@@ -1,8 +1,8 @@
 [Desktop Entry]
-Name=PyShell
+Name=PyShell (2.9)
 Comment=GUI Python Shell
-Exec=pyshell
-Icon=PyCrust.png
+Exec=pyshell-2.9
+Icon=/usr/share/pixmaps/PyCrust-2.9.png
 Terminal=false
 Type=Application
 Categories=Application;Development;
--- a/distrib/PySlices.desktop
+++ b/distrib/PySlices.desktop
@@ -1,8 +1,8 @@
 [Desktop Entry]
-Name=PySlices
+Name=PySlices (2.9)
 Comment=GUI Python Shell with Filling
-Exec=pyslices
-Icon=PySlices.png
+Exec=pyslices-2.9
+Icon=/usr/share/pixmaps/PySlices-2.9.png
 Terminal=false
 Type=Application
 Categories=Application;Development;
--- a/distrib/PySlicesShell.desktop
+++ b/distrib/PySlicesShell.desktop
@@ -1,9 +1,9 @@
 
 [Desktop Entry]
-Name=PySlicesShell
+Name=PySlicesShell (2.9)
 Comment=GUI Python Shell
-Exec=pysliceshell
-Icon=PySlices.png
+Exec=pysliceshell-2.9
+Icon=/usr/share/pixmaps/PySlices-2.9.png
 Terminal=false
 Type=Application
 Categories=Application;Development;
--- a/distrib/XRCed.desktop
+++ b/distrib/XRCed.desktop
@@ -1,8 +1,8 @@
 [Desktop Entry]
-Name=XRCed
+Name=XRCed (2.9)
 Comment=wxPython XRC resource editor
-Exec=xrced
-Icon=XRCed.png
+Exec=xrced-2.9
+Icon=/usr/share/pixmaps/XRCed-2.9.png
 Terminal=false
 Type=Application
 Categories=Application;Development;
--- a/scripts/editra
+++ b/scripts/editra
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.tools.Editra.launcher import main
 main()
--- a/scripts/genaxmodule
+++ b/scripts/genaxmodule
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.tools.genaxmodule import main
 main()
--- a/scripts/helpviewer
+++ b/scripts/helpviewer
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.tools.helpviewer import main
 main()
--- a/scripts/img2png
+++ b/scripts/img2png
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.tools.img2png import main
 main()
--- a/scripts/img2py
+++ b/scripts/img2py
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.tools.img2py import main
 main()
--- a/scripts/img2xpm
+++ b/scripts/img2xpm
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.tools.img2xpm import main
 main()
--- a/scripts/pyalacarte
+++ b/scripts/pyalacarte
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.py.PyAlaCarte import main
 main()
--- a/scripts/pyalamode
+++ b/scripts/pyalamode
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.py.PyAlaMode import main
 main()
--- a/scripts/pycrust
+++ b/scripts/pycrust
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.py.PyCrust import main
 main()
--- a/scripts/pyshell
+++ b/scripts/pyshell
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.py.PyShell import main
 main()
--- a/scripts/pyslices
+++ b/scripts/pyslices
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.py.PySlices import main
 main()
--- a/scripts/pysliceshell
+++ b/scripts/pysliceshell
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.py.PySlicesShell import main
 main()
--- a/scripts/pywrap
+++ b/scripts/pywrap
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.py.PyWrap import main
 main()
--- a/scripts/pywxrc
+++ b/scripts/pywxrc
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+import wxversion
+wxversion.select("2.9")
 from wx.tools.pywxrc import main
 main()
 
--- a/scripts/xrced
+++ b/scripts/xrced
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+import wxversion
+wxversion.select("2.9")
 
 from wx.tools.XRCed.xrced import main
 main()






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-01-23  1:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-23  1:12 [gentoo-commits] gentoo-x86 commit in dev-python/wxpython/files: wxpython-2.9-wxversion-demo.patch wxpython-2.9-wxversion-scripts.patch Ryan Hill (dirtyepic)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox