summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorBertrand Jacquin <beber@meleeweb.net>2013-08-17 15:38:35 +0200
committerBertrand Jacquin <beber@meleeweb.net>2013-08-17 15:38:35 +0200
commita3e3947faa8848149838dce2b9f6ae1097fd7a3a (patch)
tree53e23b2add2d7e3d393e6791a0043d16f85eac2c /dev-python
parentx11-misc/edje_smart_thumb: Update SRC_URI (diff)
downloadportage-a3e3947faa8848149838dce2b9f6ae1097fd7a3a.tar.xz
dev-python/matplotlib: Remove unused patch
Package-Manager: portage-2.2.0
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/matplotlib/ChangeLog4
-rw-r--r--dev-python/matplotlib/Manifest3
-rw-r--r--dev-python/matplotlib/files/matplotlib-1.2.0-setup.patch36
3 files changed, 5 insertions, 38 deletions
diff --git a/dev-python/matplotlib/ChangeLog b/dev-python/matplotlib/ChangeLog
index 9ec58e3d..59900229 100644
--- a/dev-python/matplotlib/ChangeLog
+++ b/dev-python/matplotlib/ChangeLog
@@ -1,3 +1,7 @@
+ 17 Aug 2013; Bertrand Jacquin <beber@meleeweb.net>
+ -files/matplotlib-1.2.0-setup.patch:
+ dev-python/matplotlib: Remove unused patch
+
15 Aug 2013; Bertrand Jacquin <beber@meleeweb.net> matplotlib-1.3.0.ebuild:
dev-python/matplotlib: Python 3.1 is now deprecated, see #480070
diff --git a/dev-python/matplotlib/Manifest b/dev-python/matplotlib/Manifest
index 8b8fa409..6979f78a 100644
--- a/dev-python/matplotlib/Manifest
+++ b/dev-python/matplotlib/Manifest
@@ -1,5 +1,4 @@
-AUX matplotlib-1.2.0-setup.patch 1283 SHA256 e078b2385dc0b882a7df1a13df070ad5ec704e9e18df2f19bd642c7ae40e8a97 WHIRLPOOL eeb0db8a14f33ccfe82ab677c27f92456dd8255b9c0d352d1496b5ab1f9336e643698435d96b6ff2a3657445737105eb060158014001cd0cc3d894c391111ce9
DIST matplotlib-1.3.0.tar.gz 42098180 SHA256 3e37044911245d7d881ddab0152cfec463c597b9a207c7f87021b8f40e1cbd98 WHIRLPOOL f144b12ec8c0900ae20d39e0b01376ba52886dd7ded2d0b36a16ff0d59c0f9af946c95e3bb3fec7e4a589326ec6986afee70ff0905739e1912469122f45029a6
EBUILD matplotlib-1.3.0.ebuild 4717 SHA256 fcbafc30bf56962517b1130dd13c3b2b101d45501fd267b6c8f5ff284e8360ad WHIRLPOOL 328319246c3812ce622decce92a03df824ab71a08677e61773bfa6eb9910115e76cf8ccb366aa81fbb95d963276194922af05a93e458ce6f03ebe84b28cb2e29
-MISC ChangeLog 363 SHA256 7d854705d84a411006e707d2b28368eb240deb5e0d6fbd1069f0146947720483 WHIRLPOOL 10a42e3d589ac25480e103a3b0c096a58271fab0b4158d2f975914be76ecdf0b499b60169314d9e99545f3e4c6c08695dde4a3ec764d99d1fb1b2c86e637e738
+MISC ChangeLog 501 SHA256 e0b20d76cacf9e0b2eb5f106a6e6638d0cfb71a7ea0fefe700a8fb7e952b8f52 WHIRLPOOL 35371ef83b2ab628950067d2540325bd03308bc61f6368efd9b2f08671e350e20003d3e307e3e8d2e847dcb7144d06378a718b87522cbfe018c25b069d103880
MISC metadata.xml 810 SHA256 9415358b60b2d0db41f7b11813f4467eb39517b12a575420f57c19df8425e2af WHIRLPOOL f0d50fb7848ec3afada2784af0cdeba1637bd12b3614b1914ad8f01219026294042d31e22185498876d2b9ef028c789d487f6db354b6701a80263a60911af3ea
diff --git a/dev-python/matplotlib/files/matplotlib-1.2.0-setup.patch b/dev-python/matplotlib/files/matplotlib-1.2.0-setup.patch
deleted file mode 100644
index ba035184..00000000
--- a/dev-python/matplotlib/files/matplotlib-1.2.0-setup.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -ur matplotlib-1.2.0.orig/setup.py matplotlib-1.2.0/setup.py
---- setup.py 2012-11-08 10:24:12.000000000 +0800
-+++ setup.py 2012-11-25 06:55:27.531042898 +0800
-@@ -171,20 +171,19 @@
- # regardless of the lack of dependencies. If auto, silently skip
- # when dependencies are missing.
- if options['build_tkagg']:
-- if check_for_tk() or (options['build_tkagg'] is True):
-- options['build_agg'] = 1
-- build_tkagg(ext_modules, packages)
-- rc['backend'] = 'TkAgg'
-+ options['build_agg'] = 1
-+ build_tkagg(ext_modules, packages)
-+ rc['backend'] = 'TkAgg'
-
--hasgtk = check_for_gtk()
--if options['build_gtk']:
-- if hasgtk or (options['build_gtk'] is True):
-- build_gdk(ext_modules, packages)
--if options['build_gtkagg']:
-- if hasgtk or (options['build_gtkagg'] is True):
-- options['build_agg'] = 1
-- build_gtkagg(ext_modules, packages)
-- rc['backend'] = 'GTKAgg'
-+if sys.version_info[0] >= 3:
-+ hasgtk = False
-+else:
-+ hasgtk = True
-+if hasgtk and (options['build_gtk'] is True):
-+ build_gdk(ext_modules, packages)
-+ options['build_agg'] = 1
-+ build_gtkagg(ext_modules, packages)
-+ rc['backend'] = 'GTKAgg'
-
- if options['build_macosx']:
- if check_for_macosx() or (options['build_macosx'] is True):