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/line_profiler/
Date: Sun, 17 Oct 2021 09:00:32
Message-Id: 1634461203.070f1e1ad061ab81fe1956388db31f2d979673e2.mgorny@gentoo
1 commit: 070f1e1ad061ab81fe1956388db31f2d979673e2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 09:00:03 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 09:00:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=070f1e1a
7
8 dev-python/line_profiler: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/line_profiler/Manifest | 1 -
13 .../line_profiler/line_profiler-3.3.0.ebuild | 49 ----------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/dev-python/line_profiler/Manifest b/dev-python/line_profiler/Manifest
17 index f18e60ea4a8..1f108077af1 100644
18 --- a/dev-python/line_profiler/Manifest
19 +++ b/dev-python/line_profiler/Manifest
20 @@ -1,2 +1 @@
21 -DIST line_profiler-3.3.0.gh.tar.gz 52791 BLAKE2B e3499f5274045d158620fa890df6e725a99c3df019bb4515434213d2c60d52d400d7a7dfce64b153422722ea388f73318818485c9747e6eace2d81c457f93a7f SHA512 37680c55a551c73aed7a3ee2333c523f0617e01cda6db98060f15fe36990c8c8bc08bd5848e569f269bf11590776290ee0980046cce745df8e54268d7991559b
22 DIST line_profiler-3.3.1.gh.tar.gz 56700 BLAKE2B 030c0fc742a6773ebb55a54a3c21d3d5e5d6d5d258a2c3cd2071ff93917411b65e100bfc6549d9c60d9a7c361c53b291d8b81538acaf5b83665c04129d25bc02 SHA512 8a3704a6df2abe71283cb2da23b738932c6f4b42aedcdefda0d318fd4b894d56831a855c4be4430657308530a04d1e96b0e15a60edca06621bdd5370c0bf9911
23
24 diff --git a/dev-python/line_profiler/line_profiler-3.3.0.ebuild b/dev-python/line_profiler/line_profiler-3.3.0.ebuild
25 deleted file mode 100644
26 index 1e0c9050df4..00000000000
27 --- a/dev-python/line_profiler/line_profiler-3.3.0.ebuild
28 +++ /dev/null
29 @@ -1,49 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -# force it to match scikit-build
37 -CMAKE_MAKEFILE_GENERATOR=ninja
38 -
39 -inherit cmake distutils-r1
40 -
41 -DESCRIPTION="Line-by-line profiler"
42 -HOMEPAGE="https://github.com/pyutils/line_profiler/"
43 -SRC_URI="
44 - https://github.com/pyutils/line_profiler/archive/${PV}.tar.gz
45 - -> ${P}.gh.tar.gz"
46 -
47 -SLOT="0"
48 -LICENSE="BSD"
49 -KEYWORDS="~amd64 ~x86"
50 -
51 -RDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
52 -# technically, the package claims to support non-scikit-build build
53 -# but it's clearly unmaintained and broken at the moment
54 -BDEPEND="
55 - dev-python/cython[${PYTHON_USEDEP}]
56 - dev-python/scikit-build[${PYTHON_USEDEP}]
57 - test? (
58 - dev-python/coverage[${PYTHON_USEDEP}]
59 - dev-python/ubelt[${PYTHON_USEDEP}]
60 - )"
61 -
62 -distutils_enable_tests --install pytest
63 -
64 -src_prepare() {
65 - cmake_src_prepare
66 - distutils-r1_src_prepare
67 -}
68 -
69 -python_test() {
70 - distutils_install_for_testing
71 - cd tests || die
72 - epytest
73 -}
74 -
75 -python_install() {
76 - distutils-r1_python_install
77 - python_optimize
78 -}