Gentoo Archives: gentoo-commits

From: Benda XU <heroxbd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/line_profiler/
Date: Sun, 09 Feb 2020 12:46:31
Message-Id: 1581252297.d9554e138693c7a68a0f7c63443753d31bf0be43.heroxbd@gentoo
1 commit: d9554e138693c7a68a0f7c63443753d31bf0be43
2 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 9 12:44:57 2020 +0000
4 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 9 12:44:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9554e13
7
8 dev-python/line_profiler: remove outdated -9999.
9
10 Package-Manager: Portage-2.3.85, Repoman-2.3.18
11 Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>
12
13 dev-python/line_profiler/line_profiler-9999.ebuild | 28 ----------------------
14 1 file changed, 28 deletions(-)
15
16 diff --git a/dev-python/line_profiler/line_profiler-9999.ebuild b/dev-python/line_profiler/line_profiler-9999.ebuild
17 deleted file mode 100644
18 index d39393b5901..00000000000
19 --- a/dev-python/line_profiler/line_profiler-9999.ebuild
20 +++ /dev/null
21 @@ -1,28 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -PYTHON_COMPAT=( python3_6 )
28 -
29 -inherit distutils-r1 git-r3
30 -
31 -DESCRIPTION="Line-by-line profiler"
32 -HOMEPAGE="https://github.com/rkern/line_profiler"
33 -EGIT_REPO_URI="https://github.com/rkern/${PN}.git"
34 -
35 -SLOT="0"
36 -LICENSE="BSD"
37 -KEYWORDS=""
38 -IUSE="test"
39 -RESTRICT="!test? ( test )"
40 -
41 -DEPEND="
42 - dev-python/cython[${PYTHON_USEDEP}]
43 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
44 - "
45 -
46 -python_test() {
47 - "${PYTHON}" -m unittest discover -v "${S}"/tests/ \
48 - || die "Tests failed with ${EPYTHON}"
49 -}