Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
bicatali 09/08/01 12:44:44
Added: rpy-2.0.6-setup.patch
Log:
Version bump
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.1 dev-python/rpy/files/rpy-2.0.6-setup.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/rpy/files/rpy-2.0.6-setup.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/rpy/files/rpy-2.0.6-setup.patch?rev=1.1&content-type=text/plain
Index: rpy-2.0.6-setup.patch
===================================================================
--- setup.py.orig 2009-08-01 13:33:33.000000000 +0100
+++ setup.py 2009-08-01 13:34:03.000000000 +0100
@@ -134,9 +134,9 @@
runtime_library_dirs = r_libs,
#extra_compile_args=['-O0', '-g'],
extra_link_args = get_rconfig(RHOME, '--ldflags') +\
- get_rconfig(RHOME, 'LAPACK_LIBS',
- allow_empty = True) +\
- get_rconfig(RHOME, 'BLAS_LIBS'),
+ tuple(get_rconfig(RHOME, 'LAPACK_LIBS')[0].split()) +\
+ tuple(get_rconfig(RHOME, 'BLAS_LIBS')[0].split()),
+
)
return rinterface_ext
|
|