[gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/files/, dev-python/python-dateutil/

2024-03-16 Thread Michał Górny
commit: c4d75a11f50cc7ff388ea93b96d4ae55cbe04454
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 16 09:33:23 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 16 09:33:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d75a11

dev-python/python-dateutil: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/python-dateutil/Manifest|   2 -
 .../python-dateutil-2.8.1-no-pytest-cov.patch  |  18 
 .../python-dateutil-2.8.2-system-tzdata.patch  | 104 -
 .../python-dateutil-2.8.2-r1.ebuild|  47 --
 .../python-dateutil/python-dateutil-2.9.0.ebuild   |  47 --
 5 files changed, 218 deletions(-)

diff --git a/dev-python/python-dateutil/Manifest 
b/dev-python/python-dateutil/Manifest
index d976f358971e..82d26649de2c 100644
--- a/dev-python/python-dateutil/Manifest
+++ b/dev-python/python-dateutil/Manifest
@@ -1,3 +1 @@
-DIST python-dateutil-2.8.2.tar.gz 357324 BLAKE2B 
060f97280b63ed70e6d83fa5696af6dc3c729cdf5bc48c7a90e3e59eb0cc0360e5205536685550330d64ecc9b6e40ca12888409d6819dd136b17a67add2ec4e8
 SHA512 
6538858e4a3e2d1de1bf25b6d8b25e3a8d20bf60fb85e32d07ac491c90ce193e268bb5641371b8a79fb0f033a184bac9896b3bc643c1aca9ee9c6478286ac20c
 DIST python-dateutil-2.9.0.post0.tar.gz 342432 BLAKE2B 
b3469ff9900afd98f474f162083570c28ac93378efc772b5f365fa0d5d4354a96867a024065adc430b71d7bde6909195ac4ebe3ad1d17e638fded0b4b40f9954
 SHA512 
f76522de0ff21547327eaf6966e80a15c57f8f92588d520eabd354a732e5c4b51d9c3ac5effd9eaa6dd451d1bce329a54a3f4c6bf4f1bd08ff06b0305c994e5a
-DIST python-dateutil-2.9.0.tar.gz 342990 BLAKE2B 
32e4e4e251d27e5a870df24445fa0b2fa76761cb06ba4d8a779938a58fd5cf4bbf1739670f60ca4b41d46db6343a785d6bd71fbe3dd2a816d5cb0fa0d3296fbc
 SHA512 
7dd550d646477c8c3953a42aabe4c0aa3f4d1f74f6fed018a1a429270f41aa2c6832df264e67510d380d149eaa436c1b613544c8026c180c2241f15205ca6d36

diff --git 
a/dev-python/python-dateutil/files/python-dateutil-2.8.1-no-pytest-cov.patch 
b/dev-python/python-dateutil/files/python-dateutil-2.8.1-no-pytest-cov.patch
deleted file mode 100644
index 84adb944548e..
--- a/dev-python/python-dateutil/files/python-dateutil-2.8.1-no-pytest-cov.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/dateutil/test/conftest.py b/dateutil/test/conftest.py
-index 78ed70a..4bb4c0a 100644
 a/dateutil/test/conftest.py
-+++ b/dateutil/test/conftest.py
-@@ -14,10 +14,11 @@ def pytest_collection_modifyitems(items):
- 
- marker = marker_getter('xfail')
- 
-+# requires pytest-cov
- # Need to query the args because conditional xfail tests still have
- # the xfail mark even if they are not expected to fail
--if marker and (not marker.args or marker.args[0]):
--item.add_marker(pytest.mark.no_cover)
-+#if marker and (not marker.args or marker.args[0]):
-+#item.add_marker(pytest.mark.no_cover)
- 
- 
- def set_tzpath():

diff --git 
a/dev-python/python-dateutil/files/python-dateutil-2.8.2-system-tzdata.patch 
b/dev-python/python-dateutil/files/python-dateutil-2.8.2-system-tzdata.patch
deleted file mode 100644
index 3790a29b4213..
--- a/dev-python/python-dateutil/files/python-dateutil-2.8.2-system-tzdata.patch
+++ /dev/null
@@ -1,104 +0,0 @@
-From 907459c6f632a87fce5729f6eebd2adf5b94e577 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
-Date: Tue, 3 Apr 2018 22:03:32 +0200
-Subject: [PATCH] zoneinfo: Get timezone data from system tzdata
-

- dateutil/test/test_imports.py |  3 +--
- dateutil/zoneinfo/__init__.py | 25 ++---
- 2 files changed, 15 insertions(+), 13 deletions(-)
-
-diff --git a/dateutil/test/test_imports.py b/dateutil/test/test_imports.py
-index 60b8600..b9f517c 100644
 a/dateutil/test/test_imports.py
-+++ b/dateutil/test/test_imports.py
-@@ -168,9 +168,8 @@ def test_import_zone_info_from():
- def test_import_zone_info_star():
- from dateutil.zoneinfo import gettz
- from dateutil.zoneinfo import gettz_db_metadata
--from dateutil.zoneinfo import rebuild
- 
--zi_all = (gettz, gettz_db_metadata, rebuild)
-+zi_all = (gettz, gettz_db_metadata)
- 
- for var in zi_all:
- assert var is not None
-diff --git a/dateutil/zoneinfo/__init__.py b/dateutil/zoneinfo/__init__.py
-index 34f11ad..e3f0f94 100644
 a/dateutil/zoneinfo/__init__.py
-+++ b/dateutil/zoneinfo/__init__.py
-@@ -1,6 +1,7 @@
- # -*- coding: utf-8 -*-
- import warnings
- import json
-+import os
- 
- from tarfile import TarFile
- from pkgutil import get_data
-@@ -10,7 +11,7 @@ from dateutil.tz import tzfile as _tzfile
- 
- __all__ = ["get_zonefile_instance", "gettz", "gettz_db_metadata"]
- 
--ZONEFILENAME = "dateutil-zoneinfo.tar.gz"
-+ZONEDIRECTORY = "/usr/share/zoneinfo"
- METADATA_FN = 'METADATA'
- 
- 
-@@ -19,12 +20,14 @@ class tzfile(_tzfile):
- return (gettz, (self._filename,))
- 
- 
--def getzoneinfofile_stream():
--try:
--  

[gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/files/, dev-python/python-dateutil/

2021-07-03 Thread Michał Górny
commit: 3d953d7e8d9f27b566644e616fd1e5af9d4ec874
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul  3 07:40:57 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jul  3 08:16:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d953d7e

dev-python/python-dateutil: Update non-zoneinfo skip

Update the skipped file list for /usr/share/zoneinfo iteration
to prevent crashing on files such as 'leapseconds' or 'tzdata.zi'.

Signed-off-by: Michał Górny  gentoo.org>

 .../files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch   | 2 +-
 ...{python-dateutil-2.8.1-r2.ebuild => python-dateutil-2.8.1-r3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
 
b/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
index a937e6600a2..abbc853e090 100644
--- 
a/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
+++ 
b/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
@@ -57,7 +57,7 @@ index 34f11ad..e9870ca 100644
 +def iter_zones(topdir):
 +for dirpath, dirnames, filenames in os.walk(topdir):
 +for f in filenames:
-+if f.endswith('.list') or f.endswith('.tab'):
++if f.endswith(('.list', '.tab', '.zi', 'leapseconds')):
 +continue
 +fpath = os.path.join(dirpath, f)
 +relpath = os.path.relpath(fpath, topdir)

diff --git a/dev-python/python-dateutil/python-dateutil-2.8.1-r2.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.8.1-r3.ebuild
similarity index 100%
rename from dev-python/python-dateutil/python-dateutil-2.8.1-r2.ebuild
rename to dev-python/python-dateutil/python-dateutil-2.8.1-r3.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/files/, dev-python/python-dateutil/

2019-10-17 Thread Aaron W. Swenson
commit: c10b4898dd8abacc49c747501e8b9929601723ad
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Thu Oct 17 22:29:25 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Thu Oct 17 22:30:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c10b4898

dev-python/python-dateutil: Patch fix, remove fbsd

Update patch so tests pass again.

Remove *-fbsd keywords again.

Bug: https://bugs.gentoo.org/679792
Closes: https://bugs.gentoo.org/695810
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 ...o-Get-timezone-data-from-system-tzdata-r1.patch | 104 +
 .../python-dateutil/python-dateutil-2.8.0.ebuild   |   4 +-
 2 files changed, 106 insertions(+), 2 deletions(-)

diff --git 
a/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
 
b/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
new file mode 100644
index 000..a937e6600a2
--- /dev/null
+++ 
b/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
@@ -0,0 +1,104 @@
+From f48e70ae846c161dfbfe6ddb36e4bcad4427ac8c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Tue, 3 Apr 2018 22:03:32 +0200
+Subject: [PATCH] zoneinfo: Get timezone data from system tzdata
+
+---
+ dateutil/test/test_imports.py |  3 +--
+ dateutil/zoneinfo/__init__.py | 25 ++---
+ 2 files changed, 15 insertions(+), 13 deletions(-)
+
+diff --git a/dateutil/test/test_imports.py b/dateutil/test/test_imports.py
+index 2a19b62..97d07e4 100644
+--- a/dateutil/test/test_imports.py
 b/dateutil/test/test_imports.py
+@@ -158,9 +158,8 @@ class ImportZoneInfoTest(unittest.TestCase):
+ def testZoneinfoStar(self):
+ from dateutil.zoneinfo import gettz
+ from dateutil.zoneinfo import gettz_db_metadata
+-from dateutil.zoneinfo import rebuild
+ 
+-zi_all = (gettz, gettz_db_metadata, rebuild)
++zi_all = (gettz, gettz_db_metadata)
+ 
+ for var in zi_all:
+ self.assertIsNot(var, None)
+diff --git a/dateutil/zoneinfo/__init__.py b/dateutil/zoneinfo/__init__.py
+index 34f11ad..e9870ca 100644
+--- a/dateutil/zoneinfo/__init__.py
 b/dateutil/zoneinfo/__init__.py
+@@ -1,6 +1,7 @@
+ # -*- coding: utf-8 -*-
+ import warnings
+ import json
++import os
+ 
+ from tarfile import TarFile
+ from pkgutil import get_data
+@@ -10,7 +11,7 @@ from dateutil.tz import tzfile as _tzfile
+ 
+ __all__ = ["get_zonefile_instance", "gettz", "gettz_db_metadata"]
+ 
+-ZONEFILENAME = "dateutil-zoneinfo.tar.gz"
++ZONEDIRECTORY = "/usr/share/zoneinfo"
+ METADATA_FN = 'METADATA'
+ 
+ 
+@@ -19,12 +20,14 @@ class tzfile(_tzfile):
+ return (gettz, (self._filename,))
+ 
+ 
+-def getzoneinfofile_stream():
+-try:
+-return BytesIO(get_data(__name__, ZONEFILENAME))
+-except IOError as e:  # TODO  switch to FileNotFoundError?
+-warnings.warn("I/O error({0}): {1}".format(e.errno, e.strerror))
+-return None
++def iter_zones(topdir):
++for dirpath, dirnames, filenames in os.walk(topdir):
++for f in filenames:
++if f.endswith('.list') or f.endswith('.tab'):
++continue
++fpath = os.path.join(dirpath, f)
++relpath = os.path.relpath(fpath, topdir)
++yield (relpath, tzfile(fpath, filename=relpath))
+ 
+ 
+ class ZoneInfoFile(object):
+@@ -48,7 +51,7 @@ class ZoneInfoFile(object):
+ # no metadata in tar file
+ self.metadata = None
+ else:
+-self.zones = {}
++self.zones = dict(iter_zones(ZONEDIRECTORY))
+ self.metadata = None
+ 
+ def get(self, name, default=None):
+@@ -99,7 +102,7 @@ def get_zonefile_instance(new_instance=False):
+ zif = getattr(get_zonefile_instance, '_cached_instance', None)
+ 
+ if zif is None:
+-zif = ZoneInfoFile(getzoneinfofile_stream())
++zif = ZoneInfoFile()
+ 
+ get_zonefile_instance._cached_instance = zif
+ 
+@@ -140,7 +143,7 @@ def gettz(name):
+   DeprecationWarning)
+ 
+ if len(_CLASS_ZONE_INSTANCE) == 0:
+-_CLASS_ZONE_INSTANCE.append(ZoneInfoFile(getzoneinfofile_stream()))
++_CLASS_ZONE_INSTANCE.append(ZoneInfoFile())
+ return _CLASS_ZONE_INSTANCE[0].zones.get(name)
+ 
+ 
+@@ -163,5 +166,5 @@ def gettz_db_metadata():
+   DeprecationWarning)
+ 
+ if len(_CLASS_ZONE_INSTANCE) == 0:
+-_CLASS_ZONE_INSTANCE.append(ZoneInfoFile(getzoneinfofile_stream()))
++_CLASS_ZONE_INSTANCE.append(ZoneInfoFile())
+ return _CLASS_ZONE_INSTANCE[0].metadata
+-- 
+2.17.0
+

diff --git a/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild
index 172252195d8..52b8a8decb7 100644
--- 

[gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/files/, dev-python/python-dateutil/

2017-10-12 Thread Tim Harder
commit: e03955c4d8d725dc47afa42bbd8ca5e7a71307ed
Author: Tim Harder  gentoo  org>
AuthorDate: Thu Oct 12 17:09:21 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Thu Oct 12 17:15:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e03955c4

dev-python/python-dateutil: remove old

 dev-python/python-dateutil/Manifest|  3 --
 .../files/python-dateutil-2.4.2-timelex.patch  | 13 --
 .../python-dateutil/python-dateutil-2.2.ebuild | 52 --
 .../python-dateutil-2.4.2-r1.ebuild| 42 -
 .../python-dateutil/python-dateutil-2.6.0.ebuild   | 38 
 5 files changed, 148 deletions(-)

diff --git a/dev-python/python-dateutil/Manifest 
b/dev-python/python-dateutil/Manifest
index 4b91da1eab4..60208825461 100644
--- a/dev-python/python-dateutil/Manifest
+++ b/dev-python/python-dateutil/Manifest
@@ -1,4 +1 @@
-DIST python-dateutil-2.2.tar.gz 259085 SHA256 
eec865307ebe7f329a6a9945c15453265a449cdaaf3710340828a1934d53e468 SHA512 
cb278b8e18da3b991c6415ff59e9f3aa87cfb2e52048b3f74a9e3d183e0cc5bf71595123c644d0aea75084e653a885cbfa70c8ddd8b6a888bb13183624fcb46b
 WHIRLPOOL 
545495d466cbea8f750b7e997699e2466131ce780ed73e18a880934a5255f759cee470b6f85a16a44f62bacaad14490e72a212c4cf6e53f0fe69b87492f9d055
-DIST python-dateutil-2.4.2.tar.gz 209120 SHA256 
3e95445c1db500a344079a47b171c45ef18f57d188dffdb0e4165c71bea8eb3d SHA512 
8e38721e6d132850f85e7808d2731285d2c12eae2a3e0cbebe05265d0837ad22d4d94b611e146028ea3d23a3e2611b281dd6224081a69dfe4b58cf3b378d7f0d
 WHIRLPOOL 
88ddb75f52a95a6b7197b41364b80968bf2c21a3bda9c7b992726ef35ca934a66a5d8ccd773d7647f985541d87c66fa94af13600b0165707af9b73d1bff8887e
-DIST python-dateutil-2.6.0.tar.gz 258060 SHA256 
62a2f8df3d66f878373fd0072eacf4ee52194ba302e00082828e0d263b0418d2 SHA512 
1fec6dd6fc00650821fd826405414bcde79e1542a53608ebd837e924b4abc147a369214ec064adbff682fc5ff67440086f3000eaa77b274c7463c3f58686ced9
 WHIRLPOOL 
1cae1f1e3dfe09c3215bba031ee5a604ffe86bae7b70999320f37232ddaf5401edbb56697157b9b89316220d932faef07e7d7e6a2e68992fc17bb91bf86b24b3
 DIST python-dateutil-2.6.1.tar.gz 241428 SHA256 
891c38b2a02f5bb1be3e4793866c8df49c7d19baabf9c1bad62547e0b4866aca SHA512 
f16dd29fc975629f594dd2683a525e2a86acb020bf8962558d19040b14ac6f19d4ab07a910d6bb55c9db3cc02b5472774a3a05ccc86cf624ca5e5144463646db
 WHIRLPOOL 
963b2d15373e0d83bfb611c1bd6ac86463f5c88b4a20f42ca13e32ebf9d442994ecc3b22be09e57ed2983b20072d229623ee15aa3e4d9ba884d898723cbe0c72

diff --git 
a/dev-python/python-dateutil/files/python-dateutil-2.4.2-timelex.patch 
b/dev-python/python-dateutil/files/python-dateutil-2.4.2-timelex.patch
deleted file mode 100644
index bccec4a56dd..000
--- a/dev-python/python-dateutil/files/python-dateutil-2.4.2-timelex.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git dateutil/parser.py~ dateutil/parser.py
-index 8b6c2d28b8..75453ef49e 100644
 dateutil/parser.py~
-+++ dateutil/parser.py
-@@ -32,7 +32,7 @@ __all__ = ["parse", "parserinfo"]
- class _timelex(object):
- 
- def __init__(self, instream):
--if isinstance(instream, text_type):
-+if not hasattr(instream, 'read'):
- instream = StringIO(instream)
- self.instream = instream
- self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'

diff --git a/dev-python/python-dateutil/python-dateutil-2.2.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.2.ebuild
deleted file mode 100644
index 010d7200f1d..000
--- a/dev-python/python-dateutil/python-dateutil-2.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Extensions to the standard Python datetime module"
-HOMEPAGE="http://labix.org/python-dateutil 
https://pypi.python.org/pypi/python-dateutil;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="examples"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]
-   sys-libs/timezone-data
-   !https://dateutil.readthedocs.org/
-   https://pypi.python.org/pypi/python-dateutil
-   https://github.com/dateutil/dateutil/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="
-   >=dev-python/six-1.5[${PYTHON_USEDEP}]
-   sys-libs/timezone-data"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-timelex.patch
-)
-
-_python_prepare_all() {
-   # don't install zoneinfo tarball
-   sed -i '/package_data=/d' setup.py || die
-
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/files/, dev-python/python-dateutil/

2016-11-30 Thread Lars Wendler
commit: 04f3985d841f0417f6f7733c06b63015707bceac
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Nov 30 10:18:55 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Nov 30 13:53:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04f3985d

dev-python/python-dateutil: Removed old.

Package-Manager: portage-2.3.2

 dev-python/python-dateutil/Manifest|  3 --
 .../files/python-dateutil-2.1-open-utf-8.patch | 21 
 .../python-dateutil/python-dateutil-2.1-r1.ebuild  | 58 --
 .../python-dateutil/python-dateutil-2.4.0.ebuild   | 33 
 .../python-dateutil-2.4.1-r1.ebuild| 33 
 .../python-dateutil/python-dateutil-2.4.2.ebuild   | 39 ---
 6 files changed, 187 deletions(-)

diff --git a/dev-python/python-dateutil/Manifest 
b/dev-python/python-dateutil/Manifest
index 138d380..2be691b 100644
--- a/dev-python/python-dateutil/Manifest
+++ b/dev-python/python-dateutil/Manifest
@@ -1,7 +1,4 @@
-DIST python-dateutil-2.1.tar.gz 152334 SHA256 
4c44ec3f9ff057b8c7b4c78beca5fdd8710600ea9a1df42f31bfcbae2f059dee SHA512 
017e054f22886814763f6ab0c5c3ee411ce3d59a0d07e26fdf9afdab2500d689aa67a6c4c617b8960755272cb800ff449caedcb180c3a58631ac3cec3ffb89cc
 WHIRLPOOL 
f77bb35f5d8706e0909e5e522380f77a8f2bea1f183bdbd8bd41250fc3414730d327ccbab728bf67b5f80e34e672b8d9b346595d1b6c5694bff24a64b43a7454
 DIST python-dateutil-2.2.tar.gz 259085 SHA256 
eec865307ebe7f329a6a9945c15453265a449cdaaf3710340828a1934d53e468 SHA512 
cb278b8e18da3b991c6415ff59e9f3aa87cfb2e52048b3f74a9e3d183e0cc5bf71595123c644d0aea75084e653a885cbfa70c8ddd8b6a888bb13183624fcb46b
 WHIRLPOOL 
545495d466cbea8f750b7e997699e2466131ce780ed73e18a880934a5255f759cee470b6f85a16a44f62bacaad14490e72a212c4cf6e53f0fe69b87492f9d055
-DIST python-dateutil-2.4.0.tar.gz 195214 SHA256 
439df33ce47ef1478a4f4765f3390eab0ed3ec4ae10be32f293c8d19f417 SHA512 
2e62e6fe430838bbb86e94dd3b224e5a0676f06a1c0fecf11ae6954f98916b4b91555bdeabfb6c458516fcee2462a731ebcb8c551fd7ceb808f9f55d5bdb7408
 WHIRLPOOL 
ca717566d50b32e7a346569a391f8d47c86a5c5c833d8083c7fb26e5eaeb45c590e563b9cf8dd2b2d8ff5210b0b8c08d7bc58d87aac3ffb333546622db66c76f
-DIST python-dateutil-2.4.1.post1.tar.gz 207628 SHA256 
aa9bdbd60c395db90204609f1fb5aeb3797870f65c09f04f243476d22f8f4615 SHA512 
abd2b00f93cb4a4513da52c2f4c9ee632f1db1de583179b6e20a948463cf830ac339b7be6f7b6c5f9a823d0da955a48aee16c8d769eaaf33421090a5fbd199ce
 WHIRLPOOL 
8c86898994dd65ee06034de47b47937203db66f9e8ae64c72c220464e9e590aa0e9e6a1e94b76fa9ed2571b11e5beb6f7d637937cc05f6c262e18c7130cf4a9b
 DIST python-dateutil-2.4.2.tar.gz 209120 SHA256 
3e95445c1db500a344079a47b171c45ef18f57d188dffdb0e4165c71bea8eb3d SHA512 
8e38721e6d132850f85e7808d2731285d2c12eae2a3e0cbebe05265d0837ad22d4d94b611e146028ea3d23a3e2611b281dd6224081a69dfe4b58cf3b378d7f0d
 WHIRLPOOL 
88ddb75f52a95a6b7197b41364b80968bf2c21a3bda9c7b992726ef35ca934a66a5d8ccd773d7647f985541d87c66fa94af13600b0165707af9b73d1bff8887e
 DIST python-dateutil-2.5.3.tar.gz 236877 SHA256 
1408fdb07c6a1fa9997567ce3fcee6a337b39a503d80699e0f213de4aa4b32ed SHA512 
413b935321f0a65fd8e8ba49990acd5bed60b9bcd614837a26c1cf52ecbf268543a97791dfa7b91ebf183866a8de7be302ca7d18d10352e897994f60bce5df62
 WHIRLPOOL 
dd199467d5ddccb7a82b0f08d3ccc5695f542e62f7bddc1d9b01fefcdeb91cb119a5978901b0bc84af0d69482e7f984fa512e5978a1e791753b1c3ee64c87103
 DIST python-dateutil-2.6.0.tar.gz 258060 SHA256 
62a2f8df3d66f878373fd0072eacf4ee52194ba302e00082828e0d263b0418d2 SHA512 
1fec6dd6fc00650821fd826405414bcde79e1542a53608ebd837e924b4abc147a369214ec064adbff682fc5ff67440086f3000eaa77b274c7463c3f58686ced9
 WHIRLPOOL 
1cae1f1e3dfe09c3215bba031ee5a604ffe86bae7b70999320f37232ddaf5401edbb56697157b9b89316220d932faef07e7d7e6a2e68992fc17bb91bf86b24b3

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 f272854..
--- 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",

diff --git a/dev-python/python-dateutil/python-dateutil-2.1-r1.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.1-r1.ebuild
deleted file mode 100644
index 2172e49..
--- a/dev-python/python-dateutil/python-dateutil-2.1-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation