From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rpy/
Date: Sun, 1 Oct 2017 08:57:37 +0000 (UTC) [thread overview]
Message-ID: <1506848253.3d09d9284c76f61b9bd6cb7cbf3cd3b08c75dc2a.patrick@gentoo> (raw)
commit: 3d09d9284c76f61b9bd6cb7cbf3cd3b08c75dc2a
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 1 08:54:30 2017 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Oct 1 08:57:33 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d09d928
dev-python/rpy: Bump
Package-Manager: Portage-2.3.10, Repoman-2.3.3
dev-python/rpy/Manifest | 1 +
dev-python/rpy/rpy-2.9.0.ebuild | 52 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/dev-python/rpy/Manifest b/dev-python/rpy/Manifest
index ee2b4f65345..b14b748a566 100644
--- a/dev-python/rpy/Manifest
+++ b/dev-python/rpy/Manifest
@@ -1,3 +1,4 @@
DIST rpy2-2.6.2.tar.gz 171655 SHA256 2e28886b2a6a138cfc057f9b7cddade253e61c9abb43f0eae20dace58b6dfced SHA512 7a060ccc26a03dc93d75edb85d92f1ab31af96ba140932ff8e699cd5855e6078b1e0ffceed135d32deb6c8f273ebcc8b02be38e9b8fc66778cc2adab5745f542 WHIRLPOOL 26d9a9c13e4efa22a232507cfff0b13d650e0528f635dfa9fe464cde50462d2d94a668d1566b537bafaa5462eb66e96005296c6295308b1e3d1c5639da2879b6
DIST rpy2-2.8.5.tar.gz 184190 SHA256 09c63bc934d666f4ec16e74caf52eb516e035557407a93591e8da694a1718ca6 SHA512 737649bea67f0cb2a73dfedfe6f342b52bd8e73840b0da6eb64c8a61d25665d74394df6070ed67ec7a59632798e12fce05225e5c1ec5de587f1ae40ce5074b99 WHIRLPOOL 2e6c449ca766ff73a20abff12ef6df5791a77d2ca3cf5e90862700370bddf20b9b4ded65c870ef84ab840bb282d66cffc10c078a4417a8e1074dfebc7d87c421
DIST rpy2-2.8.6.tar.gz 191192 SHA256 004d13734a7b9a85cbc1e7a93ec87df741e28db1273ab5b0d9efaac04a9c5f98 SHA512 614fd404c2bcd51a503e05bd2ea51fe39ddf20b16088496e9d9f0017ccbd06707f26341243c33669ae4ddf5b37ed748546cab9d4d23b9c26fd39319d9831dcfe WHIRLPOOL ef160afafcec1db0c337ae53882586130f8e2d33c836633fe8fbeaf83202c525f1eb46b0ea944b2ef67446809c0cd1456f22bcce107e8157ef9de4a1daefcd8c
+DIST rpy2-2.9.0.tar.gz 193062 SHA256 d1e6c109093965f717293b6c3a8d22d9c172c3721b6a8360c84572dcb284112f SHA512 55be876fb7316a08f507f3a332ed29d71b52f733c1986482f141e694d66d0e01a51a9c3f0260f6fe0086d7bfbc1f58b678cda4570665e4f1ffdb120c793ef1b2 WHIRLPOOL 44610716904ec8e1f53b65b5a3ec1d9be3f492104c7b563867e4d1ea526148e8034c84441a8bc60957e41d662b6185ccd3477fa9baa77d7344fa5e0d5bbd3635
diff --git a/dev-python/rpy/rpy-2.9.0.ebuild b/dev-python/rpy/rpy-2.9.0.ebuild
new file mode 100644
index 00000000000..5e0640091cc
--- /dev/null
+++ b/dev-python/rpy/rpy-2.9.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1 flag-o-matic virtualx
+
+MYSLOT=2
+MY_PN=${PN}${MYSLOT}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Python interface to the R Programming Language"
+HOMEPAGE="http://rpy2.bitbucket.io/"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+# ggplot2 is a test dep but not in portage
+RESTRICT="test"
+
+RDEPEND="
+ >=dev-lang/R-3.2
+ dev-python/numpy[${PYTHON_USEDEP}]
+ >=dev-python/pandas-0.13.1[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+ virtual/python-singledispatch[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+ test? ( >=dev-lang/R-3.2[X,png] )
+ dev-python/setuptools[${PYTHON_USEDEP}]"
+PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/${MY_P}"
+
+python_compile() {
+ if ! python_is_python3; then
+ local CFLAGS=${CFLAGS}
+ append-cflags -fno-strict-aliasing
+ fi
+ distutils-r1_python_compile
+}
+
+python_test() {
+ cd "${BUILD_DIR}"/lib || die
+ virtx "${EPYTHON}" -m 'rpy2.tests' || die
+}
next reply other threads:[~2017-10-01 8:57 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-01 8:57 Patrick Lauer [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-02-17 19:19 [gentoo-commits] repo/gentoo:master commit in: dev-python/rpy/ Michał Górny
2023-11-13 14:06 Andrew Ammerlaan
2023-11-13 14:06 Andrew Ammerlaan
2023-03-28 4:26 Michał Górny
2023-03-27 19:31 Sam James
2023-03-27 19:31 Sam James
2023-02-23 12:58 Andrew Ammerlaan
2022-11-19 16:54 Michał Górny
2022-11-19 16:40 Sam James
2022-11-19 16:40 Sam James
2022-10-12 19:45 Arthur Zamarin
2022-09-27 7:20 Arthur Zamarin
2022-09-27 7:10 Agostino Sarubbo
2022-09-25 23:58 Sam James
2022-08-22 19:23 Arthur Zamarin
2022-01-29 17:23 Michał Górny
2022-01-29 15:47 Sam James
2022-01-29 15:47 Sam James
2021-12-28 14:15 Andrew Ammerlaan
2021-04-19 6:56 Michał Górny
2021-03-03 12:54 Michał Górny
2021-03-03 12:37 Agostino Sarubbo
2021-03-02 14:17 Thomas Deutschmann
2020-08-14 23:22 Andreas Sturmlechner
2020-03-29 7:31 Michał Górny
2020-03-16 18:55 Michał Górny
2019-12-04 17:15 Michał Górny
2018-03-17 21:41 Michał Górny
2017-07-11 20:33 Sebastien Fabbro
2017-05-03 7:37 Michał Górny
2017-03-12 12:31 Zac Medico
2017-03-04 15:19 David Seifert
2016-02-03 9:42 Justin Lecher
2016-01-21 8:33 Justin Lecher
2015-12-29 10:02 Justin Lecher
2015-12-13 14:05 Justin Lecher
2015-11-24 12:10 Justin Lecher
2015-11-10 10:54 Justin Lecher
2015-11-03 11:38 Justin Lecher
2015-10-21 14:32 Justin Lecher
2015-09-25 18:38 Justin Lecher
2015-09-25 14:29 Agostino Sarubbo
2015-09-24 14:26 Agostino Sarubbo
2015-09-02 7:21 Justin Lecher
2015-08-20 6:12 Ian Delaney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1506848253.3d09d9284c76f61b9bd6cb7cbf3cd3b08c75dc2a.patrick@gentoo \
--to=patrick@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox