summaryrefslogtreecommitdiff
path: root/dev-python/matplotlib-python2/files
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-05-17 23:18:24 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-05-19 18:51:15 +0200
commit07d8b913343d463b9649cf1f680e98b819d87f77 (patch)
tree152b035d0162650e3a2fb778bb942d93e671d237 /dev-python/matplotlib-python2/files
parent8803f21da4bfb23e120d83ccba4577bacaebe610 (diff)
downloadgentoo-07d8b913343d463b9649cf1f680e98b819d87f77.tar.gz
gentoo-07d8b913343d463b9649cf1f680e98b819d87f77.tar.bz2
gentoo-07d8b913343d463b9649cf1f680e98b819d87f77.zip
dev-python/matplotlib-python2: Drop 2.2.4 and 2.2.5 (r0)
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-python/matplotlib-python2/files')
-rw-r--r--dev-python/matplotlib-python2/files/matplotlib-2.2.4-no-jqueryui-download.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/dev-python/matplotlib-python2/files/matplotlib-2.2.4-no-jqueryui-download.patch b/dev-python/matplotlib-python2/files/matplotlib-2.2.4-no-jqueryui-download.patch
deleted file mode 100644
index 9d13adb8ab53..000000000000
--- a/dev-python/matplotlib-python2/files/matplotlib-2.2.4-no-jqueryui-download.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/setup.py b/setup.py
-index 41037e95d..6a438fa99 100644
---- a/setup.py
-+++ b/setup.py
-@@ -178,9 +178,10 @@ class sdist_with_jquery(_orgin_sdist):
- class install_lib_with_jquery(InstallLibCommand):
- def run(self):
- InstallLibCommand.run(self)
-- _download_jquery_to(
-- os.path.join(self.install_dir, "matplotlib/backends/web_backend/"))
--
-+ # Avoid downloading jquery ui during emerge: we already have it in
-+ # pypi's tarball. use this!
-+ name = "matplotlib/backends/web_backend/jquery-ui-1.12.1"
-+ os.rename(os.path.join('lib', name), os.path.join(self.install_dir, name))
-
- class develop_with_jquery(DevelopCommand):
- def run(self):