summaryrefslogtreecommitdiff
path: root/dev-python/python-dsv/files
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/python-dsv/files')
-rw-r--r--dev-python/python-dsv/files/python-dsv-1.4.1-wxversion.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-python/python-dsv/files/python-dsv-1.4.1-wxversion.patch b/dev-python/python-dsv/files/python-dsv-1.4.1-wxversion.patch
deleted file mode 100644
index cadc5692af24..000000000000
--- a/dev-python/python-dsv/files/python-dsv-1.4.1-wxversion.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/DSV/DSV.py
-+++ b/DSV/DSV.py
-@@ -134,6 +134,13 @@
- os.putenv('LANG', 'C')
-
- try:
-+ import wxversion
-+ wxversion.select("2.8")
-+except Exception, e:
-+ print >> sys.stderr, "%s: wxPython 2.8 not installed." %e
-+ sys.exit(1)
-+
-+try:
- from wxPython import wx, grid
- except ImportError:
- wx = None