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: Fri, 05 Jan 2018 09:36:57
Message-Id: 1515145000.8159b432af229277d146d67d831f91980ecbf1c9.mgorny@gentoo
1 commit: 8159b432af229277d146d67d831f91980ecbf1c9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 23:34:37 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 09:36:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8159b432
7
8 dev-python/memory_profiler: Clean old up
9
10 dev-python/memory_profiler/Manifest | 1 -
11 .../memory_profiler/memory_profiler-0.43.ebuild | 39 ----------------------
12 2 files changed, 40 deletions(-)
13
14 diff --git a/dev-python/memory_profiler/Manifest b/dev-python/memory_profiler/Manifest
15 index 77fa980c995..fc5e68bb8b1 100644
16 --- a/dev-python/memory_profiler/Manifest
17 +++ b/dev-python/memory_profiler/Manifest
18 @@ -1,2 +1 @@
19 -DIST memory_profiler-0.43.tar.gz 31496 BLAKE2B 0ceb901c94ac205e869323dd98364fd7cfaa21e56578221d16d416ed03bbb8a08ef7036c28da37c3f2aebf0b070ff198dacde7bc185ee276a3f2bc3e5955dc7c SHA512 6c0bbece0b2a7da5504e878db3777ae86009ed3730a00527af457e4c216e7f5423feee79216bf28496374a2a597fd0cc2b267a312587ed01ac42f6ec3351eca6
20 DIST memory_profiler-0.47.tar.gz 33725 BLAKE2B 66fc0e5c579febeea9dcd5132caa6fdbccdb5cb0a2c9083f5abf8aa03baaaafe1f77f72cdbe4d5384c6ce27fd4760511f9a947fda46eee1d81e7125c1dcd2970 SHA512 110e16ecad33068d31cf53b2f0b775d65230d51345f24a4d7d3cafafb706b10a0c7e2d98a799256b0366f1bafa9b69c060222595bb4eb9e1689301428a36fc3d
21
22 diff --git a/dev-python/memory_profiler/memory_profiler-0.43.ebuild b/dev-python/memory_profiler/memory_profiler-0.43.ebuild
23 deleted file mode 100644
24 index 046f424b099..00000000000
25 --- a/dev-python/memory_profiler/memory_profiler-0.43.ebuild
26 +++ /dev/null
27 @@ -1,39 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -
33 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="A module for monitoring memory usage of a python program"
38 -HOMEPAGE="https://pypi.python.org/pypi/memory_profiler https://github.com/fabianp/memory_profiler"
39 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
44 -IUSE="test"
45 -
46 -RDEPEND="
47 - dev-python/psutil[${PYTHON_USEDEP}]
48 -"
49 -DEPEND="${RDEPEND}
50 - dev-python/setuptools[${PYTHON_USEDEP}]"
51 -
52 -python_test() {
53 - ${EPYTHON} -m memory_profiler test/test_func.py || die
54 - ${EPYTHON} -m memory_profiler test/test_loop.py || die
55 - ${EPYTHON} -m memory_profiler test/test_as.py || die
56 - ${EPYTHON} -m memory_profiler test/test_global.py || die
57 - ${EPYTHON} -m memory_profiler test/test_precision_command_line.py || die
58 - ${EPYTHON} -m memory_profiler test/test_gen.py || die
59 - if python_is_python3; then
60 - ${EPYTHON} -m memory_profiler test/test_unicode.py || die
61 - fi
62 - ${PYTHON} test/test_tracemalloc.py || die
63 - ${EPYTHON} test/test_import.py || die
64 - ${EPYTHON} test/test_memory_usage.py || die
65 - ${EPYTHON} test/test_precision_import.py || die
66 -}