summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Cakebread <pythonhead@gentoo.org>2005-05-02 20:47:44 +0000
committerRob Cakebread <pythonhead@gentoo.org>2005-05-02 20:47:44 +0000
commit38dfec26ac78a117e32e6d95a26dd3357c7e4d68 (patch)
treef74a0b47ec58a6124fd6b6996185adcf320f4d10 /dev-python/wxpython-docs/files
parentInstall example-clients to jack documentation. Closes bug#91029. (diff)
downloadgentoo-2-38dfec26ac78a117e32e6d95a26dd3357c7e4d68.tar.gz
gentoo-2-38dfec26ac78a117e32e6d95a26dd3357c7e4d68.tar.bz2
gentoo-2-38dfec26ac78a117e32e6d95a26dd3357c7e4d68.zip
Fixed viewdocs.py thanks Ivan Todoroski <grnch@gmx.net> bug# 86625
(Portage version: 2.0.51.20-r5)
Diffstat (limited to 'dev-python/wxpython-docs/files')
-rw-r--r--dev-python/wxpython-docs/files/demo-2.6.0.0-version.patch10
-rw-r--r--dev-python/wxpython-docs/files/viewdocs-2.4.2.4.patch14
-rw-r--r--dev-python/wxpython-docs/files/viewdocs-2.6.0.0.patch21
3 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/wxpython-docs/files/demo-2.6.0.0-version.patch b/dev-python/wxpython-docs/files/demo-2.6.0.0-version.patch
new file mode 100644
index 000000000000..8a2ef96d67eb
--- /dev/null
+++ b/dev-python/wxpython-docs/files/demo-2.6.0.0-version.patch
@@ -0,0 +1,10 @@
+--- demo/demo.org 2005-04-28 03:00:13.431583384 +0000
++++ demo/demo.py 2005-04-28 03:00:31.886777768 +0000
+@@ -1,4 +1,7 @@
+ #!/usr/bin/env python
+
++import wxversion
++wxversion.select("2.6")
++
+ import Main
+ Main.main()
diff --git a/dev-python/wxpython-docs/files/viewdocs-2.4.2.4.patch b/dev-python/wxpython-docs/files/viewdocs-2.4.2.4.patch
new file mode 100644
index 000000000000..de3f5262c6c6
--- /dev/null
+++ b/dev-python/wxpython-docs/files/viewdocs-2.4.2.4.patch
@@ -0,0 +1,14 @@
+--- docs/viewdocs-orig.py 2005-03-25 09:46:30.000000000 +0100
++++ docs/viewdocs.py 2005-03-25 10:46:26.923038904 +0100
+@@ -14,7 +14,7 @@
+
+ # setup the args
+ args = ['',
+- '--cache='+basePath,
++ '--cache=/tmp',
+ os.path.join(basePath, 'wx.zip'),
+ os.path.join(basePath, 'ogl.zip'),
+ ]
+
+
+
diff --git a/dev-python/wxpython-docs/files/viewdocs-2.6.0.0.patch b/dev-python/wxpython-docs/files/viewdocs-2.6.0.0.patch
new file mode 100644
index 000000000000..a260f3ab68bb
--- /dev/null
+++ b/dev-python/wxpython-docs/files/viewdocs-2.6.0.0.patch
@@ -0,0 +1,21 @@
+--- docs/viewdocs.orig.py 2005-05-02 13:14:34.905664232 -0700
++++ docs/viewdocs.py 2005-05-02 13:16:12.129883904 -0700
+@@ -1,6 +1,9 @@
+ #!/usr/bin/env python
+ #---------------------------------------------------------------------------
+
++import wxversion
++wxversion.select("2.6")
++
+ import sys, os, glob
+ import wx
+ from wx.tools import helpviewer
+@@ -20,7 +23,7 @@
+
+ # setup the args
+ args = ['',
+- '--cache='+basePath,
++ '--cache=/tmp',
+ os.path.join(basePath, 'wx.zip'),
+ os.path.join(basePath, 'ogl.zip'),
+ ]