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: Sun, 03 Oct 2021 19:27:15
Message-Id: 1633289139.a61e3df1f1a50c40220752b4dbed4fa9bbf0a811.mgorny@gentoo
1 commit: a61e3df1f1a50c40220752b4dbed4fa9bbf0a811
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 3 19:25:39 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 3 19:25:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a61e3df1
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.57.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 5eabe415abc..eb26320def5 100644
18 --- a/dev-python/memory_profiler/Manifest
19 +++ b/dev-python/memory_profiler/Manifest
20 @@ -1,2 +1 @@
21 -DIST memory_profiler-0.57.tar.gz 84096 BLAKE2B d2c5fe810b9ac2f1e52fb8630056ee825d3d56799c15a377bff914be3a04e11c872e557847ef2a107421d082515eb59906f931ad1873ae7fec58fef16caabb4c SHA512 c6e2f755656dc820dfc2cf7a659dc319b3d1aa0df144ac6a08db35f4b38a90a9b994cf9c8320b8370f51c97e0d0bf2f9c4a3ab070b4934879f8e579b732e426a
22 DIST memory_profiler-0.58.0.gh.tar.gz 140692 BLAKE2B 2f3917d833dfcc722b61871c7e704e869527a389b10a81b473989b8455630f5defa5f5b21a172708070b89468c7dd66682cd3b9c0bf435e9be49651b69b50137 SHA512 5c02933acffc05f42d2ae98a069d36563e1d26515d439d94ad3903960dd06cd378faae3000b26c022770e71e83db6f770ceaf63cabb92f4159bda0ff9cc4e849
23
24 diff --git a/dev-python/memory_profiler/memory_profiler-0.57.ebuild b/dev-python/memory_profiler/memory_profiler-0.57.ebuild
25 deleted file mode 100644
26 index 4571a26aa14..00000000000
27 --- a/dev-python/memory_profiler/memory_profiler-0.57.ebuild
28 +++ /dev/null
29 @@ -1,55 +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 -
37 -DISTUTILS_USE_SETUPTOOLS=rdepend
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="A module for monitoring memory usage of a python program"
42 -HOMEPAGE="https://pypi.org/project/memory_profiler/ https://github.com/fabianp/memory_profiler"
43 -SRC_URI="https://github.com/pythonprofilers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
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 -}