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/rpy/
Date: Sun, 29 Mar 2020 07:31:44
Message-Id: 1585467069.3a109c1d06fa59fa51a2200c4e1ccaf17d140b45.mgorny@gentoo
1 commit: 3a109c1d06fa59fa51a2200c4e1ccaf17d140b45
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 07:18:35 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 07:31:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a109c1d
7
8 dev-python/rpy: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/rpy/Manifest | 1 -
13 dev-python/rpy/rpy-2.6.2.ebuild | 52 -----------------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/dev-python/rpy/Manifest b/dev-python/rpy/Manifest
17 index c69479af449..33a30f5de82 100644
18 --- a/dev-python/rpy/Manifest
19 +++ b/dev-python/rpy/Manifest
20 @@ -1,2 +1 @@
21 -DIST rpy2-2.6.2.tar.gz 171655 BLAKE2B f590e63dbbb6f5aa9f18d7475136005fa993d32af41e12a8e33fda0232a73d444f83341aa2dac3ec8300cf68de83e377d5f6caabb27b5d439af795126670e286 SHA512 7a060ccc26a03dc93d75edb85d92f1ab31af96ba140932ff8e699cd5855e6078b1e0ffceed135d32deb6c8f273ebcc8b02be38e9b8fc66778cc2adab5745f542
22 DIST rpy2-2.9.0.tar.gz 193062 BLAKE2B 92492821856e516f8f620397cba2e0ffb17718156c7c3a0bc8df8e744f0adf1ea6006e5c762ba99aa142fe06d327a240bf5d616175e81a80d28a21265c9771aa SHA512 55be876fb7316a08f507f3a332ed29d71b52f733c1986482f141e694d66d0e01a51a9c3f0260f6fe0086d7bfbc1f58b678cda4570665e4f1ffdb120c793ef1b2
23
24 diff --git a/dev-python/rpy/rpy-2.6.2.ebuild b/dev-python/rpy/rpy-2.6.2.ebuild
25 deleted file mode 100644
26 index dd858ff0296..00000000000
27 --- a/dev-python/rpy/rpy-2.6.2.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python3_{6,7} )
36 -PYTHON_REQ_USE="sqlite"
37 -
38 -inherit distutils-r1 flag-o-matic
39 -
40 -MYSLOT=2
41 -MY_PN=${PN}${MYSLOT}
42 -MY_P=${MY_PN}-${PV}
43 -
44 -DESCRIPTION="Python interface to the R Programming Language"
45 -HOMEPAGE="https://rpy.sourceforge.net/
46 - https://pypi.org/project/rpy2/"
47 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
48 -
49 -LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1"
50 -SLOT="0"
51 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
52 -IUSE="test"
53 -RESTRICT="!test? ( test )"
54 -
55 -RDEPEND="
56 - >=dev-lang/R-3.1
57 - dev-python/numpy[${PYTHON_USEDEP}]
58 - >=dev-python/pandas-0.13.1[${PYTHON_USEDEP}]
59 - dev-python/six[${PYTHON_USEDEP}]"
60 -DEPEND="${RDEPEND}
61 - dev-python/setuptools[${PYTHON_USEDEP}]"
62 -PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
63 -
64 -# ggplot2 is an optional test dep but not in portage
65 -S="${WORKDIR}/${MY_P}"
66 -
67 -# Tarball absent of doc files in doc folder
68 -# https://bitbucket.org/rpy2/rpy2/issues/229
69 -
70 -python_compile() {
71 - if ! python_is_python3; then
72 - local CFLAGS=${CFLAGS}
73 - append-cflags -fno-strict-aliasing
74 - fi
75 - distutils-r1_python_compile
76 -}
77 -
78 -python_test() {
79 - cd "${BUILD_DIR}"/lib || die
80 - ${PYTHON} -m 'rpy2.tests' || die
81 -}