diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-01-06 13:35:01 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-01-08 00:41:05 -0500 |
commit | 6226120649add3d888646f2f84b5b29a2a762ad1 (patch) | |
tree | 386570a15910fdb21228718251d1b75aa668a78a /gnu | |
parent | f7c803f998286ba48a72ae336162865f75308296 (diff) | |
download | guix-6226120649add3d888646f2f84b5b29a2a762ad1.tar.gz |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 21 |
1 files changed, 5 insertions, 16 deletions
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 @@ variable length integers (varint) in Ruby Protocol Buffers.") (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: |