summaryrefslogtreecommitdiff
path: root/dev-python/matplotlib/files/matplotlib-1.3.1-unbundle-pycxx.patch
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-05-03 08:42:33 +0200
committerMichał Górny <mgorny@gentoo.org>2017-05-03 09:37:35 +0200
commitaacf1c95aced54e84cf6243b494a429efad319d6 (patch)
tree31ad8fe70c3f81bce2b41a82347823eda9c0d009 /dev-python/matplotlib/files/matplotlib-1.3.1-unbundle-pycxx.patch
parentd0367df28a8c5941c2ac8dd74ca117e551b9cd06 (diff)
downloadgentoo-aacf1c95aced54e84cf6243b494a429efad319d6.tar.gz
gentoo-aacf1c95aced54e84cf6243b494a429efad319d6.tar.bz2
gentoo-aacf1c95aced54e84cf6243b494a429efad319d6.zip
dev-python/matplotlib: Clean old versions up
Diffstat (limited to 'dev-python/matplotlib/files/matplotlib-1.3.1-unbundle-pycxx.patch')
-rw-r--r--dev-python/matplotlib/files/matplotlib-1.3.1-unbundle-pycxx.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-python/matplotlib/files/matplotlib-1.3.1-unbundle-pycxx.patch b/dev-python/matplotlib/files/matplotlib-1.3.1-unbundle-pycxx.patch
deleted file mode 100644
index c27922eb11d6..000000000000
--- a/dev-python/matplotlib/files/matplotlib-1.3.1-unbundle-pycxx.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/setupext.py b/setupext.py
-index 7b629b6..8131bb1 100644
---- a/setupext.py
-+++ b/setupext.py
-@@ -674,16 +674,9 @@ class CXX(SetupPackage):
- name = 'pycxx'
-
- def check(self):
-- if sys.version_info[0] >= 3:
-- # There is no version of PyCXX in the wild that will work
-- # with Python 3.x
-- self.__class__.found_external = False
-- return ("Official versions of PyCXX are not compatible with "
-- "Python 3.x. Using local copy")
--
- self.__class__.found_external = True
- old_stdout = sys.stdout
-- sys.stdout = io.BytesIO()
-+ #sys.stdout = io.BytesIO()
- try:
- import CXX
- except ImportError: