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.6.1.ebuild ChangeLog rpy-2.5.6.ebuild
Date: Thu, 30 Jul 2015 09:35:30
Message-Id: 20150730093517.9AA6A114@oystercatcher.gentoo.org
1 idella4 15/07/30 09:35:17
2
3 Modified: ChangeLog
4 Added: rpy-2.6.1.ebuild
5 Removed: rpy-2.5.6.ebuild
6 Log:
7 bump one remove one
8
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.94 dev-python/rpy/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/ChangeLog?rev=1.94&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/ChangeLog?rev=1.94&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/ChangeLog?r1=1.93&r2=1.94
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/rpy/ChangeLog,v
21 retrieving revision 1.93
22 retrieving revision 1.94
23 diff -u -r1.93 -r1.94
24 --- ChangeLog 18 Jun 2015 08:02:38 -0000 1.93
25 +++ ChangeLog 30 Jul 2015 09:35:17 -0000 1.94
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/rpy
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/ChangeLog,v 1.93 2015/06/18 08:02:38 patrick Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/ChangeLog,v 1.94 2015/07/30 09:35:17 idella4 Exp $
31 +
32 +*rpy-2.6.1 (30 Jul 2015)
33 +
34 + 30 Jul 2015; Ian Delaney <idella4@g.o> +rpy-2.6.1.ebuild,
35 + -rpy-2.5.6.ebuild:
36 + bump one remove one
37
38 *rpy-2.6.0 (18 Jun 2015)
39
40
41
42
43 1.1 dev-python/rpy/rpy-2.6.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/rpy-2.6.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rpy/rpy-2.6.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: rpy-2.6.1.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/rpy-2.6.1.ebuild,v 1.1 2015/07/30 09:35:17 idella4 Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
57 PYTHON_REQ_USE="sqlite"
58
59 inherit distutils-r1 flag-o-matic
60
61 MYSLOT=2
62 MY_PN=${PN}${MYSLOT}
63 MY_P=${MY_PN}-${PV}
64
65 DESCRIPTION="Python interface to the R Programming Language"
66 HOMEPAGE="http://rpy.sourceforge.net/ https://pypi.python.org/pypi/rpy2"
67 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
68
69 LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
72 IUSE="test"
73
74 RDEPEND="
75 >=dev-lang/R-3
76 dev-python/numpy[${PYTHON_USEDEP}]
77 >=dev-python/pandas-0.13.1[${PYTHON_USEDEP}]
78 dev-python/ipython[${PYTHON_USEDEP}]
79 virtual/python-singledispatch[${PYTHON_USEDEP}]
80 dev-python/six[${PYTHON_USEDEP}]"
81 DEPEND="${RDEPEND}
82 dev-python/setuptools[${PYTHON_USEDEP}]
83 test? ( $(python_gen_cond_dep 'dev-python/singledispatch[${PYTHON_USEDEP}]' python2_7 python3_3) )"
84
85 # ggplot2 is an optional test dep but not in portage
86 S="${WORKDIR}/${MY_P}"
87
88 # Tarball absent of doc files in doc folder
89 # https://bitbucket.org/rpy2/rpy2/issues/229
90
91 python_compile() {
92 if ! python_is_python3; then
93 local CFLAGS=${CFLAGS}
94 append-cflags -fno-strict-aliasing
95 fi
96 distutils-r1_python_compile
97 }
98
99 python_test() {
100 cd "${BUILD_DIR}"/lib || die
101 ${PYTHON} -m 'rpy2.tests' || die
102 }