Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
djw8605 committed Feb 3, 2014
2 parents 1e61523 + 883ad15 commit 230d7b9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: GridR
Type: Package
Title: Executes functions on remote hosts, clusters or grids.
Version: 0.9.11
Date: 2014-01-28
Version: 0.9.12
Date: 2014-02-03
Author: Dennis Wegener, Malte Lohmeyer, Stefan Rueping, Derek Weitzel
Maintainer: Dennis Wegener <[email protected]>
Description: GridR is an R-Package that can be used to submit R functions for execution on remote computers, clusters or grids. In addition, users are provided with an interface to share variables and functions with other users.
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
echo "By using the GridR package you agree to the listed terms and conditions below:"
echo "#########################################"
echo " GridR package 0.9.11"
echo " GridR package 0.9.12"
echo " "
echo " "
echo "Copyright (C) 2008 Fraunhofer Institute Intelligent Analysis and Information Systems IAIS,"
Expand Down
3 changes: 3 additions & 0 deletions inst/GridR/R-bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
# download URLs for the different platforms
URL_DICT={
DEB6: "http://osg-xsede.grid.iu.edu/software/boscor/deb6-modified.tar.gz",
DEB7: "http://osg-xsede.grid.iu.edu/software/boscor/deb6-modified.tar.gz",
RH5: "http://osg-xsede.grid.iu.edu/software/boscor/el5-R-modified.tar.gz",
RH6: "http://osg-xsede.grid.iu.edu/software/boscor/el6-R-modified.tar.gz",
UNKNOWN: "UNKNOWN Platform"
Expand Down Expand Up @@ -128,6 +129,8 @@ def findversion():
if mydist[0].lower() == 'debian':
if mydist[1].startswith('6.'):
return DEB6
elif mydist[1].startswith('7.'):
return DEB7
if os.path.isfile('/etc/redhat-release'):
return findversion_redhat()
elif os.path.isfile('/etc/lsb-release'):
Expand Down
4 changes: 2 additions & 2 deletions man/GridR-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ All needed functions and variables that are necessary to execute that function w
\tabular{ll}{
Package: \tab GridR\cr
Type: \tab Package\cr
Version: \tab 0.9.10\cr
Date: \tab 2014-01-28\cr
Version: \tab 0.9.12\cr
Date: \tab 2014-02-03\cr
License: \tab GPL-2\cr
}
With grid.init(...) GridR is initialized.
Expand Down

0 comments on commit 230d7b9

Please sign in to comment.