Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/
Date: Wed, 03 May 2017 09:26:26
Message-Id: 1493803558.97fd3da90220e7888a1ca8471ce30e0b9b5f3810.mgorny@gentoo
1 commit: 97fd3da90220e7888a1ca8471ce30e0b9b5f3810
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 3 07:42:06 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 3 09:25:58 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97fd3da9
7
8 dev-python/python-dateutil: Clean old versions up
9
10 dev-python/python-dateutil/Manifest | 1 -
11 .../python-dateutil/python-dateutil-2.5.3.ebuild | 38 ----------------------
12 2 files changed, 39 deletions(-)
13
14 diff --git a/dev-python/python-dateutil/Manifest b/dev-python/python-dateutil/Manifest
15 index 2be691b067a..4d127a40e31 100644
16 --- a/dev-python/python-dateutil/Manifest
17 +++ b/dev-python/python-dateutil/Manifest
18 @@ -1,4 +1,3 @@
19 DIST python-dateutil-2.2.tar.gz 259085 SHA256 eec865307ebe7f329a6a9945c15453265a449cdaaf3710340828a1934d53e468 SHA512 cb278b8e18da3b991c6415ff59e9f3aa87cfb2e52048b3f74a9e3d183e0cc5bf71595123c644d0aea75084e653a885cbfa70c8ddd8b6a888bb13183624fcb46b WHIRLPOOL 545495d466cbea8f750b7e997699e2466131ce780ed73e18a880934a5255f759cee470b6f85a16a44f62bacaad14490e72a212c4cf6e53f0fe69b87492f9d055
20 DIST python-dateutil-2.4.2.tar.gz 209120 SHA256 3e95445c1db500a344079a47b171c45ef18f57d188dffdb0e4165c71bea8eb3d SHA512 8e38721e6d132850f85e7808d2731285d2c12eae2a3e0cbebe05265d0837ad22d4d94b611e146028ea3d23a3e2611b281dd6224081a69dfe4b58cf3b378d7f0d WHIRLPOOL 88ddb75f52a95a6b7197b41364b80968bf2c21a3bda9c7b992726ef35ca934a66a5d8ccd773d7647f985541d87c66fa94af13600b0165707af9b73d1bff8887e
21 -DIST python-dateutil-2.5.3.tar.gz 236877 SHA256 1408fdb07c6a1fa9997567ce3fcee6a337b39a503d80699e0f213de4aa4b32ed SHA512 413b935321f0a65fd8e8ba49990acd5bed60b9bcd614837a26c1cf52ecbf268543a97791dfa7b91ebf183866a8de7be302ca7d18d10352e897994f60bce5df62 WHIRLPOOL dd199467d5ddccb7a82b0f08d3ccc5695f542e62f7bddc1d9b01fefcdeb91cb119a5978901b0bc84af0d69482e7f984fa512e5978a1e791753b1c3ee64c87103
22 DIST python-dateutil-2.6.0.tar.gz 258060 SHA256 62a2f8df3d66f878373fd0072eacf4ee52194ba302e00082828e0d263b0418d2 SHA512 1fec6dd6fc00650821fd826405414bcde79e1542a53608ebd837e924b4abc147a369214ec064adbff682fc5ff67440086f3000eaa77b274c7463c3f58686ced9 WHIRLPOOL 1cae1f1e3dfe09c3215bba031ee5a604ffe86bae7b70999320f37232ddaf5401edbb56697157b9b89316220d932faef07e7d7e6a2e68992fc17bb91bf86b24b3
23
24 diff --git a/dev-python/python-dateutil/python-dateutil-2.5.3.ebuild b/dev-python/python-dateutil/python-dateutil-2.5.3.ebuild
25 deleted file mode 100644
26 index 9f4ad2c27a3..00000000000
27 --- a/dev-python/python-dateutil/python-dateutil-2.5.3.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Extensions to the standard Python datetime module"
40 -HOMEPAGE="
41 - https://dateutil.readthedocs.org/
42 - https://pypi.python.org/pypi/python-dateutil
43 - https://github.com/dateutil/dateutil/
44 -"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -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"
50 -IUSE=""
51 -
52 -RDEPEND="
53 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
54 - sys-libs/timezone-data"
55 -DEPEND="${RDEPEND}
56 - dev-python/setuptools[${PYTHON_USEDEP}]"
57 -
58 -python_prepare_all() {
59 - # don't install zoneinfo tarball
60 - sed -i '/package_data=/d' setup.py || die
61 -
62 - distutils-r1_python_prepare_all
63 -}
64 -
65 -python_test() {
66 - esetup.py test
67 -}