GNU bug report logs -
#37603
[PATCH] gnu: Add aha.
Previous Next
Reported by: Wiktor Żelazny <wz <at> freeshell.de>
Date: Thu, 3 Oct 2019 14:18:02 UTC
Severity: normal
Tags: patch
Merged with 37618
Done: Jakub Kądziołka <kuba <at> kadziolka.net>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From: Wiktor Żelazny <wzelazny <at> vurv.cz>
* 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 <mail <at> ambrevar.xyz>
;;; Copyright © 2018 Meiyo Peng <meiyo.peng <at> gmail.com>
;;; Copyright © 2019 Yoshinori Arai <kumagusu08 <at> gmail.com>
+;;; Copyright © 2019 Wiktor Żelazny <wzelazny <at> vurv.cz>
;;;
;;; 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
This bug report was last modified 5 years and 140 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.