guix-commits
[Top][All Lists]
Advanced

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

264/416: gnu: ruby-puma: Do not install mkmf.log file.


From: guix-commits
Subject: 264/416: gnu: ruby-puma: Do not install mkmf.log file.
Date: Fri, 14 Apr 2023 15:26:02 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 5c3727ff078aa345abfdd7c755a4255c2c8454bc
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Mar 30 17:18:39 2023 -0400

    gnu: ruby-puma: Do not install mkmf.log file.
    
    * gnu/packages/ruby.scm (ruby-puma) [arguments]: Add delete-mkmf.log phase.
---
 gnu/packages/ruby.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 7ea88b4067..1bf2db17cc 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -11572,6 +11572,12 @@ part of the Prawn PDF generator.")
             (lambda* (#:key tests? #:allow-other-keys)
               (when tests?
                 (invoke "bundle" "exec" "rake" "test"))))
+          (add-after 'install 'delete-mkmf.log
+            (lambda _
+              ;; Rubygems installs build log files that embed volatile file
+              ;; names (see:
+              ;; https://github.com/rubygems/rubygems/issues/6259).
+              (for-each delete-file (find-files #$output "^mkmf\\.log$"))))
           (add-before 'check 'disable-problematic-tests
             (lambda _
               (let-syntax ((skip-tests



reply via email to

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