guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: r-htmltools: Ensure temporary files can be deleted.


From: Ricardo Wurmus
Subject: 01/02: gnu: r-htmltools: Ensure temporary files can be deleted.
Date: Wed, 21 Sep 2016 19:38:49 +0000 (UTC)

rekado pushed a commit to branch master
in repository guix.

commit 3f1c722ec74dcf81833ffc7b2d4151241b31540e
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Sep 8 14:51:04 2016 +0200

    gnu: r-htmltools: Ensure temporary files can be deleted.
    
    * gnu/packages/web.scm (r-htmltools)[arguments]: Add phase
    "copy-files-without-mode".
---
 gnu/packages/web.scm |   14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 342262b..2c63e75 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -3230,6 +3230,20 @@ directory.")
                (base32
                 "0j9bf80grd6gwh7116m575pycv87c0wcwkxsz3gzzfs4aw3pxyr9"))))
     (build-system r-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; See https://github.com/rstudio/htmltools/pull/68
+         ;; The resource files are in the store and have mode 444.  After
+         ;; copying the files R fails to remove them again because it doesn't
+         ;; have write access to them.
+         (add-after 'unpack 'copy-files-without-mode
+           (lambda _
+             (substitute* "R/html_dependency.R"
+               (("file.copy\\(from, to, " prefix)
+                (string-append prefix
+                               "copy.mode = FALSE, ")))
+             #t)))))
     (propagated-inputs
      `(("r-digest" ,r-digest)
        ("r-rcpp" ,r-rcpp)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]