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/memory_profiler/
Date: Thu, 20 Jan 2022 14:24:47
Message-Id: 1642688675.ecb3e46ad1eaf0126653f21bc0479e4100f7482f.mgorny@gentoo
1 commit: ecb3e46ad1eaf0126653f21bc0479e4100f7482f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 14:20:41 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 14:24:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecb3e46a
7
8 dev-python/memory_profiler: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/memory_profiler/Manifest | 1 -
13 .../memory_profiler/memory_profiler-0.59.ebuild | 55 ----------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/dev-python/memory_profiler/Manifest b/dev-python/memory_profiler/Manifest
17 index d7315859fdb9..aaf7b94d12d1 100644
18 --- a/dev-python/memory_profiler/Manifest
19 +++ b/dev-python/memory_profiler/Manifest
20 @@ -1,2 +1 @@
21 -DIST memory_profiler-0.59.gh.tar.gz 142586 BLAKE2B b9c8cffbd03f980937d30626facf431e6effd9a86a21fbe629f4238a2f78f2d65242637105ad3a07b4158a6335a541701bba657941bb23c9da0f49a1113402ee SHA512 f70ad8f871bd5068e2817049231abee7e535cb352f0444dcb0d9d072b9f4dda944e85ec7854855307a9748257da80f53dd50fe17fefbd73045dce1306f51f88d
22 DIST memory_profiler-0.60.gh.tar.gz 142585 BLAKE2B aa7fd9e547eecadc184d4da5830c582a9a9ab9565f3dc9c763caaa7e75698ed6b499d2555e4a93b39d2f80f85fad025b84043e0812cb25dd1511f4ebf8da5a85 SHA512 407e44a410cdb4c7c8cc5ff40198c28012f8b0c6bba88d2d1612681eb621a1b802ef137be62fc64ca9e3c362ca3814433bc12169d7c3827bf97293c5bbb8bfbc
23
24 diff --git a/dev-python/memory_profiler/memory_profiler-0.59.ebuild b/dev-python/memory_profiler/memory_profiler-0.59.ebuild
25 deleted file mode 100644
26 index e95aa5f7afbe..000000000000
27 --- a/dev-python/memory_profiler/memory_profiler-0.59.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="A module for monitoring memory usage of a python program"
39 -HOMEPAGE="https://pypi.org/project/memory-profiler/ https://github.com/pythonprofilers/memory_profiler"
40 -SRC_URI="
41 - https://github.com/pythonprofilers/memory_profiler/archive/v${PV}.tar.gz
42 - -> ${P}.gh.tar.gz
43 -"
44 -
45 -IUSE="examples"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
50 -
51 -# dev-lang/mercury: collision on 'mprof'
52 -# https://bugs.gentoo.org/571176
53 -RDEPEND="dev-python/psutil[${PYTHON_USEDEP}]
54 - !dev-lang/mercury"
55 -
56 -distutils_enable_tests pytest
57 -
58 -python_test() {
59 - "${EPYTHON}" -m memory_profiler test/test_as.py || die
60 - "${EPYTHON}" -m memory_profiler test/test_func.py || die
61 - "${EPYTHON}" -m memory_profiler test/test_gen.py || die
62 - "${EPYTHON}" -m memory_profiler test/test_loop.py || die
63 - "${EPYTHON}" -m memory_profiler test/test_loop_decorated.py || die
64 - "${EPYTHON}" -m memory_profiler test/test_mprofile.py || die
65 - "${EPYTHON}" -m memory_profiler test/test_nested.py || die
66 - "${EPYTHON}" -m memory_profiler test/test_precision_command_line.py || die
67 - "${EPYTHON}" -m memory_profiler test/test_unicode.py || die
68 -
69 - "${EPYTHON}" test/test_exception.py || die
70 - "${EPYTHON}" test/test_exit_code.py || die
71 - "${EPYTHON}" test/test_global.py || die
72 - "${EPYTHON}" test/test_import.py || die
73 - "${EPYTHON}" test/test_memory_usage.py || die
74 - "${EPYTHON}" test/test_mprof.py || die
75 - "${EPYTHON}" test/test_precision_import.py || die
76 - "${EPYTHON}" test/test_stream_unicode.py || die
77 - "${EPYTHON}" test/test_tracemalloc.py || die
78 -}
79 -
80 -python_install_all() {
81 - use examples && dodoc -r examples
82 -
83 - distutils-r1_python_install_all
84 -}