From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:51992) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gp86l-000511-20 for guix-patches@gnu.org; Thu, 31 Jan 2019 03:54:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gp86k-0001EL-4t for guix-patches@gnu.org; Thu, 31 Jan 2019 03:54:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52873) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gp86k-0001Dy-0h for guix-patches@gnu.org; Thu, 31 Jan 2019 03:54:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gp86j-0002oy-Qt for guix-patches@gnu.org; Thu, 31 Jan 2019 03:54:01 -0500 Subject: [bug#34217] [PATCH 07/11] gnu: Add ruby-backports. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:51833) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gp868-0004Xp-4I for guix-patches@gnu.org; Thu, 31 Jan 2019 03:53:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gp867-0000tp-44 for guix-patches@gnu.org; Thu, 31 Jan 2019 03:53:24 -0500 Received: from mx1.riseup.net ([198.252.153.129]:52428) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gp866-0000sd-QM for guix-patches@gnu.org; Thu, 31 Jan 2019 03:53:23 -0500 Received: from piha.riseup.net (piha-pn.riseup.net [10.0.1.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 4CBDF1A0A2E for ; Thu, 31 Jan 2019 00:53:21 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by piha.riseup.net with ESMTPSA id 493FD1C0606 for ; Thu, 31 Jan 2019 00:53:19 -0800 (PST) References: <87zhrmgy0x.fsf@cbaines.net> <20190127114956.26570-1-mail@cbaines.net> <20190127114956.26570-7-mail@cbaines.net> From: swedebugia Message-ID: <87d7347f-bea8-092d-7c54-d9fa6973be60@riseup.net> Date: Thu, 31 Jan 2019 09:53:17 +0100 MIME-Version: 1.0 In-Reply-To: <20190127114956.26570-7-mail@cbaines.net> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34217@debbugs.gnu.org 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 -- Cheers Swedebugia