summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2016-11-30 11:18:55 +0100
committerLars Wendler <polynomial-c@gentoo.org>2016-11-30 14:53:58 +0100
commit04f3985d841f0417f6f7733c06b63015707bceac (patch)
tree44ca805ecb3b1b09914f04606a5c0b0612c7c662 /dev-python/python-dateutil/files
parentdev-python/python-dateutil: Bump to version 2.6.0 (diff)
downloadgentoo-04f3985d841f0417f6f7733c06b63015707bceac.tar.gz
gentoo-04f3985d841f0417f6f7733c06b63015707bceac.tar.bz2
gentoo-04f3985d841f0417f6f7733c06b63015707bceac.zip
dev-python/python-dateutil: Removed old.
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-python/python-dateutil/files')
-rw-r--r--dev-python/python-dateutil/files/python-dateutil-2.1-open-utf-8.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-python/python-dateutil/files/python-dateutil-2.1-open-utf-8.patch b/dev-python/python-dateutil/files/python-dateutil-2.1-open-utf-8.patch
deleted file mode 100644
index f27285428784..000000000000
--- a/dev-python/python-dateutil/files/python-dateutil-2.1-open-utf-8.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Fix UnicodeDecodeError in setup.py.
-
-https://bugs.gentoo.org/show_bug.cgi?id=410725
---- setup.py
-+++ setup.py
-@@ -1,5 +1,6 @@
- #!/usr/bin/python
- from os.path import isfile, join
-+import codecs
- import glob
- import os
- import re
-@@ -13,7 +14,7 @@
-
- TOPDIR = os.path.dirname(__file__) or "."
- VERSION = re.search('__version__ = "([^"]+)"',
-- open(TOPDIR + "/dateutil/__init__.py").read()).group(1)
-+ codecs.open(TOPDIR + "/dateutil/__init__.py", encoding='utf-8').read()).group(1)
-
-
- setup(name="python-dateutil",