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