summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-09-09 19:10:40 +0200
committerDavid Seifert <soap@gentoo.org>2016-09-11 10:48:15 +0200
commit9e64cde4436629fe520fd90160fc9a4705252d73 (patch)
tree8cd7bfc546a5ef1618012e39304b3e029a67ffcd /dev-python
parentdev-python/apptools: remove unused patch (diff)
downloadgentoo-9e64cde4436629fe520fd90160fc9a4705252d73.tar.gz
gentoo-9e64cde4436629fe520fd90160fc9a4705252d73.tar.bz2
gentoo-9e64cde4436629fe520fd90160fc9a4705252d73.zip
dev-python/async: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/2291 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/async/files/async-0.6.1_libz_link.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-python/async/files/async-0.6.1_libz_link.patch b/dev-python/async/files/async-0.6.1_libz_link.patch
deleted file mode 100644
index a7031cfa93af..000000000000
--- a/dev-python/async/files/async-0.6.1_libz_link.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-#Patch by Jesus Rivero <neurogeek@gentoo.org>
-#Submitted to upstream Ago 26, 2011
-diff -uNr async-0.6.1.orig/setup.py async-0.6.1/setup.py
---- async-0.6.1.orig/setup.py 2010-11-21 07:03:47.000000000 -0500
-+++ async-0.6.1/setup.py 2011-08-26 16:51:57.000000000 -0400
-@@ -77,7 +77,7 @@
- packages = ('async', 'async.mod', 'async.test', 'async.test.mod'),
- package_data={'async' : ['AUTHORS', 'README']},
- package_dir = {'async':''},
-- ext_modules=[Extension('async.mod.zlib', ['mod/zlibmodule.c'])],
-+ ext_modules=[Extension('async.mod.zlib', ['mod/zlibmodule.c'], libraries=['z'])],
- license = "BSD License",
- zip_safe=False,
- long_description = """Async is a framework to process interdependent tasks in a pool of workers"""