diff options
author | 2009-09-06 22:34:19 +0000 | |
---|---|---|
committer | 2009-09-06 22:34:19 +0000 | |
commit | 724ffad94ab341a283e6a8040ac121f88286c0f4 (patch) | |
tree | 17ccb28b992f0db7e2ab24641319d2f1f3861257 /dev-python/wxpython-docs/files | |
parent | Remove unused patch. (diff) | |
download | historical-724ffad94ab341a283e6a8040ac121f88286c0f4.tar.gz historical-724ffad94ab341a283e6a8040ac121f88286c0f4.tar.bz2 historical-724ffad94ab341a283e6a8040ac121f88286c0f4.zip |
Delete old patch.
Package-Manager: portage-14208-svn/cvs/Linux x86_64
Diffstat (limited to 'dev-python/wxpython-docs/files')
-rw-r--r-- | dev-python/wxpython-docs/files/wxpython-docs-2.6.0.0-writable.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/wxpython-docs/files/wxpython-docs-2.6.0.0-writable.patch b/dev-python/wxpython-docs/files/wxpython-docs-2.6.0.0-writable.patch deleted file mode 100644 index 8e35306a9002..000000000000 --- a/dev-python/wxpython-docs/files/wxpython-docs-2.6.0.0-writable.patch +++ /dev/null @@ -1,49 +0,0 @@ ---- docs/viewdocs.pyorg 2005-05-13 12:09:33.394994952 -0700 -+++ docs/viewdocs.py 2005-05-13 12:10:23.778335520 -0700 -@@ -15,33 +15,19 @@ - basePath = '.' - - --# test for write access --if os.access(basePath, os.W_OK): -+# setup the args -+args = ['', -+ '--cache=/tmp', -+ os.path.join(basePath, 'wx.zip'), -+ os.path.join(basePath, 'ogl.zip'), -+ ] -+ -+# add any other .zip files found -+for file in glob.glob(os.path.join(basePath, "*.zip")): -+ if file not in args: -+ args.append(file) - -- # setup the args -- args = ['', -- '--cache='+basePath, -- os.path.join(basePath, 'wx.zip'), -- os.path.join(basePath, 'ogl.zip'), -- ] -- -- # add any other .zip files found -- for file in glob.glob(os.path.join(basePath, "*.zip")): -- if file not in args: -- args.append(file) -- -- # launch helpviewer -- helpviewer.main(args) -- --else: -- app = wx.PySimpleApp() -- dlg = wx.MessageDialog(None, -- "The wxDocs need to be located in a directory that is writable by you. " -- "I am unable to start the viewer in its current location.", -- "Error!", wx.OK|wx.ICON_EXCLAMATION) -- dlg.ShowModal() -- dlg.Destroy() -- app.MainLoop() -+# launch helpviewer -+helpviewer.main(args) - --#--------------------------------------------------------------------------- - |