From 6226120649add3d888646f2f84b5b29a2a762ad1 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 6 Jan 2023 13:35:01 -0500 Subject: gnu: ruby-ruby-prof: Update to 1.4.5. * gnu/packages/ruby.scm (ruby-ruby-prof): Update to 1.4.5. [arguments]: Reword comment as FIXME. Remove trailing #t. Delete obsolete substitution in patch-rakefile phase. Re-format native-inputs on a single line. --- gnu/packages/ruby.scm | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) (limited to 'gnu/packages/ruby.scm') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index ac32552059..df521013a0 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7686,43 +7686,32 @@ (define-public ruby-varint (define-public ruby-ruby-prof (package (name "ruby-ruby-prof") - (version "1.4.3") + (version "1.4.5") (source (origin (method url-fetch) (uri (rubygems-uri "ruby-prof" version)) (sha256 (base32 - "1r3xalp91l07m0cwllcxjzg6nkviiqnxkcbgg5qnzsdji6rgy65m")))) + "09n13bzm1p956z318xx1v7ikqdp2i971v7p3kwf3170axz368ccy")))) (build-system ruby-build-system) (arguments - ;; It is unclear why the tests fail on i686-linux + ;; FIXME: Investigate why the tests fail on i686-linux. `(#:tests? ,(not (or (%current-target-system) (target-x86-32?))) #:phases (modify-phases %standard-phases - (add-after 'unpack 'patch-rakefile - ;; This fixes the following error: "NameError: uninitialized - ;; constant Bundler::GemHelper" (see: - ;; https://github.com/ruby-prof/ruby-prof/issues/274). - (lambda _ - (substitute* "Rakefile" - ((".*require \"bundler/setup\".*" all) - (string-append all " require 'bundler/gem_tasks'\n"))) - #t)) ;; The LineNumbersTest test fails non-deterministically (see: ;; https://github.com/ruby-prof/ruby-prof/issues/276). (add-after 'extract-gemspec 'delete-flaky-test (lambda _ (delete-file "test/line_number_test.rb") (substitute* "ruby-prof.gemspec" - (("\"test/line_number_test\\.rb\"\\.freeze, ") "")) - #t)) + (("\"test/line_number_test\\.rb\"\\.freeze, ") "")))) (add-before 'check 'compile (lambda _ (invoke "rake" "compile")))))) - (native-inputs - (list bundler ruby-minitest ruby-rake-compiler ruby-rdoc)) + (native-inputs (list bundler ruby-minitest ruby-rake-compiler ruby-rdoc)) (synopsis "Fast code profiler for Ruby") (description "RubyProf is a fast code profiler for Ruby. Its features include: -- cgit v1.2.3