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/clint/
Date: Tue, 03 Nov 2020 08:24:14
Message-Id: 1604391839.8027475da3af00b8868fb1732e8186616886ef5a.mgorny@gentoo
1 commit: 8027475da3af00b8868fb1732e8186616886ef5a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 3 07:57:35 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 3 08:23:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8027475d
7
8 dev-python/clint: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/clint/clint-0.5.1-r2.ebuild | 45 ----------------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/dev-python/clint/clint-0.5.1-r2.ebuild b/dev-python/clint/clint-0.5.1-r2.ebuild
16 deleted file mode 100644
17 index f62be93bf38..00000000000
18 --- a/dev-python/clint/clint-0.5.1-r2.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{6,7,8} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Python Command-line Application Tools"
31 -HOMEPAGE="https://github.com/kennethreitz/clint"
32 -SRC_URI="https://github.com/kennethreitz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="ISC"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm64 ~x86"
37 -IUSE="doc examples test"
38 -RESTRICT="!test? ( test )"
39 -
40 -DEPEND="
41 - dev-python/setuptools[${PYTHON_USEDEP}]
42 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
43 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
44 -"
45 -
46 -# https://github.com/kennethreitz-archive/clint/pull/180
47 -PATCHES=( "${FILESDIR}/${P}-disable-args-dependency.patch" )
48 -
49 -python_compile_all() {
50 - use doc && emake -C docs html
51 -}
52 -
53 -python_test() {
54 - py.test || die "Tests failed under ${EPYTHON}"
55 -}
56 -
57 -python_install_all() {
58 - use doc && local HTML_DOCS=( docs/_build/html/. )
59 - if use examples; then
60 - insinto /usr/share/doc/${PF}
61 - doins -r examples
62 - fi
63 -
64 - distutils-r1_python_install_all
65 -}