From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: Re: [PATCH] gnu: Add ruby 1.8.7 package Date: Tue, 16 Jun 2015 17:46:19 +0200 Message-ID: <20150616154619.GA26621@thebird.nl> References: <20141027053009.GA22678@thebird.nl> <20150614083640.GA13180@thebird.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39621) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4t4j-0005eB-7F for guix-devel@gnu.org; Tue, 16 Jun 2015 11:46:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z4t4f-0007GS-6v for guix-devel@gnu.org; Tue, 16 Jun 2015 11:46:57 -0400 Received: from mail.thebird.nl ([95.154.246.10]:34318) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4t4e-0007GA-TM for guix-devel@gnu.org; Tue, 16 Jun 2015 11:46:53 -0400 Content-Disposition: inline In-Reply-To: <20150614083640.GA13180@thebird.nl> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Pjotr Prins Cc: guix-devel@gnu.org Anything wrong with this patch? On Sun, Jun 14, 2015 at 10:36:40AM +0200, Pjotr Prins wrote: > From be945cf4d65ab77eb8bd7a462aa0b7d24877ba74 Mon Sep 17 00:00:00 2001 > From: pjotrp > Date: Sat, 13 Jun 2015 13:22:10 +0200 > Subject: [PATCH] gnu: Add ruby 2.1.6 > > * gnu/packages/ruby.scm (ruby-2.1): New variable. > --- > gnu/packages/ruby.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > > diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm > index 9943de7..f0c645e 100644 > --- a/gnu/packages/ruby.scm > +++ b/gnu/packages/ruby.scm > @@ -87,6 +87,34 @@ a focus on simplicity and productivity.") > (home-page "https://ruby-lang.org") > (license license:ruby))) > > +(define-public ruby-2.1 > + (package (inherit ruby) > + (version "2.1.6") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "http://cache.ruby-lang.org/pub/ruby/" > + (version-major+minor version) > + "/ruby-" version ".tar.bz2")) > + (sha256 > + (base32 > + "1sbcmbhadcxk0509svwxbm2vvgmpf3xjxr1397bgp9x46nz36lkv")))) > + (native-search-paths '()) > + (arguments > + `(#:test-target "test" > + #:parallel-tests? #f > + #:phases > + (alist-cons-before > + 'configure 'replace-bin-sh > + (lambda _ > + (substitute* '("Makefile.in" > + "ext/pty/pty.c" > + "io.c" > + "lib/mkmf.rb" > + "process.c") > + (("/bin/sh") (which "sh")))) > + %standard-phases))))) > + > (define-public ruby-1.8 > (package (inherit ruby) > (version "1.8.7-p374") > -- > 1.7.10.4 > --