guix-patches
[Top][All Lists]
Advanced

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

[bug#29359] [PATCH 08/31] gnu: Add java-jansi.


From: julien lepiller
Subject: [bug#29359] [PATCH 08/31] gnu: Add java-jansi.
Date: Wed, 22 Nov 2017 10:33:56 +0100
User-agent: Roundcube Webmail/1.3.3

Le 2017-11-19 18:57, Julien Lepiller a écrit :
* gnu/packages/java.scm (java-jansi): New variable.
---
 gnu/packages/java.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 3811dcdc8..5d45a9949 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -7714,3 +7714,30 @@ that is part of the SWT Tools project.")
     (synopsis "Native library for jansi")
(description "Java-jansi-native contains the native library for jansi.")
     (license license:asl2.0)))
+
+(define-public java-jansi
+  (package
+    (name "java-jansi")
+    (version "1.16")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
"https://github.com/fusesource/jansi/archive/";
+                                  "jansi-project-" version ".tar.gz"))
+              (sha256
+               (base32
+ "11kh3144i3fzp21dpy8zg52mjmsr214k7km9p8ly0rqk2px0qq2z"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "jansi.jar"
+       #:source-dir "jansi/src/main/java"
+       #:test-dir "jansi/src/test"))
+    (inputs
+     `(("java-jansi-native" ,java-jansi-native)))
+    (native-inputs
+     `(("java-junit" ,java-junit)
+       ("java-hamcrest-core" ,java-hamcrest-core)))
+    (home-page "https://fusesource.github.io/jansi/";)
+    (synopsis "Portable ANSI escape sequences")
+ (description "Jansi is a Java library that allows you to use ANSI escape +sequences to format your console output which works on every platform.")
+    (license license:asl2.0)))

There's a small issue with this package: when it runs its tests, it will output formatted text with colors but forgets to clean the console afterwards, which leaves the console with a bold red font. Any idea on how to clean that? Shouldn't
the environment block this kind of thing?





reply via email to

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