diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-01-19 09:56:02 -0600 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2016-01-19 09:56:02 -0600 |
commit | fe640d764acaf4c24fc04803797435287d211a8c (patch) | |
tree | f08f036d8c77d163b2a86a1787d3805d314ac2e8 /var/spack/repos/builtin/packages/py-rpy2/package.py | |
parent | f9fbb57d3182bf0e9c39e4b7c0a958c6ba87a2fa (diff) | |
parent | 01c5b53ba16a95ab77918d30dfa3a63f2ef2707f (diff) | |
download | spack-fe640d764acaf4c24fc04803797435287d211a8c.tar.gz spack-fe640d764acaf4c24fc04803797435287d211a8c.tar.bz2 spack-fe640d764acaf4c24fc04803797435287d211a8c.tar.xz spack-fe640d764acaf4c24fc04803797435287d211a8c.zip |
Merge branch 'develop' into features/nag
* develop: (77 commits)
Make libxcb compile with gcc 4.9.
disable parallel install for glib (found races)
disable cairo-trace, which is incompatible with older libiberty.h.
Fix LaunchMon on newer gcc versions.
Simplify output redirection in spack.util.executable
Allow completely empty config files.
Update cmake package to use http in all URLs.
Fix create, diy, edit, and repo commands to use multiple repos.
Add namespace option to find command.
Temporary fix: Clang is the default compiler on Mac OS X.
Netcdf requires cmake >=2.8.12
Mbedtls depends on cmake
Update libtool to 2.4.6
Update Julia to 0.4.3
Make binutils build on OS X
Add verbs and psm variants
py-matplotlib: depend on freetype
py-numpy: make blas/lapack optional dependencies
qhull: apply patch to work with libc++'s standard library
New package GNU tar
...
Diffstat (limited to 'var/spack/repos/builtin/packages/py-rpy2/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/py-rpy2/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-rpy2/package.py b/var/spack/repos/builtin/packages/py-rpy2/package.py new file mode 100644 index 0000000000..a0b03d03e3 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-rpy2/package.py @@ -0,0 +1,17 @@ +from spack import * + +class PyRpy2(Package): + """rpy2 is a redesign and rewrite of rpy. It is providing a low-level interface to R from Python, a proposed high-level interface, including wrappers to graphical libraries, as well as R-like structures and functions.""" + homepage = "https://pypi.python.org/pypi/rpy2" + url = "https://pypi.python.org/packages/source/r/rpy2/rpy2-2.5.4.tar.gz" + + version('2.5.4', '115a20ac30883f096da2bdfcab55196d') + version('2.5.6', 'a36e758b633ce6aec6a5f450bfee980f') + + extends('python') + depends_on('py-setuptools') + + depends_on('R') + + def install(self, spec, prefix): + python('setup.py', 'install', '--prefix=%s' % prefix) |