summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-11-23 10:25:46 +0100
committerJustin Lecher <jlec@gentoo.org>2015-11-23 11:05:31 +0100
commit0c4b99a75bbe488f10c4e25d759cf8ef7ed06dd2 (patch)
treea3a970a21c88e4ccadccfe83c17b1a0f97139c2e /dev-python/unittest2/files
parentdev-python/testtools: Drop old (diff)
downloadgentoo-0c4b99a75bbe488f10c4e25d759cf8ef7ed06dd2.tar.gz
gentoo-0c4b99a75bbe488f10c4e25d759cf8ef7ed06dd2.tar.bz2
gentoo-0c4b99a75bbe488f10c4e25d759cf8ef7ed06dd2.zip
dev-python/unittest2: Drop old
obsoletes Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=501638 Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/unittest2/files')
-rw-r--r--dev-python/unittest2/files/unittest2-0.8.0-argparse.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/dev-python/unittest2/files/unittest2-0.8.0-argparse.patch b/dev-python/unittest2/files/unittest2-0.8.0-argparse.patch
deleted file mode 100644
index 4435511c22f7..000000000000
--- a/dev-python/unittest2/files/unittest2-0.8.0-argparse.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-argparse is in standard library in Python 2.7 and >=3.2
-https://code.google.com/p/unittest-ext/issues/detail?id=88
---- a/setup.py
-+++ b/setup.py
-@@ -57,7 +57,9 @@
- # Both install and setup requires - because we read VERSION from within the
- # package, and the package also exports all the APIs.
- # six for compat helpers
--REQUIRES = ['argparse', 'six'],
-+REQUIRES = ['six']
-+if sys.version_info < (2, 7) or (3, 0) <= sys.version_info < (3, 2):
-+ REQUIRES.append('argparse')
-
- params = dict(
- name=NAME,