From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Jordan Subject: [Patch] Updated ruby-byebug@9.0.5 Date: Tue, 31 May 2016 16:56:10 -0400 Message-ID: <87h9dex7yt.fsf@mailerver.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53406) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7qj6-0001Wj-Od for guix-devel@gnu.org; Tue, 31 May 2016 16:57:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7qj3-00014C-6d for guix-devel@gnu.org; Tue, 31 May 2016 16:57:23 -0400 Received: from forward10m.cmail.yandex.net ([5.255.216.203]:45902) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7qj1-00013U-NK for guix-devel@gnu.org; Tue, 31 May 2016 16:57:21 -0400 Received: from smtp3m.mail.yandex.net (smtp3m.mail.yandex.net [77.88.61.130]) by forward10m.cmail.yandex.net (Yandex) with ESMTP id A673D21D92 for ; Tue, 31 May 2016 23:57:11 +0300 (MSK) Received: from smtp3m.mail.yandex.net (localhost [127.0.0.1]) by smtp3m.mail.yandex.net (Yandex) with ESMTP id 85B7A27A0800 for ; Tue, 31 May 2016 23:57:11 +0300 (MSK) 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: guix-devel --=-=-= Content-Type: text/plain Updated patch for ruby-byebug. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0003-gnu-Add-ruby-byebug-9.0.5.patch Content-Description: patch to add ruby-byebug. >From dcd8726169290861bb953a5a444f44a9d0dc953f Mon Sep 17 00:00:00 2001 From: Matthew Jordan Date: Tue, 31 May 2016 07:31:37 -0400 Subject: [PATCH 3/4] gnu: Add ruby-byebug@9.0.5 * gnu/packages/rails.scm: Modified file. --- gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 6eebd9a..996a8ba 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2721,6 +2721,31 @@ with PostgreSQL 8.4 and later.") (home-page "https://bitbucket.org/ged/ruby-pg") (license license:ruby))) +(define-public ruby-byebug-9 + (package + (name "ruby-byebug") + (version "9.0.5") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "byebug" version)) + (sha256 + (base32 + "18sdnscwwm76i2kbcib2ckwfwpq8b1dbfr97gdcx3j1x547yqv9x")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ;; no Rakefile found. + (synopsis "Byebug is a Ruby 2 debugger") + (description + "Byebug is a Ruby 2 debugger. It's implemented using the Ruby 2 +TracePoint C API for execution control and the Debug Inspector C API for call +stack navigation. The core component provides support that front-ends can +build on. It provides breakpoint handling and bindings for stack frames among +other things and it comes with an easy to use command line interface.") + (home-page + "http://github.com/deivid-rodriguez/byebug") + (license license:bsd-3))) + (define-public ruby-byebug (package (name "ruby-byebug") -- 2.8.3 --=-=-= Content-Type: text/plain -- Matthew Jordan Sent with my mu4e --=-=-=--