commit:     e03955c4d8d725dc47afa42bbd8ca5e7a71307ed
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 12 17:09:21 2017 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Thu Oct 12 17:15:49 2017 +0000
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..00000000000
--- 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..00000000000
--- 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
-       !<dev-python/python-dateutil-2.1"
-DEPEND="${RDEPEND}
-       dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-       # Use zoneinfo in /usr/share/zoneinfo.
-       sed -i -e "s/zoneinfo.gettz/gettz/g" test.py || die
-
-       # Fix parsing of date in non-English locales.
-       sed -e 's/subprocess.getoutput("date")/subprocess.getoutput("LC_ALL=C 
date")/' \
-               -i example.py || die
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       "${PYTHON}" test.py || die
-}
-
-python_install() {
-       distutils-r1_python_install
-
-       rm -f "${D}$(python_get_sitedir)/dateutil/zoneinfo"/*.tar.*
-}
-
-python_install_all() {
-       distutils-r1_python_install_all
-
-       if use examples; then
-               docinto examples
-               dodoc example.py sandbox/*.py
-       fi
-}

diff --git a/dev-python/python-dateutil/python-dateutil-2.4.2-r1.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.4.2-r1.ebuild
deleted file mode 100644
index 9be9f248eb8..00000000000
--- a/dev-python/python-dateutil/python-dateutil-2.4.2-r1.ebuild
+++ /dev/null
@@ -1,42 +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 pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Extensions to the standard Python datetime module"
-HOMEPAGE="
-       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
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       esetup.py test
-}

diff --git a/dev-python/python-dateutil/python-dateutil-2.6.0.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.6.0.ebuild
deleted file mode 100644
index 9f4ad2c27a3..00000000000
--- a/dev-python/python-dateutil/python-dateutil-2.6.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Extensions to the standard Python datetime module"
-HOMEPAGE="
-       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}]"
-
-python_prepare_all() {
-       # don't install zoneinfo tarball
-       sed -i '/package_data=/d' setup.py || die
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       esetup.py test
-}

Reply via email to