From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Thompson, David" Subject: Re: [PATCH 1/2] gnu: Add ruby-hoe-git. Date: Wed, 8 Jun 2016 09:09:24 -0400 Message-ID: References: <1465390550-4974-1-git-send-email-donttrustben@gmail.com> <1465390550-4974-2-git-send-email-donttrustben@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59216) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAdEd-0005In-HT for guix-devel@gnu.org; Wed, 08 Jun 2016 09:09:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAdEb-0000Kj-AR for guix-devel@gnu.org; Wed, 08 Jun 2016 09:09:26 -0400 Received: from mail-vk0-x243.google.com ([2607:f8b0:400c:c05::243]:34504) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAdEb-0000KZ-1w for guix-devel@gnu.org; Wed, 08 Jun 2016 09:09:25 -0400 Received: by mail-vk0-x243.google.com with SMTP id a126so1214937vkb.1 for ; Wed, 08 Jun 2016 06:09:24 -0700 (PDT) In-Reply-To: <1465390550-4974-2-git-send-email-donttrustben@gmail.com> 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" To: Ben Woodcroft Cc: guix-devel On Wed, Jun 8, 2016 at 8:55 AM, Ben Woodcroft wrote: > * gnu/packages/ruby.scm (ruby-hoe-git): New variable. > --- > gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > > diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm > index 527f76b..d2b49ba 100644 > --- a/gnu/packages/ruby.scm > +++ b/gnu/packages/ruby.scm > @@ -3939,6 +3939,28 @@ part of the Prawn PDF generator.") > ;; for details." > (license (list license:gpl2 license:gpl3 license:ruby)))) > > +(define-public ruby-hoe-git > + (package > + (name "ruby-hoe-git") > + (version "1.6.0") > + (source > + (origin > + (method url-fetch) > + (uri (rubygems-uri "hoe-git" version)) > + (sha256 > + (base32 > + "10jmmbjm0lkglwxbn4rpqghgg1ipjxrswm117n50adhmy8yij650")))) > + (build-system ruby-build-system) > + (native-inputs > + `(("ruby-hoe" ,ruby-hoe))) Why is this a native input? Also, I would have expected git to be an input. How does this gem interact with git? > + (synopsis "Hoe plugins for tighter Git integration") > + (description > + "This package provides a set of Hoe plugins for tighter Git integration. > +It provides tasks to automate release tagging and pushing and changelog > +generation.") > + (home-page "http://github.com/jbarnette/hoe-git") > + (license license:expat))) > + > (define-public ruby-sequel > (package > (name "ruby-sequel") > -- > 2.7.4 > > - Dave