summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2007-03-05 10:43:00 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2007-03-05 10:43:00 +0000
commitcc599d5631ea27eb3b918b8bb15211cc0fd0e917 (patch)
tree43fb0305539add5acab076d9ae4944e93417affe /dev-python/matplotlib/files
parentfixed bug #169262 with upstream patch. (diff)
downloadhistorical-cc599d5631ea27eb3b918b8bb15211cc0fd0e917.tar.gz
historical-cc599d5631ea27eb3b918b8bb15211cc0fd0e917.tar.bz2
historical-cc599d5631ea27eb3b918b8bb15211cc0fd0e917.zip
removed matplotlib-0.87.4.ebuild and patches, obsolete and incompatibles with newer numpy.
Package-Manager: portage-2.1.2-r9
Diffstat (limited to 'dev-python/matplotlib/files')
-rw-r--r--dev-python/matplotlib/files/digest-matplotlib-0.87.43
-rw-r--r--dev-python/matplotlib/files/matplotlib-0.86.2-no-autodetect.patch60
-rw-r--r--dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch12
3 files changed, 0 insertions, 75 deletions
diff --git a/dev-python/matplotlib/files/digest-matplotlib-0.87.4 b/dev-python/matplotlib/files/digest-matplotlib-0.87.4
deleted file mode 100644
index 5d10ebe7218b..000000000000
--- a/dev-python/matplotlib/files/digest-matplotlib-0.87.4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b8ef6ee4b4a7267d94980b4678f950ea matplotlib-0.87.4.tar.gz 2985247
-RMD160 21b2a02c02a809438c2a45835e4e5a76576884b9 matplotlib-0.87.4.tar.gz 2985247
-SHA256 c30f68e90170acd3a2f5f7cfa188cdc5ef81880eb82c20b915a549e4b2ad2b9a matplotlib-0.87.4.tar.gz 2985247
diff --git a/dev-python/matplotlib/files/matplotlib-0.86.2-no-autodetect.patch b/dev-python/matplotlib/files/matplotlib-0.86.2-no-autodetect.patch
deleted file mode 100644
index 79d498448b3d..000000000000
--- a/dev-python/matplotlib/files/matplotlib-0.86.2-no-autodetect.patch
+++ /dev/null
@@ -1,60 +0,0 @@
---- setup.bak.py 2006-01-17 12:54:55.000000000 -0500
-+++ setup.py 2006-01-17 12:59:47.000000000 -0500
-@@ -203,47 +203,20 @@
- build_enthought(ext_modules, packages)
-
- if BUILD_GTK:
-- try:
-- import gtk
-- except ImportError:
-- print 'GTK requires pygtk'
-- BUILD_GTK=0
-- except RuntimeError:
-- print 'pygtk present but import failed'
--
--if BUILD_GTK:
-- build_gdk(ext_modules, packages, NUMERIX)
-- rc['backend'] = 'GTK'
-+ build_gdk(ext_modules, packages, NUMERIX)
-+ rc['backend'] = 'GTK'
-
- if BUILD_TKAGG:
-- try: import Tkinter
-- except ImportError: print 'TKAgg requires TkInter'
-- else:
-- BUILD_AGG = 1
-- build_tkagg(ext_modules, packages, NUMERIX)
-- rc['backend'] = 'TkAgg'
-+ BUILD_AGG = 1
-+ build_tkagg(ext_modules, packages, NUMERIX)
-+ rc['backend'] = 'TkAgg'
-
- if BUILD_WXAGG:
-- try: import wxPython
-- except ImportError:
-- if BUILD_WXAGG != 'auto':
-- print 'WXAgg\'s accelerator requires wxPython'
-- BUILD_WXAGG = 0
-- else:
-- BUILD_AGG = 1
-- build_wxagg(ext_modules, packages, NUMERIX,
-- not (isinstance(BUILD_WXAGG, str) # don't about if BUILD_WXAGG
-- and BUILD_WXAGG.lower() == 'auto')) # is "auto"
-- rc['backend'] = 'WXAgg'
--
--if BUILD_GTKAGG:
-- try:
-- import gtk
-- except ImportError:
-- print 'GTKAgg requires pygtk'
-- BUILD_GTKAGG=0
-- except RuntimeError:
-- print 'pygtk present but import failed'
-+ BUILD_AGG = 1
-+ build_wxagg(ext_modules, packages, NUMERIX,
-+ not (isinstance(BUILD_WXAGG, str) # don't about if BUILD_WXAGG
-+ and BUILD_WXAGG.lower() == 'auto')) # is "auto"
-+ rc['backend'] = 'WXAgg'
-
- if BUILD_GTKAGG:
- BUILD_AGG = 1
diff --git a/dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch b/dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch
deleted file mode 100644
index 38958567bf23..000000000000
--- a/dev-python/matplotlib/files/matplotlib-0.87.4-fix-bad-win32-detect.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- setupext.py~ 2006-07-10 18:55:59.000000000 +0100
-+++ setupext.py 2006-07-17 16:47:19.000000000 +0100
-@@ -116,7 +116,8 @@
- return 'mingw32'
- return 'msvc'
- win32_compiler = get_win32_compiler()
--if win32_compiler == 'msvc':
-+
-+if sys.platform == 'win32' and win32_compiler == 'msvc':
- std_libs = []
- else:
- std_libs = ['stdc++', 'm']