diff options
author | Henrik Bengtsson <hb@aroma-project.org> | 2017-01-31 11:47:20 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-01-31 14:47:20 -0500 |
commit | 4f297f4336bc09688aee9d876c566f3aaa34e623 (patch) | |
tree | e174ca3424ba580fccc1d753eb29e299ee8702eb | |
parent | 41c77d7429debad4df86a0bc5382a94173b46700 (diff) | |
download | spack-4f297f4336bc09688aee9d876c566f3aaa34e623.tar.gz spack-4f297f4336bc09688aee9d876c566f3aaa34e623.tar.bz2 spack-4f297f4336bc09688aee9d876c566f3aaa34e623.tar.xz spack-4f297f4336bc09688aee9d876c566f3aaa34e623.zip |
R: Using official cloud URL for CRAN (#2956)
cran.r-project.org runs on a single old-school server in Austria
and could potentially be overloaded if "everyone" used it.
cloud.r-project.org is a cloud-based repository that "automatic redirection to servers worldwide [...]", cf. https://cran.r-project.org/mirrors.html.
I assume, that cloud.* can be scale up as needed. Out of the official CRAN mirror, this should be the safest one to pick if a static CRAN mirror is needed.
-rw-r--r-- | var/spack/repos/builtin/packages/r/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r/package.py b/var/spack/repos/builtin/packages/r/package.py index 2babb250a5..842affc4cc 100644 --- a/var/spack/repos/builtin/packages/r/package.py +++ b/var/spack/repos/builtin/packages/r/package.py @@ -36,7 +36,7 @@ class R(AutotoolsPackage): Please consult the R project homepage for further information.""" homepage = "https://www.r-project.org" - url = "http://cran.cnr.berkeley.edu/src/base/R-3/R-3.1.2.tar.gz" + url = "https://cloud.r-project.org/src/base/R-3/R-3.3.2.tar.gz" extendable = True |