about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorMichel Kuhlmann <michel@kuhlmanns.info>2015-12-11 10:39:13 +0100
committerMichel Kuhlmann <michel@kuhlmanns.info>2015-12-11 11:36:30 +0100
commitcebbb18e9e40eb58e20b4c6e89aabbc2a0c4ee3f (patch)
tree63fd4c920c393cb81e8e364047a55f9ce6c7f6d2 /pkgs/applications/science
parentfbf606aeb9474d1cf99bc8ed7fcbe4b8549e298e (diff)
downloadnixlib-cebbb18e9e40eb58e20b4c6e89aabbc2a0c4ee3f.tar
nixlib-cebbb18e9e40eb58e20b4c6e89aabbc2a0c4ee3f.tar.gz
nixlib-cebbb18e9e40eb58e20b4c6e89aabbc2a0c4ee3f.tar.bz2
nixlib-cebbb18e9e40eb58e20b4c6e89aabbc2a0c4ee3f.tar.lz
nixlib-cebbb18e9e40eb58e20b4c6e89aabbc2a0c4ee3f.tar.xz
nixlib-cebbb18e9e40eb58e20b4c6e89aabbc2a0c4ee3f.tar.zst
nixlib-cebbb18e9e40eb58e20b4c6e89aabbc2a0c4ee3f.zip
R: 3.2.2 -> 3.2.3
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/R/default.nix7
-rw-r--r--pkgs/applications/science/math/R/fix-tests-without-recommended-packages.patch24
2 files changed, 3 insertions, 28 deletions
diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix
index 7c8e76d676b7..183a1f503753 100644
--- a/pkgs/applications/science/math/R/default.nix
+++ b/pkgs/applications/science/math/R/default.nix
@@ -6,11 +6,11 @@
 }:
 
 stdenv.mkDerivation rec {
-  name = "R-3.2.2";
+  name = "R-3.2.3";
 
   src = fetchurl {
     url = "http://cran.r-project.org/src/base/R-3/${name}.tar.gz";
-    sha256 = "07a6s865bjnh7w0fqsrkv1pva76w99v86w0w787qpdil87km54cw";
+    sha256 = "b93b7d878138279234160f007cb9b7f81b8a72c012a15566e9ec5395cfd9b6c1";
   };
 
   buildInputs = [ bzip2 gfortran libX11 libXmu libXt
@@ -19,8 +19,7 @@ stdenv.mkDerivation rec {
     which jdk openblas curl
   ];
 
-  patches = [ ./no-usr-local-search-paths.patch
-              ./fix-tests-without-recommended-packages.patch ];
+  patches = [ ./no-usr-local-search-paths.patch ];
 
   preConfigure = ''
     configureFlagsArray=(
diff --git a/pkgs/applications/science/math/R/fix-tests-without-recommended-packages.patch b/pkgs/applications/science/math/R/fix-tests-without-recommended-packages.patch
deleted file mode 100644
index c736c7098a30..000000000000
--- a/pkgs/applications/science/math/R/fix-tests-without-recommended-packages.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Naur R-3.2.2-upstream/tests/reg-packages.R R-3.2.2/tests/reg-packages.R
---- R-3.2.2-upstream/tests/reg-packages.R	2015-08-05 17:45:05.000000000 -0430
-+++ R-3.2.2/tests/reg-packages.R	2015-10-01 02:11:05.484992903 -0430
-@@ -82,7 +82,8 @@
- ## pkgB tests an empty R directory
- dir.create(file.path(pkgPath, "pkgB", "R"), recursive = TRUE,
- 	   showWarnings = FALSE)
--p.lis <- if("Matrix" %in% row.names(installed.packages(.Library)))
-+matrixIsInstalled <- "Matrix" %in% row.names(installed.packages(.Library))
-+p.lis <- if(matrixIsInstalled)
- 	     c("pkgA", "pkgB", "exNSS4") else "exNSS4"
- for(p. in p.lis) {
-     cat("building package", p., "...\n")
-@@ -111,8 +112,8 @@
-   tools::assertError(is.null(pkgA:::nilData))
- }
- 
--if(dir.exists(file.path("myLib", "exNSS4"))) {
--    for(ns in c("pkgB", "pkgA", "Matrix", "exNSS4")) unloadNamespace(ns)
-+if(matrixIsInstalled && dir.exists(file.path("myLib", "exNSS4"))) {
-+    for(ns in c(rev(p.lis), "Matrix")) unloadNamespace(ns)
-     ## Both exNSS4 and Matrix define "atomicVector" *the same*,
-     ## but  'exNSS4'  has it extended - and hence *both* are registered in cache -> "conflicts"
-     requireNamespace("exNSS4", lib= "myLib")