Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rpy2 (REVIEW) #1149

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,30 @@
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
# Author: Pablo Escobar Lopez
# Swiss Institute of Bioinformatics
# Biozentrum - University of Basel

easyblock = "PythonPackage"

name = 'rpy2'
version = '2.4.4'

homepage = 'http://rpy.sourceforge.net/'
description = """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. """

toolchain = {'name': 'goolf', 'version': '1.4.10'}

source_urls = ['https://pypi.python.org/packages/source/r/rpy2/']
sources = [SOURCE_TAR_GZ]

python = 'Python'
pyver = '2.7.5'
versionsuffix = '-%s-%s' % (python, pyver)

dependencies = [
(python, pyver),
('R', '3.1.0')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i recommend updates to most recent Python/R, but otherwise this looks good.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jenkins says no on current state:

R/3.1.0-goolf-1.4.10

We do have 3.0.2 with that toolchain. And we have 3.1.2 easyconfigs that come close (goolf*)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

one more push for this please

lgtm , put this in REVIEW

]

moduleclass = 'lang'