diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2012-12-27 07:56:31 +0100 |
---|---|---|
committer | Matteo Bernardini <ponce@slackbuilds.org> | 2012-12-27 17:56:20 +0100 |
commit | c1a8fd49940a63b583b61403d3da5a8eb354b46a (patch) | |
tree | a3c90ee38b4662634bdcf73561f46d72bf22a71a /python/python-dateutil/python-dateutil-2.1-open-utf-8.patch | |
parent | 669a30ce99229883d6df0e2c6ef6bbd2fb81d744 (diff) |
python/python-dateutil: Updated for version 2.1, added license.
Also added the new dependency six
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'python/python-dateutil/python-dateutil-2.1-open-utf-8.patch')
-rw-r--r-- | python/python-dateutil/python-dateutil-2.1-open-utf-8.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/python/python-dateutil/python-dateutil-2.1-open-utf-8.patch b/python/python-dateutil/python-dateutil-2.1-open-utf-8.patch new file mode 100644 index 0000000000000..7b1784378f5d6 --- /dev/null +++ b/python/python-dateutil/python-dateutil-2.1-open-utf-8.patch @@ -0,0 +1,20 @@ +=== modified file 'setup.py' +--- setup.py 2012-04-29 13:32:22 +0000 ++++ setup.py 2012-04-29 13:34:16 +0000 +@@ -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", + |