Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rootpy/
Date: Fri, 27 Dec 2019 18:52:56
Message-Id: 1577472753.64e51d7a6985508649402fab0c4472dff6ea777a.soap@gentoo
1 commit: 64e51d7a6985508649402fab0c4472dff6ea777a
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 27 18:52:33 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 27 18:52:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e51d7a
7
8 dev-python/rootpy: Remove old
9
10 Package-Manager: Portage-2.3.83, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/rootpy/Manifest | 1 -
14 dev-python/rootpy/rootpy-0.8.3.ebuild | 46 -----------------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/dev-python/rootpy/Manifest b/dev-python/rootpy/Manifest
18 index e8f1db66500..f9282c00214 100644
19 --- a/dev-python/rootpy/Manifest
20 +++ b/dev-python/rootpy/Manifest
21 @@ -1,2 +1 @@
22 -DIST rootpy-0.8.3.tar.gz 417400 BLAKE2B a8120d7005082be96901820d602abfc43bbac5d797d41a8bc215fef36ed37e3bc7b797e0d4ca084ba45b840dcf8eb4afcdfb454f8c801bdf1edec146f3f9ac38 SHA512 b1d3c17fb0a6dfe36bdf3d9a345fc55af8a102d33433c951581f9a61babf377fabb1ae486c78b2d4654cbc7320de122fb3075f27a1565655a3dc17c2b4f56df6
23 DIST rootpy-1.0.1.tar.gz 418618 BLAKE2B ce321e69d7e202877697d133ad2ba90df71cd261b206211718cb6a9ec8ee3ec085cac49526b9bb75166fafeb43f83b3f53bf231d9353f3d63fa7e4be381ce454 SHA512 db1c7edc02d1cd5a4a1940237c1e1c63d892bb92e612bdad028d14f9723a4bdc5f9b6711a135b0e099ce1895b2564b29aeb21ef0d2c3681354bf4edc9c6a325f
24
25 diff --git a/dev-python/rootpy/rootpy-0.8.3.ebuild b/dev-python/rootpy/rootpy-0.8.3.ebuild
26 deleted file mode 100644
27 index 9823bde1b34..00000000000
28 --- a/dev-python/rootpy/rootpy-0.8.3.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python2_7 )
37 -PYTHON_REQ_USE="readline"
38 -DISTUTILS_SINGLE_IMPL=1
39 -
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="Pythonic layer on top of the ROOT framework's PyROOT bindings"
43 -HOMEPAGE="http://rootpy.org"
44 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
49 -IUSE="examples test"
50 -
51 -RDEPEND="
52 - sci-physics/root[${PYTHON_USEDEP}]
53 - dev-python/matplotlib[${PYTHON_USEDEP}]
54 - dev-python/pytables[${PYTHON_USEDEP}]
55 - dev-python/root_numpy[${PYTHON_USEDEP}]
56 - dev-python/termcolor[${PYTHON_USEDEP}]"
57 -
58 -DEPEND="
59 - sci-physics/root[${PYTHON_USEDEP}]
60 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
61 -
62 -# TOFIX: tests go in an infinite loop error
63 -RESTRICT=test
64 -
65 -python_test() {
66 - cd "${BUILD_DIR}" || die
67 - nosetests -v || die "Testing failed with ${EPYTHON}"
68 -}
69 -
70 -python_install_all() {
71 - distutils-r1_python_install_all
72 - if use examples; then
73 - insinto /usr/share/doc/${PF}
74 - doins -r examples
75 - fi
76 -}