From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: [PATCH] gnu: Add ruby-bio-logger. Date: Wed, 16 Sep 2015 08:10:03 +0200 Message-ID: <55f907bb.9/Upvwvparw1Ma9U%pjotr.public12@thebird.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35573) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zc5wv-0003mL-Dg for guix-devel@gnu.org; Wed, 16 Sep 2015 02:12:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zc5wr-0007jc-42 for guix-devel@gnu.org; Wed, 16 Sep 2015 02:12:09 -0400 Received: from mail.thebird.nl ([95.154.246.10]:57474) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zc5wq-0007j7-UY for guix-devel@gnu.org; Wed, 16 Sep 2015 02:12:05 -0400 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: guix-devel@gnu.org * gnu/packages/ruby.scm (ruby-bio-logger): New variable. --- gnu/packages/ruby.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index e61332f..0cdc5e3 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -445,6 +445,27 @@ configuration, and more.") (home-page "http://log4r.rubyforge.org/") (license license:bsd-3))) +(define-public ruby-bio-logger + (package + (name "ruby-bio-logger") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "bio-logger" version)) + (sha256 + (base32 + "02pylfy8nkdqzyzplvnhn1crzmfkj1zmi3qjhrj2f2imlxvycd28")))) + (build-system ruby-build-system) + (propagated-inputs `(("ruby-log4r" ,ruby-log4r))) + (arguments + '(#:tests? #f)) ; no test suite + (synopsis "Log4r wrapper for Ruby with extra features") + (description "Library with extra logging features on top of +ruby-log4r (not specific to bioinformatics)") + (home-page "https://github.com/pjotrp/bioruby-logger-plugin") + (license license:expat))) + (define-public ruby-atoulme-antwrap (package (name "ruby-atoulme-antwrap") -- 2.4.3