Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/isodate/
Date: Sun, 27 Aug 2017 08:12:06
Message-Id: 1503821410.921b003e0cde6fdeece792dc2a900fb8e604aeb5.radhermit@gentoo
1 commit: 921b003e0cde6fdeece792dc2a900fb8e604aeb5
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 27 08:10:10 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 27 08:10:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=921b003e
7
8 dev-python/isodate: remove old
9
10 dev-python/isodate/Manifest | 1 -
11 dev-python/isodate/isodate-0.5.1.ebuild | 33 ---------------------------------
12 2 files changed, 34 deletions(-)
13
14 diff --git a/dev-python/isodate/Manifest b/dev-python/isodate/Manifest
15 index d6334d458e6..d8f776b7fb2 100644
16 --- a/dev-python/isodate/Manifest
17 +++ b/dev-python/isodate/Manifest
18 @@ -1,2 +1 @@
19 -DIST isodate-0.5.1.tar.gz 26859 SHA256 b12aed31c0e834543497e24d609a41531a800d8304c39e6665c45ca023b012fb SHA512 8bc1006a1d3aa03fc69885415f2acc18efde870d1c8e5ac9741672b2818983fabb781d853766105298fc55d187add20f4e3a4bf33966fc5b9d5f5ca08dc77748 WHIRLPOOL b246e35c93bf8001b7b7519c811cf7bda3cf669ace008e8f7ba4ee26e88b764468d326c9c145709a626a11e8358368dda2440a0fcf60587d22dbd6bce8825655
20 DIST isodate-0.5.4.tar.gz 27691 SHA256 42105c41d037246dc1987e36d96f3752ffd5c0c24834dd12e4fdbe1e79544e31 SHA512 ef5fd27ffa61ad10abf499723c452fd8fd6c2f08a0d5aca6ead88857e5d159f50a3d01769b9fe0aed59a57b0f89a70b359135b0d7c5e6a75d023daa824e5d80a WHIRLPOOL 3f26621513740bb6c4bd42a97d6cb56d631ce8f48f056d679edc1e1c0b57b1349a69aecd79704efe2d7f9195d54ec704e1f96b3da90dea52704999893fe2e3d3
21
22 diff --git a/dev-python/isodate/isodate-0.5.1.ebuild b/dev-python/isodate/isodate-0.5.1.ebuild
23 deleted file mode 100644
24 index 13ef6c02eed..00000000000
25 --- a/dev-python/isodate/isodate-0.5.1.ebuild
26 +++ /dev/null
27 @@ -1,33 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python{2_7,3_4} pypy )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="ISO 8601 date/time/duration parser and formatter"
38 -HOMEPAGE="https://pypi.python.org/pypi/isodate"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
44 -IUSE=""
45 -
46 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
47 -
48 -python_test() {
49 - local testfile
50 - pushd "${BUILD_DIR}"/lib/ || die
51 - for test in ${PN}/tests/test_*.py; do
52 - if ! "${PYTHON}" "${testfile}"; then
53 - die "Test ${testfile} failed under ${EPYTHON}"
54 - fi
55 - done
56 -
57 - # Give some order to the output salad.
58 - einfo "Testsuite passed under ${EPYTHON}";
59 - einfo ""
60 -}