guix-patches
[Top][All Lists]
Advanced

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

[bug#34217] [PATCH 07/11] gnu: Add ruby-backports.


From: swedebugia
Subject: [bug#34217] [PATCH 07/11] gnu: Add ruby-backports.
Date: Fri, 01 Feb 2019 16:41:38 +0100

swedebugia <address@hidden> skrev: (31 januari 2019 09:53:17 CET)
On 2019-01-27 12:49, Christopher Baines wrote:
* gnu/packages/ruby.scm (ruby-backports): New variable.
gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5a9a9a7c6d..115e132b95 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -1350,6 +1350,31 @@ User Agents.")
(home-page "https://github.com/gshutler/useragent")
(license license:expat)))

+(define-public ruby-backports
+ (package
+ (name "ruby-backports")
+ (version "3.11.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (rubygems-uri "backports" version))
+ (sha256
+ (base32
+ "1hshjxww2h7s0dk57njrygq4zpp0nlqrjfya7zwm27iq3rhc3y8g"))))
+ (build-system ruby-build-system)
+ (arguments
+ '(;; TODO: This should be default, but there is one test failure
+ #:test-target "all_spec"))

The failure is reported upstream, see
https://github.com/marcandre/backports/issues/127

From upstream:
Sorry the failure is quite obscure.

Backports wants to make sure it is defining the right methods only when necessary. The test is failing because the method alias_method_chainappears to have been added to all modules (Array, Binding, ...). Maybe the old backports/rails/module/alias_method_chain is somehow loaded, but I don't see how or why...

--
Sent from my k-9 mail for Android.

reply via email to

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