emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#37603: closed ([PATCH] gnu: Add aha.)


From: GNU bug Tracking System
Subject: bug#37603: closed ([PATCH] gnu: Add aha.)
Date: Sat, 22 Feb 2020 21:23:02 +0000

Your message dated Sat, 22 Feb 2020 22:23:22 +0100
with message-id <20200222212322.pemsokolafduomc4@gravity>
and subject line Re: [PATCH v2] gnu: Add aha.
has caused the debbugs.gnu.org bug report #37618,
regarding [PATCH] gnu: Add aha.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
37618: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37618
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add aha. Date: Thu, 3 Oct 2019 16:15:29 +0200
From: Wiktor Żelazny <address@hidden>

* gnu/packages/textutils.scm (aha): new variable.
---
Hi, This is the first time that I’m submitting something that uses the
git-fetch method. I tried to follow the manual. Unfortunately, it does
not explain the role of this "0.9" string. I noticed that other
contributors use various values. I left it at "0.9".
 gnu/packages/textutils.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 79cf172179..1bf5a4fb1b 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2018 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2018 Meiyo Peng <address@hidden>
 ;;; Copyright © 2019 Yoshinori Arai <address@hidden>
+;;; Copyright © 2019 Wiktor Żelazny <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1011,3 +1012,32 @@ instance one can add new syntax elements to markdown, 
etc.
 
 This package provides Python bindings.")
     (license license:bsd-3)))
+
+(define-public aha
+  (let ((commit "2592da4330b4df6d482a631f4a35543b96f4744d")
+        (revision "1"))          ;Guix package revision
+    (package
+      (name "aha")
+      (version (git-version "0.9" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+                (url "git://github.com/theZiz/aha.git")
+                (commit commit)))
+         (sha256
+          (base32
+           "0fq81ibxqg27b3860wmqd4zym2mymkr7sgvfhsyl0kb7ck367w4q"))
+         (file-name (git-file-name name version))))
+      (build-system gnu-build-system)
+      (arguments
+       '(#:phases (modify-phases %standard-phases (delete 'configure))
+         #:make-flags (list "CC=gcc"
+                            (string-append "PREFIX="
+                                           (assoc-ref %outputs "out")))
+         #:tests? #f)) ; no check target
+      (home-page "https://github.com/theZiz/aha";)
+      (synopsis "Ansi HTML Adapter")
+      (description "@code{aha} converts ANSI escape sequences of a Unix 
terminal
+to HTML code.")
+      (license (list license:lgpl2.0+ license:mpl1.1)))))
-- 
2.23.0




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH v2] gnu: Add aha. Date: Sat, 22 Feb 2020 22:23:22 +0100
On Fri, Oct 04, 2019 at 03:21:57PM +0200, Wiktor Żelazny wrote:
> From: Wiktor Żelazny <address@hidden>
> 
> * gnu/packages/textutils.scm (aha): new variable.

Thanks! I fixed the synopsis and description up a bit:

(synopsis "Converts terminal escape sequences to HTML")
(description "@command{aha} (Ansi Html Adapter) converts ANSI escape sequences
of a Unix terminal to HTML code.")

Apart from that, LGTM, so pushed to master.

Sorry for the quite substantial delay,
Jakub Kądziołka

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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