diff options
author | drochner <drochner@pkgsrc.org> | 2005-10-21 18:41:14 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2005-10-21 18:41:14 +0000 |
commit | e48c1645beab870867a49c6b94708d07c9a87e6f (patch) | |
tree | c3ad056293af6630c1e53251f4ea0c25b939e508 /math | |
parent | ba246285de7e340fbe54462385f2ee6a9eda1f4e (diff) | |
download | pkgsrc-e48c1645beab870867a49c6b94708d07c9a87e6f.tar.gz |
update to 0.4.6
changes: many bugfixes, some improvements in mapping R-Python objects
Diffstat (limited to 'math')
-rw-r--r-- | math/py-rpy/Makefile | 5 | ||||
-rw-r--r-- | math/py-rpy/PLIST | 13 | ||||
-rw-r--r-- | math/py-rpy/distinfo | 9 | ||||
-rw-r--r-- | math/py-rpy/patches/patch-aa | 21 |
4 files changed, 14 insertions, 34 deletions
diff --git a/math/py-rpy/Makefile b/math/py-rpy/Makefile index 6c06171f9b0..599c7995ce8 100644 --- a/math/py-rpy/Makefile +++ b/math/py-rpy/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2005/04/11 21:46:31 tv Exp $ +# $NetBSD: Makefile,v 1.10 2005/10/21 18:41:14 drochner Exp $ # -DISTNAME= rpy-0.3.1 +DISTNAME= rpy-0.4.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rpy/} diff --git a/math/py-rpy/PLIST b/math/py-rpy/PLIST index 424fb8ce464..66d05757570 100644 --- a/math/py-rpy/PLIST +++ b/math/py-rpy/PLIST @@ -1,11 +1,14 @@ -@comment $NetBSD: PLIST,v 1.3 2003/12/04 13:50:33 adam Exp $ -${PYSITELIB}/io.py -${PYSITELIB}/io.pyc -${PYSITELIB}/io.pyo +@comment $NetBSD: PLIST,v 1.4 2005/10/21 18:41:15 drochner Exp $ +${PYSITELIB}/_rpy2011.so ${PYSITELIB}/rpy.py ${PYSITELIB}/rpy.pyc ${PYSITELIB}/rpy.pyo +${PYSITELIB}/rpy_io.py +${PYSITELIB}/rpy_io.pyc +${PYSITELIB}/rpy_io.pyo +${PYSITELIB}/rpy_tools.py +${PYSITELIB}/rpy_tools.pyc +${PYSITELIB}/rpy_tools.pyo ${PYSITELIB}/rpy_version.py ${PYSITELIB}/rpy_version.pyc ${PYSITELIB}/rpy_version.pyo -${PYSITELIB}/_rpymodule.so diff --git a/math/py-rpy/distinfo b/math/py-rpy/distinfo index 1ce0fc4efa5..da3d76075a8 100644 --- a/math/py-rpy/distinfo +++ b/math/py-rpy/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.4 2005/02/23 12:06:57 agc Exp $ +$NetBSD: distinfo,v 1.5 2005/10/21 18:41:15 drochner Exp $ -SHA1 (rpy-0.3.1.tar.gz) = ec56b00518fed416179afac949914fa2055cd8d7 -RMD160 (rpy-0.3.1.tar.gz) = b9426692d5e3c0bea45b905a5bc75325bf529ce9 -Size (rpy-0.3.1.tar.gz) = 219278 bytes -SHA1 (patch-aa) = ae84b9424ee5422d1ad313837bcf72dd32f7fc7c +SHA1 (rpy-0.4.6.tar.gz) = 01d7548958820e5437eb4edb4c8f8bdd0c4f8f28 +RMD160 (rpy-0.4.6.tar.gz) = efd46a9ecc9450c4c4ee90a153b3bb89a066f316 +Size (rpy-0.4.6.tar.gz) = 77384 bytes diff --git a/math/py-rpy/patches/patch-aa b/math/py-rpy/patches/patch-aa deleted file mode 100644 index 82aa908ecfd..00000000000 --- a/math/py-rpy/patches/patch-aa +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-aa,v 1.2 2004/11/21 05:31:03 markd Exp $ - ---- setup.py.orig 2003-02-15 08:23:33.000000000 +1300 -+++ setup.py -@@ -27,7 +27,7 @@ else: - RHOME = get_R_HOME() - DEFINE.append(('R_HOME', '"%s"' %RHOME)) - r_include = os.path.join(RHOME, 'include') --r_libs = os.path.join(RHOME, 'bin') -+r_libs = os.path.join(RHOME, 'lib') - - # check whether Numeric is present - try: -@@ -58,6 +58,7 @@ setup(name="rpy", - include_dirs=[r_include, "src"], - libraries=["R"], - library_dirs=[r_libs], -+ runtime_library_dirs=[r_libs], - define_macros=DEFINE, - undef_macros=UNDEF, - extra_compile_args=["-shared"])] |