diff options
author | adam <adam@pkgsrc.org> | 2017-11-28 09:07:23 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-11-28 09:07:23 +0000 |
commit | 19cd02bd9dfbda226cbcc00e8abf5d452ed4c2d9 (patch) | |
tree | 805bf382f8f33da6a02758bfae3e091a647464ff /math/py-rpy/Makefile | |
parent | 52a94db51f7c6dbcc162e9c519afa49d52eecb63 (diff) | |
download | pkgsrc-19cd02bd9dfbda226cbcc00e8abf5d452ed4c2d9.tar.gz |
py-rpy: updated to 2.9.1
Release 2.9.1
Changes
-------
- Fixing issue 432 (see Section Bugs fixed below) involved removed the method
`__reduce__` previously provided for all rpy2 objects representing R objects.
Bugs fixed
----------
- An error when installing with an unsupported R version was fixed.
- The docstring for `rinterface.endr()` was improperly stating that the function was not taking
any argument.
- Target version of dplyr and tidyr are now 0.7.4 and 0.7.2 respectively.
- Fixed memory leak when pickling objects. Fixing the leak caused a
slight change in the API (see Section Changes above).
- Conversion to :mod:`pandas` now handling R ordered factor.
- :mod:`jinja2` was not listed as a dependency
Diffstat (limited to 'math/py-rpy/Makefile')
-rw-r--r-- | math/py-rpy/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/math/py-rpy/Makefile b/math/py-rpy/Makefile index 95fce0aabc7..7ac271b9ff7 100644 --- a/math/py-rpy/Makefile +++ b/math/py-rpy/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2017/10/18 16:17:12 adam Exp $ +# $NetBSD: Makefile,v 1.43 2017/11/28 09:07:23 adam Exp $ -DISTNAME= rpy2-2.9.0 +DISTNAME= rpy2-2.9.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/rpy2/rpy/} CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=r/rpy2/} @@ -10,6 +10,7 @@ HOMEPAGE= http://rpy.sourceforge.net/ COMMENT= R interface for Python LICENSE= mpl-1.1 OR gnu-gpl-v2 OR gnu-lgpl-v2.1 +DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2 DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3 @@ -26,7 +27,7 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "../../devel/pcre/buildlink3.mk" .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" -.include "../../math/py-numpy/buildlink3.mk" .include "../../math/R/buildlink3.mk" +.include "../../math/py-numpy/buildlink3.mk" .include "../../mk/readline.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |