guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add ruby-ansi.


From: Ricardo Wurmus
Subject: 01/01: gnu: Add ruby-ansi.
Date: Thu, 07 Jan 2016 14:36:39 +0000

rekado pushed a commit to branch master
in repository guix.

commit 7d3a1a2dd21b011946094e3c20da4b716c9dd6b6
Author: Ben Woodcroft <address@hidden>
Date:   Tue Dec 29 14:11:21 2015 +1000

    gnu: Add ruby-ansi.
    
    * gnu/packages/ruby.scm (ruby-ansi): New variable.
---
 gnu/packages/ruby.scm |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 0dcdb33..4ac3385 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2894,3 +2894,39 @@ programs to concentrate on the implementation of network 
protocols.  It can be
 used to create both network servers and clients.")
     (home-page "http://rubyeventmachine.com";)
     (license (list license:ruby license:gpl3)))) ; GPLv3 only AFAICT
+
+(define-public ruby-ansi
+  (package
+    (name "ruby-ansi")
+    (version "1.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       ;; Fetch from GitHub as the gem does not contain testing code.
+       (uri (string-append "https://github.com/rubyworks/ansi/archive/";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1zdip30hivyipi8hndhb457bhiz033awd00bgrsk5axjrwp6zhly"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; Disable testing to break the cycle ansi, ae, ansi, as well as the
+         ;; cycle ansi, qed, ansi.  Instead simply test that the library can
+         ;; be require'd.
+         (replace 'check
+           (lambda _
+             (zero? (system* "ruby" "-Ilib" "-r" "ansi")))))))
+    (synopsis "ANSI escape code related libraries")
+    (description
+     "This package is a collection of ANSI escape code related libraries
+enabling ANSI colorization and stylization of console output.  Included in the
+library are the @code{Code} module, which defines ANSI codes as constants and
+methods, a @code{Mixin} module for including color methods, a @code{Logger}, a
address@hidden, and a @code{String} subclass.  The library also includes a
address@hidden module which provides information about the current output
+device.")
+    (home-page "http://rubyworks.github.io/ansi";)
+    (license license:bsd-2)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]