diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-03-18 07:31:00 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-03-18 07:31:00 +0000 |
commit | 959f010382f612bcc45b6b10c2b4d091a9932a6a (patch) | |
tree | 2d4cc39c2aeec4202dcaee4f27fe080e99213e12 | |
parent | sys-kernel/aufs-sources: Drop old; Revert memcg patches that prevent OOM wit... (diff) | |
download | gentoo-2-959f010382f612bcc45b6b10c2b4d091a9932a6a.tar.gz gentoo-2-959f010382f612bcc45b6b10c2b4d091a9932a6a.tar.bz2 gentoo-2-959f010382f612bcc45b6b10c2b4d091a9932a6a.zip |
dev-python/rpy: Version BUmp; still not py3 ready as pandas is not
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
-rw-r--r-- | dev-python/rpy/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/rpy/rpy-2.3.4.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-python/rpy/ChangeLog b/dev-python/rpy/ChangeLog index 983d4a6a702b..73f52b8a9462 100644 --- a/dev-python/rpy/ChangeLog +++ b/dev-python/rpy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/rpy # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/ChangeLog,v 1.70 2013/03/07 07:28:12 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/ChangeLog,v 1.71 2013/03/18 07:31:00 jlec Exp $ + +*rpy-2.3.4 (18 Mar 2013) + + 18 Mar 2013; Justin Lecher <jlec@gentoo.org> +rpy-2.3.4.ebuild: + Version BUmp; still not py3 ready as pandas is not 07 Mar 2013; Justin Lecher <jlec@gentoo.org> rpy-2.3.3.ebuild: Add missing test dep diff --git a/dev-python/rpy/rpy-2.3.4.ebuild b/dev-python/rpy/rpy-2.3.4.ebuild new file mode 100644 index 000000000000..753940981e35 --- /dev/null +++ b/dev-python/rpy/rpy-2.3.4.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/rpy-2.3.4.ebuild,v 1.1 2013/03/18 07:31:00 jlec Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +MYSLOT=2 +MY_PN=${PN}${MYSLOT} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Python interface to the R Programming Language" +HOMEPAGE="http://rpy.sourceforge.net/" +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" + +RDEPEND=" + >=dev-lang/R-2.8 + dev-python/numpy[${PYTHON_USEDEP}] + !<=dev-python/rpy-1.0.2-r2" +DEPEND="${RDEPEND} + test? ( dev-python/pandas )" + +S="${WORKDIR}/${MY_P}" + +python_test() { + ${PYTHON} -m 'rpy2.tests' -v || die +} |