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/whichcraft/
Date: Sat, 06 Jan 2018 13:39:42
Message-Id: 1515245957.d3a86ea53c97b2b9cee81b4fc1c2f9fa080d5c0f.mgorny@gentoo
1 commit: d3a86ea53c97b2b9cee81b4fc1c2f9fa080d5c0f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 6 09:55:17 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 6 13:39:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a86ea5
7
8 dev-python/whichcraft: Clean old up
9
10 dev-python/whichcraft/Manifest | 1 -
11 dev-python/whichcraft/whichcraft-0.4.0.ebuild | 25 -------------------------
12 2 files changed, 26 deletions(-)
13
14 diff --git a/dev-python/whichcraft/Manifest b/dev-python/whichcraft/Manifest
15 index 5c9197bd192..61fd73b85c1 100644
16 --- a/dev-python/whichcraft/Manifest
17 +++ b/dev-python/whichcraft/Manifest
18 @@ -1,2 +1 @@
19 -DIST whichcraft-0.4.0.tar.gz 8008 BLAKE2B ac135faf68e27f6337382a4939f85103085989e7aa5d16fac136407d797a9ac18359fa234ad9419890b2fe9e2ac1ac3c913d1ce604d3fd57d657024ce901a166 SHA512 ed077a0b8eddc720c3db251ebaaf2695e4f2ed827c941d6979533944a03d8efcfe7aabb9be0c34ba3f016c98921b519c2907e3510f255fb4f5067f1844e68d8f
20 DIST whichcraft-0.4.1.tar.gz 8095 BLAKE2B 666e4919698226e1f252f96323dd1fb56350e7b63424a0022fcf67f7afb83e3ec944b3689f1e58fbc29f1decbf8ce3d87aee9a9cb3a69621b2f65f235682068b SHA512 92633be99badd0ce06cf28b23366f89f2104ef2364ec8f637230fe46b378d1398a64f4d8b367358c833a2038159debc70b0498e94d2729918b95847defd59cae
21
22 diff --git a/dev-python/whichcraft/whichcraft-0.4.0.ebuild b/dev-python/whichcraft/whichcraft-0.4.0.ebuild
23 deleted file mode 100644
24 index 337719a0b01..00000000000
25 --- a/dev-python/whichcraft/whichcraft-0.4.0.ebuild
26 +++ /dev/null
27 @@ -1,25 +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,3_5,3_6} )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="This package provides cross-platform cross-python shutil.which functionality"
38 -HOMEPAGE="https://github.com/pydanny/whichcraft"
39 -SRC_URI="https://github.com/pydanny/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="~amd64"
44 -IUSE="test"
45 -
46 -DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst )
47 -
48 -DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
49 -
50 -python_test() {
51 - ${PYTHON} test_whichcraft.py || die
52 -}