summaryrefslogtreecommitdiff
path: root/dev-python/python-dateutil
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-07-03 13:35:05 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-07-03 13:35:05 +0000
commitb5c9400a4040142dfacb248de5da8a13749982be (patch)
tree5ccc4a6c7741217443ea2c8712521e16588fcf15 /dev-python/python-dateutil
parent8c2bd763eca910a65697171563f0ab95781e2b32 (diff)
downloadbaldeagleos-repo-b5c9400a4040142dfacb248de5da8a13749982be.tar.gz
baldeagleos-repo-b5c9400a4040142dfacb248de5da8a13749982be.tar.xz
baldeagleos-repo-b5c9400a4040142dfacb248de5da8a13749982be.zip
Adding metadata
Diffstat (limited to 'dev-python/python-dateutil')
-rw-r--r--dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch2
-rw-r--r--dev-python/python-dateutil/python-dateutil-2.8.1-r3.ebuild (renamed from dev-python/python-dateutil/python-dateutil-2.8.1-r2.ebuild)4
2 files changed, 3 insertions, 3 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
index a937e6600a29..abbc853e0902 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
index e6ef8fa714b9..538ac069ee4c 100644
--- a/dev-python/python-dateutil/python-dateutil-2.8.1-r2.ebuild
+++ b/dev-python/python-dateutil/python-dateutil-2.8.1-r3.ebuild
@@ -9,8 +9,8 @@ inherit distutils-r1
DESCRIPTION="Extensions to the standard Python datetime module"
HOMEPAGE="
- https://dateutil.readthedocs.org/
- https://pypi.org/project/python-dateutil
+ https://dateutil.readthedocs.io/
+ https://pypi.org/project/python-dateutil/
https://github.com/dateutil/dateutil/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"