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/pympler/
Date: Sat, 28 Mar 2020 18:03:07
Message-Id: 1585418560.9a1ec2c87ed53bfdf39ae24d15382ea4e7d965a0.mgorny@gentoo
1 commit: 9a1ec2c87ed53bfdf39ae24d15382ea4e7d965a0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 17:52:21 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 18:02:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a1ec2c8
7
8 dev-python/pympler: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pympler/Manifest | 1 -
13 dev-python/pympler/pympler-0.5.ebuild | 43 -----------------------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/dev-python/pympler/Manifest b/dev-python/pympler/Manifest
17 index 27c2724d1be..d392bb939e9 100644
18 --- a/dev-python/pympler/Manifest
19 +++ b/dev-python/pympler/Manifest
20 @@ -1,2 +1 @@
21 -DIST pympler-0.5.tar.gz 263627 BLAKE2B 5ce881664e2d57d1a7a9b87238cfc6657fd35a140e6ab906b55ca6e0ac91fc8a74377d4db21706708c55773f8ca65d3578c101669ba409339418e09ca53d0fb2 SHA512 254b758df70bafe57f315a973de0caeef6cd616bd0cc7b4475c74c3a9a94f52b3ac3da3f073483db3560cd0060536c95ed1297007c24dfe8db89fd893ff1409c
22 DIST pympler-0.6.tar.gz 267267 BLAKE2B 84a8df3177d0defed949869bec9342beb4336c912be5539c597388207abcbc53fa5218da34b16a872dca804ff559a448dc092b4d33396d570164311c1808765a SHA512 891822ce0a76377d74aa99dd2ce8b21a364084f0bc03ab6d6fe505597a0e182dde459b218dff8e0e6a753e1d88ba9f01b3a4b97be31a20e73a93d6c6fee66e1b
23
24 diff --git a/dev-python/pympler/pympler-0.5.ebuild b/dev-python/pympler/pympler-0.5.ebuild
25 deleted file mode 100644
26 index 1026066d1f6..00000000000
27 --- a/dev-python/pympler/pympler-0.5.ebuild
28 +++ /dev/null
29 @@ -1,43 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="Pympler"
40 -MY_P="${MY_PN}-${PV}"
41 -
42 -DESCRIPTION="Memory profiling for Python applications"
43 -HOMEPAGE="https://pypi.org/project/Pympler/ https://github.com/pympler/pympler"
44 -SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -# The PyPi tarball is missing the documentation
46 -#SRC_URI="mirror://pypi/P/${MY_PN}/${MY_P}.tar.gz"
47 -
48 -SLOT="0"
49 -LICENSE="Apache-2.0"
50 -KEYWORDS="~alpha amd64 arm ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
51 -IUSE="doc test"
52 -RESTRICT="!test? ( test )"
53 -
54 -RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"
55 -DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
56 - test? ( ${RDEPEND} )"
57 -
58 -python_compile_all() {
59 - if use doc; then
60 - python_setup
61 - sphinx-build -b html doc/{source,html} || die
62 - fi
63 -}
64 -
65 -python_test() {
66 - esetup.py try
67 -}
68 -
69 -python_install_all() {
70 - use doc && local HTML_DOCS=( doc/html/. )
71 - distutils-r1_python_install_all
72 -}