gnu: ruby-puma: Do not install mkmf.log file.
* gnu/packages/ruby.scm (ruby-puma) [arguments]: Add delete-mkmf.log phase.
This commit is contained in:
parent
e457f01a31
commit
4817758655
1 changed files with 6 additions and 0 deletions
|
@ -11595,6 +11595,12 @@ (define-public ruby-puma
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue