Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/doit-py/
Date: Sun, 28 May 2017 10:22:35
Message-Id: 1495966756.9ad5afffe0b1d760881f15d3cd9d3f05f2eaf69a.pacho@gentoo
1 commit: 9ad5afffe0b1d760881f15d3cd9d3f05f2eaf69a
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 28 10:19:16 2017 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun May 28 10:19:16 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ad5afff
7
8 dev-python/doit-py: Drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-python/doit-py/Manifest | 1 -
13 dev-python/doit-py/doit-py-0.3.0.ebuild | 38 ---------------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-python/doit-py/Manifest b/dev-python/doit-py/Manifest
17 index 71e61393f53..b2ea6a6d3e7 100644
18 --- a/dev-python/doit-py/Manifest
19 +++ b/dev-python/doit-py/Manifest
20 @@ -1,2 +1 @@
21 -DIST doit-py-0.3.0.tar.gz 16151 SHA256 af015e61b1aade838d299a508e72b35d714b67a9b903c65c2863427f5c3883fc SHA512 c6cbb326a7635b78d0c22ff7db8a722aedf8d66b85db4017e1a2566f1d8f1f96d4e00407cfec2180d20091addaf731a916da1a3970553cb4bebec87df90fc609 WHIRLPOOL becc06fd65d0afcf2b9034f7943f5cb01362ad06dabc154051dd5c5d0bf0b4cc35b94e5ee0a54b873ac1c32c82cd122b78e274fda597252ebdda1f5b78ef09dd
22 DIST doit-py-0.4.0.tar.gz 16534 SHA256 46896bbb592ecb954397de5dc525e74f46dfb578ecfb53b7c57d7f798d57e2be SHA512 72aa850928c99bf43eefd827334b361243da3b26283fa358ed3f7fba72d1916b1cbe50e581d3d62ed3b4f0efb9b5d1e7f59c3dc913b2ee27e6503bf4e47def33 WHIRLPOOL 0c9180a92e29d4bf2338c33af6e4fa3f23cfe6b5a35ee3c8eb060961a311796b8d1c342074a917bfc373f068e28a3c883fcb9bcb9be45057d44c35ef9838b6a6
23
24 diff --git a/dev-python/doit-py/doit-py-0.3.0.ebuild b/dev-python/doit-py/doit-py-0.3.0.ebuild
25 deleted file mode 100644
26 index aee89628811..00000000000
27 --- a/dev-python/doit-py/doit-py-0.3.0.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -PYTHON_COMPAT=( python{2_7,3_4} pypy )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="doit tasks for python stuff"
39 -HOMEPAGE="http://pythonhosted.org/doit-py"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="doc test"
46 -
47 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
48 - test? ( dev-python/pytest[${PYTHON_USEDEP}]
49 - dev-python/coverage[${PYTHON_USEDEP}] )
50 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
51 -RDEPEND="
52 - virtual/python-pathlib[${PYTHON_USEDEP}]
53 - dev-python/doit[${PYTHON_USEDEP}]
54 - dev-python/configclass[${PYTHON_USEDEP}]"
55 -
56 -python_compile_all() {
57 - use doc && emake -C doc html
58 -}
59 -
60 -python_test() {
61 - py.test || die "Tests failed under ${EPYTHON}"
62 -}
63 -
64 -python_install_all() {
65 - use doc && local HTML_DOCS=( doc/_build/html/. )
66 - distutils-r1_python_install_all
67 -}