diff options
author | 2005-05-02 20:47:44 +0000 | |
---|---|---|
committer | 2005-05-02 20:47:44 +0000 | |
commit | b1a5565b36a2ff6e9eecaa08c6ae6e7ee5426ac3 (patch) | |
tree | 9aa88ca122b41b8909938d784f127502a23f8144 /dev-python/wxpython-docs/files | |
parent | Install example-clients to jack documentation. Closes bug#91029. (diff) | |
download | historical-b1a5565b36a2ff6e9eecaa08c6ae6e7ee5426ac3.tar.gz historical-b1a5565b36a2ff6e9eecaa08c6ae6e7ee5426ac3.tar.bz2 historical-b1a5565b36a2ff6e9eecaa08c6ae6e7ee5426ac3.zip |
Fixed viewdocs.py thanks Ivan Todoroski <grnch@gmx.net> bug# 86625
Package-Manager: portage-2.0.51.20-r5
Diffstat (limited to 'dev-python/wxpython-docs/files')
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'), + ] |