Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parse-type/
Date: Fri, 08 Dec 2017 22:18:10
Message-Id: 1512771482.a32c4c1fac7ea8467987e645b92e303090ace7af.monsieurp@gentoo
1 commit: a32c4c1fac7ea8467987e645b92e303090ace7af
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Thu Dec 7 08:36:19 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 8 22:18:02 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a32c4c1f
7
8 dev-python/parse-type: remove old.
9
10 Has missing die
11
12 Package-Manager: Portage-2.3.16, Repoman-2.3.6
13
14 dev-python/parse-type/parse-type-0.3.4.ebuild | 38 ---------------------------
15 1 file changed, 38 deletions(-)
16
17 diff --git a/dev-python/parse-type/parse-type-0.3.4.ebuild b/dev-python/parse-type/parse-type-0.3.4.ebuild
18 deleted file mode 100644
19 index aa50d715f03..00000000000
20 --- a/dev-python/parse-type/parse-type-0.3.4.ebuild
21 +++ /dev/null
22 @@ -1,38 +0,0 @@
23 -# Copyright 1999-2014 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=5
27 -PYTHON_COMPAT=( python2_7 python3_4 )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Simplifies to build parse types based on the parse module"
32 -HOMEPAGE="https://github.com/jenisys/parse_type"
33 -
34 -MY_PN="${PN/-/_}"
35 -MY_P="${MY_PN}-${PV}"
36 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
37 -
38 -S="${WORKDIR}/${MY_P}"
39 -
40 -LICENSE="BSD"
41 -SLOT="0"
42 -KEYWORDS="~amd64"
43 -IUSE="test"
44 -
45 -DEPEND="
46 - dev-python/setuptools[${PYTHON_USEDEP}]
47 - test? (
48 - dev-python/pytest[${PYTHON_USEDEP}]
49 - dev-python/pytest-runner[${PYTHON_USEDEP}]
50 - )
51 -"
52 -RDEPEND="
53 - >=dev-python/parse-1.6[${PYTHON_USEDEP}]
54 - dev-python/six[${PYTHON_USEDEP}]
55 - $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' 'python2*' 'python3_3')
56 -"
57 -
58 -python_test() {
59 - py.test tests || "Tests failed under ${EPYTHON}"
60 -}