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: Fri, 30 Apr 2021 15:50:42
Message-Id: 1619797805.4c26a6b1d22b75f819b555af8388672f1a0ac06c.mgorny@gentoo
1 commit: 4c26a6b1d22b75f819b555af8388672f1a0ac06c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 30 15:47:59 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 30 15:50:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c26a6b1
7
8 dev-python/line_profiler: Bump to 3.2.2
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.2.2.ebuild | 49 ++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-python/line_profiler/Manifest b/dev-python/line_profiler/Manifest
17 index 29d93958e28..aca1ef51a12 100644
18 --- a/dev-python/line_profiler/Manifest
19 +++ b/dev-python/line_profiler/Manifest
20 @@ -1,2 +1,3 @@
21 DIST line_profiler-3.0.2.tar.gz 45185 BLAKE2B 04e617cc7b6c9686192281ab1cdfdef2cfc6ce3c7aa6b9962ed2369620618af8835b93bafe89f8d1288b45d4120d71f728ec577d5c5d035699c2d7a49d6be7c1 SHA512 9a5d1821c02fc063081854ba98a17eca21af65d5aecf4ce32c67806d31bf0c936291a30409845ce6f94211cdaaaf0859ab5e2b437e1a086fd4f60fc2a0fd2742
22 DIST line_profiler-3.2.1.gh.tar.gz 54639 BLAKE2B 8840ac41397aa5d5c0cb94dec5f673a021a9bad18a7d67d73a2d90bf59745c5e35f205d67d28edd3ceade075320c6fe00426d5cf536b9b2953fbbf90539a5e9a SHA512 6e4e0fcb44df6a4eeafa66e8254e511ef0a0c616e9c2bb4bac6bc29df5efa1849f9e75e998770ec6fbe62916a22b17465cdc6eeee6c61ffa52658a9bdb773490
23 +DIST line_profiler-3.2.2.gh.tar.gz 50780 BLAKE2B 79c5f7f73adaf940e34f96ef799faf08e7a6218cd9346dc3aa86211d04f0cdfe309de23d11f43292aaca121e78df27d0d07ec3efd129e1cc6778b6f8ae83cbbf SHA512 a7279db406adfdae08d375fa18869fdc2276fe360ffb791aa65b13a028470504cd45acfbaa7ccb1c44fb1a5622d9400c5a889f13230514b9d392f09b439af0fd
24
25 diff --git a/dev-python/line_profiler/line_profiler-3.2.2.ebuild b/dev-python/line_profiler/line_profiler-3.2.2.ebuild
26 new file mode 100644
27 index 00000000000..d9613ca310d
28 --- /dev/null
29 +++ b/dev-python/line_profiler/line_profiler-3.2.2.ebuild
30 @@ -0,0 +1,49 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} )
37 +# force it to match scikit-build
38 +CMAKE_MAKEFILE_GENERATOR=ninja
39 +
40 +inherit cmake distutils-r1
41 +
42 +DESCRIPTION="Line-by-line profiler"
43 +HOMEPAGE="https://github.com/pyutils/line_profiler/"
44 +SRC_URI="
45 + https://github.com/pyutils/line_profiler/archive/${PV}.tar.gz
46 + -> ${P}.gh.tar.gz"
47 +
48 +SLOT="0"
49 +LICENSE="BSD"
50 +KEYWORDS="~amd64 ~x86"
51 +
52 +RDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
53 +# technically, the package claims to support non-scikit-build build
54 +# but it's clearly unmaintained and broken at the moment
55 +BDEPEND="
56 + dev-python/cython[${PYTHON_USEDEP}]
57 + dev-python/scikit-build[${PYTHON_USEDEP}]
58 + test? (
59 + dev-python/coverage[${PYTHON_USEDEP}]
60 + dev-python/ubelt[${PYTHON_USEDEP}]
61 + )"
62 +
63 +distutils_enable_tests --install pytest
64 +
65 +src_prepare() {
66 + cmake_src_prepare
67 + distutils-r1_src_prepare
68 +}
69 +
70 +python_test() {
71 + distutils_install_for_testing
72 + cd tests || die
73 + epytest
74 +}
75 +
76 +python_install() {
77 + distutils-r1_python_install
78 + python_optimize
79 +}