Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/rpy: rpy-2.4.2.ebuild ChangeLog
Date: Tue, 24 Jun 2014 01:59:02
Message-Id: 20140624015844.C8CF92004E@flycatcher.gentoo.org
1 idella4 14/06/24 01:58:44
2
3 Modified: ChangeLog
4 Added: rpy-2.4.2.ebuild
5 Log:
6 add py3.4 support
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.80 dev-python/rpy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/ChangeLog?rev=1.80&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/ChangeLog?rev=1.80&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/ChangeLog?r1=1.79&r2=1.80
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/rpy/ChangeLog,v
20 retrieving revision 1.79
21 retrieving revision 1.80
22 diff -u -r1.79 -r1.80
23 --- ChangeLog 3 Jun 2014 05:42:56 -0000 1.79
24 +++ ChangeLog 24 Jun 2014 01:58:44 -0000 1.80
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/rpy
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/ChangeLog,v 1.79 2014/06/03 05:42:56 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/ChangeLog,v 1.80 2014/06/24 01:58:44 idella4 Exp $
30 +
31 +*rpy-2.4.2 (24 Jun 2014)
32 +
33 + 24 Jun 2014; Ian Delaney <idella4@g.o> +rpy-2.4.2.ebuild:
34 + add py3.4 support
35
36 *rpy-2.4.0 (03 Jun 2014)
37
38
39
40
41 1.1 dev-python/rpy/rpy-2.4.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/rpy-2.4.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/rpy-2.4.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rpy-2.4.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/rpy-2.4.2.ebuild,v 1.1 2014/06/24 01:58:44 idella4 Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
55 PYTHON_REQ_USE="sqlite"
56
57 inherit distutils-r1 flag-o-matic
58
59 MYSLOT=2
60 MY_PN=${PN}${MYSLOT}
61 MY_P=${MY_PN}-${PV}
62
63 DESCRIPTION="Python interface to the R Programming Language"
64 HOMEPAGE="http://rpy.sourceforge.net/ https://pypi.python.org/pypi/rpy2"
65 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
66
67 LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
70 IUSE="test"
71
72 RDEPEND="
73 >=dev-lang/R-3
74 dev-python/numpy[${PYTHON_USEDEP}]"
75 DEPEND="${RDEPEND}
76 dev-python/setuptools[${PYTHON_USEDEP}]
77 test? ( >=dev-python/pandas-0.13[${PYTHON_USEDEP}] )"
78
79 S="${WORKDIR}/${MY_P}"
80
81 python_compile() {
82 if ! python_is_python3; then
83 local CFLAGS=${CFLAGS}
84 append-cflags -fno-strict-aliasing
85 fi
86 distutils-r1_python_compile
87 }
88
89 python_test() {
90 cd "${BUILD_DIR}"/lib || die
91 ${PYTHON} -m 'rpy2.tests' -v || die
92 }