From unknown Sat Jun 14 19:39:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#37618] [PATCH v2] gnu: Add aha. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 04 Oct 2019 13:25:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 37618 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 37618@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.157019546814317 (code B ref -1); Fri, 04 Oct 2019 13:25:01 +0000 Received: (at submit) by debbugs.gnu.org; 4 Oct 2019 13:24:28 +0000 Received: from localhost ([127.0.0.1]:41835 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGNZM-0003ir-HI for submit@debbugs.gnu.org; Fri, 04 Oct 2019 09:24:28 -0400 Received: from lists.gnu.org ([209.51.188.17]:42594) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGNZK-0003ih-Bz for submit@debbugs.gnu.org; Fri, 04 Oct 2019 09:24:26 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45318) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iGNZJ-0000K4-2Y for guix-patches@gnu.org; Fri, 04 Oct 2019 09:24:26 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iGNZH-0006Ag-Ot for guix-patches@gnu.org; Fri, 04 Oct 2019 09:24:24 -0400 Received: from freeshell.de ([2a01:360:106::2]:42252) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iGNZH-00063w-JA for guix-patches@gnu.org; Fri, 04 Oct 2019 09:24:23 -0400 From: Wiktor =?UTF-8?Q?=C5=BBelazny?= DKIM-Filter: OpenDKIM Filter v2.9.2 freeshell.de E2CD035CC371 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freeshell.de; s=mail; t=1570195457; bh=9YSR8mwVXvDn2O2rp0YrD4RyzkcBqIjYuzK/GRdYmkc=; h=From:To:Subject:Date; b=RBZa+66iVKlo/5419KZ+HVQq/xQjqgptfvZjq/BTmcEB07f/xY3xo+PQVtcrMtCzX cL9uA0yh14VxNWpxBb3Ntx+N6Z+i6HnkxQSGu+IXZC+jiFaElWwiSFp38QdQjkFLb3 sJGlgxljQ/IjsiR02KJEqmXRECl20RWEJhl/JXVs= Date: Fri, 4 Oct 2019 15:21:57 +0200 Message-Id: <20191004132157.10870-1-wz@freeshell.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2a01:360:106::2 X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) From: Wiktor =C5=BBelazny * gnu/packages/textutils.scm (aha): new variable. --- I fixed the issues pointed out by Tobias [bug#37603]. gnu/packages/textutils.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 79cf172179..678c1292f5 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -17,6 +17,7 @@ ;;; Copyright =C2=A9 2018 Pierre Neidhardt ;;; Copyright =C2=A9 2018 Meiyo Peng ;;; Copyright =C2=A9 2019 Yoshinori Arai +;;; Copyright =C2=A9 2019 Wiktor =C5=BBelazny ;;; ;;; This file is part of GNU Guix. ;;; @@ -1011,3 +1012,30 @@ instance one can add new syntax elements to markdo= wn, etc. =20 This package provides Python bindings.") (license license:bsd-3))) + +(define-public aha + (package + (name "aha") + (version "0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/theZiz/aha") + (commit version))) + (sha256 + (base32 + "0byml4rmpiaalwx69jcixl3yvpvwmwiss1jzgsqwshilb2p4qnmz")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + '(#:phases (modify-phases %standard-phases (delete 'configure)) + #:make-flags (list "CC=3Dgcc" + (string-append "PREFIX=3D" + (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 te= rminal +to HTML code.") + (license (list license:lgpl2.0+ license:mpl1.1)))) --=20 2.23.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Nov 06 09:41:51 2019 Received: (at control) by debbugs.gnu.org; 6 Nov 2019 14:41:51 +0000 Received: from localhost ([127.0.0.1]:39687 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iSMVL-0005rC-0X for submit@debbugs.gnu.org; Wed, 06 Nov 2019 09:41:51 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52638) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iSMVJ-0005r1-SU for control@debbugs.gnu.org; Wed, 06 Nov 2019 09:41:50 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:49145) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iSMVE-0000N7-NA for control@debbugs.gnu.org; Wed, 06 Nov 2019 09:41:44 -0500 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=52874 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iSMVE-0007CD-4I for control@debbugs.gnu.org; Wed, 06 Nov 2019 09:41:44 -0500 Date: Wed, 06 Nov 2019 15:41:42 +0100 Message-Id: <87d0e52hjt.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #37603 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) merge 37603 37618 quit From unknown Sat Jun 14 19:39:58 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Wiktor =?UTF-8?Q?=C5=BBelazny?= Subject: bug#37618: closed (Re: [PATCH v2] gnu: Add aha.) Message-ID: References: <20200222212322.pemsokolafduomc4@gravity> <20191004132157.10870-1-wz@freeshell.de> X-Gnu-PR-Message: they-closed 37618 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 37618@debbugs.gnu.org Date: Sat, 22 Feb 2020 21:23:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1582406582-13108-1" This is a multi-part message in MIME format... ------------=_1582406582-13108-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #37618: [PATCH v2] gnu: Add aha. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 37618@debbugs.gnu.org. --=20 37618: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D37618 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1582406582-13108-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 37618-done) by debbugs.gnu.org; 22 Feb 2020 21:22:44 +0000 Received: from localhost ([127.0.0.1]:50094 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5cEW-0003ON-0i for submit@debbugs.gnu.org; Sat, 22 Feb 2020 16:22:44 -0500 Received: from pat.zlotemysli.pl ([37.59.186.212]:55222) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5cEU-0003OB-VE for 37618-done@debbugs.gnu.org; Sat, 22 Feb 2020 16:22:43 -0500 Received: (qmail 6317 invoked by uid 1009); 22 Feb 2020 22:22:40 +0100 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25730. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.021733 secs); 22 Feb 2020 21:22:40 -0000 Received: from unknown (HELO gravity) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 22 Feb 2020 22:22:40 +0100 Date: Sat, 22 Feb 2020 22:23:22 +0100 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Wiktor =?utf-8?Q?=C5=BBelazny?= Subject: Re: [PATCH v2] gnu: Add aha. Message-ID: <20200222212322.pemsokolafduomc4@gravity> References: <20191004132157.10870-1-wz@freeshell.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="ki4hszz32d6crwco" Content-Disposition: inline In-Reply-To: <20191004132157.10870-1-wz@freeshell.de> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37618-done Cc: 37618-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --ki4hszz32d6crwco Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 04, 2019 at 03:21:57PM +0200, Wiktor =C5=BBelazny wrote: > From: Wiktor =C5=BBelazny >=20 > * 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 sequen= ces of a Unix terminal to HTML code.") Apart from that, LGTM, so pushed to master. Sorry for the quite substantial delay, Jakub K=C4=85dzio=C5=82ka --ki4hszz32d6crwco Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl5Rm8oACgkQ4xWnWEYT FWSLBhAAqQASG7uzvL5nD+48cDVB4aWARr9CcJcKWkp6JR1v19aaIKMw3Ao4UsN9 Zp+qti4cH4FRTO4EvDT4BiezV/f2nbqySp/zMK7T9UvTKB963M6ILyf3VPZgWj/W qyUNy2Yr4sk/r3EdjLHjn27JhVYtva35cPiflLI35BdxuB0lxcMx8N201D2cbYNr Ge6axzFYIygKeqN9FSTMs1ZltKM8TAtJqLh39oE7tfzsw6Ewq89qrJCqUFelOLLD IyqjQzSSVTj98DzAnUiC0fMY/FbqWClmwmIqIfFn/1Iv9TUbrWBZc5XQJCP9gjl2 MGzxavXILitlHX1XO11tOVSih0P7LKgIjN7R5TLXjWzuHMqBrXFmmDmET2mCuXU5 rXj6xL4nfjlld6CjORHzBcoEQs5KNNvtNVaz+c78gh4SNLEscUHopysp8z/zQgO8 /iB1shEJXLx4jJnxWf4/RnFlPUovcdVlStDAXPs0rDDEeEyvk6KXUQ0D0m/4R3G1 HapsOvD27EOlI3VVq0sLbxvakqVNR1rwFn9ydVku7FXKWuZrWOujvOhAs/3spASA MG8zc0y+2zZjFV/6Shl5dcVwMXADZ/W2KBSNwpFACr5IHCaUivLa332kr35OBIyq 0AFRLAVftlZi8ocdk6alJXOMvFmMGPehJSC0OehM3oneDsNQN7k= =ibJQ -----END PGP SIGNATURE----- --ki4hszz32d6crwco-- ------------=_1582406582-13108-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 4 Oct 2019 13:24:28 +0000 Received: from localhost ([127.0.0.1]:41835 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGNZM-0003ir-HI for submit@debbugs.gnu.org; Fri, 04 Oct 2019 09:24:28 -0400 Received: from lists.gnu.org ([209.51.188.17]:42594) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGNZK-0003ih-Bz for submit@debbugs.gnu.org; Fri, 04 Oct 2019 09:24:26 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45318) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iGNZJ-0000K4-2Y for guix-patches@gnu.org; Fri, 04 Oct 2019 09:24:26 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iGNZH-0006Ag-Ot for guix-patches@gnu.org; Fri, 04 Oct 2019 09:24:24 -0400 Received: from freeshell.de ([2a01:360:106::2]:42252) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iGNZH-00063w-JA for guix-patches@gnu.org; Fri, 04 Oct 2019 09:24:23 -0400 From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= DKIM-Filter: OpenDKIM Filter v2.9.2 freeshell.de E2CD035CC371 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freeshell.de; s=mail; t=1570195457; bh=9YSR8mwVXvDn2O2rp0YrD4RyzkcBqIjYuzK/GRdYmkc=; h=From:To:Subject:Date; b=RBZa+66iVKlo/5419KZ+HVQq/xQjqgptfvZjq/BTmcEB07f/xY3xo+PQVtcrMtCzX cL9uA0yh14VxNWpxBb3Ntx+N6Z+i6HnkxQSGu+IXZC+jiFaElWwiSFp38QdQjkFLb3 sJGlgxljQ/IjsiR02KJEqmXRECl20RWEJhl/JXVs= To: guix-patches@gnu.org Subject: [PATCH v2] gnu: Add aha. Date: Fri, 4 Oct 2019 15:21:57 +0200 Message-Id: <20191004132157.10870-1-wz@freeshell.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2a01:360:106::2 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) From: Wiktor =C5=BBelazny * gnu/packages/textutils.scm (aha): new variable. --- I fixed the issues pointed out by Tobias [bug#37603]. gnu/packages/textutils.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 79cf172179..678c1292f5 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -17,6 +17,7 @@ ;;; Copyright =C2=A9 2018 Pierre Neidhardt ;;; Copyright =C2=A9 2018 Meiyo Peng ;;; Copyright =C2=A9 2019 Yoshinori Arai +;;; Copyright =C2=A9 2019 Wiktor =C5=BBelazny ;;; ;;; This file is part of GNU Guix. ;;; @@ -1011,3 +1012,30 @@ instance one can add new syntax elements to markdo= wn, etc. =20 This package provides Python bindings.") (license license:bsd-3))) + +(define-public aha + (package + (name "aha") + (version "0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/theZiz/aha") + (commit version))) + (sha256 + (base32 + "0byml4rmpiaalwx69jcixl3yvpvwmwiss1jzgsqwshilb2p4qnmz")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + '(#:phases (modify-phases %standard-phases (delete 'configure)) + #:make-flags (list "CC=3Dgcc" + (string-append "PREFIX=3D" + (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 te= rminal +to HTML code.") + (license (list license:lgpl2.0+ license:mpl1.1)))) --=20 2.23.0 ------------=_1582406582-13108-1-- From unknown Sat Jun 14 19:39:58 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Wiktor =?UTF-8?Q?=C5=BBelazny?= Subject: bug#37603: closed (Re: [PATCH v2] gnu: Add aha.) Message-ID: References: <20200222212322.pemsokolafduomc4@gravity> <20191003141529.3940-1-wz@freeshell.de> X-Gnu-PR-Message: they-closed 37603 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 37603@debbugs.gnu.org Date: Sat, 22 Feb 2020 21:23:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1582406583-13108-3" This is a multi-part message in MIME format... ------------=_1582406583-13108-3 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #37618: [PATCH] gnu: Add aha. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 37603@debbugs.gnu.org. --=20 37618: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D37618 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1582406583-13108-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 37618-done) by debbugs.gnu.org; 22 Feb 2020 21:22:44 +0000 Received: from localhost ([127.0.0.1]:50094 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5cEW-0003ON-0i for submit@debbugs.gnu.org; Sat, 22 Feb 2020 16:22:44 -0500 Received: from pat.zlotemysli.pl ([37.59.186.212]:55222) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5cEU-0003OB-VE for 37618-done@debbugs.gnu.org; Sat, 22 Feb 2020 16:22:43 -0500 Received: (qmail 6317 invoked by uid 1009); 22 Feb 2020 22:22:40 +0100 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25730. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.021733 secs); 22 Feb 2020 21:22:40 -0000 Received: from unknown (HELO gravity) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 22 Feb 2020 22:22:40 +0100 Date: Sat, 22 Feb 2020 22:23:22 +0100 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Wiktor =?utf-8?Q?=C5=BBelazny?= Subject: Re: [PATCH v2] gnu: Add aha. Message-ID: <20200222212322.pemsokolafduomc4@gravity> References: <20191004132157.10870-1-wz@freeshell.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="ki4hszz32d6crwco" Content-Disposition: inline In-Reply-To: <20191004132157.10870-1-wz@freeshell.de> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37618-done Cc: 37618-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --ki4hszz32d6crwco Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 04, 2019 at 03:21:57PM +0200, Wiktor =C5=BBelazny wrote: > From: Wiktor =C5=BBelazny >=20 > * 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 sequen= ces of a Unix terminal to HTML code.") Apart from that, LGTM, so pushed to master. Sorry for the quite substantial delay, Jakub K=C4=85dzio=C5=82ka --ki4hszz32d6crwco Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl5Rm8oACgkQ4xWnWEYT FWSLBhAAqQASG7uzvL5nD+48cDVB4aWARr9CcJcKWkp6JR1v19aaIKMw3Ao4UsN9 Zp+qti4cH4FRTO4EvDT4BiezV/f2nbqySp/zMK7T9UvTKB963M6ILyf3VPZgWj/W qyUNy2Yr4sk/r3EdjLHjn27JhVYtva35cPiflLI35BdxuB0lxcMx8N201D2cbYNr Ge6axzFYIygKeqN9FSTMs1ZltKM8TAtJqLh39oE7tfzsw6Ewq89qrJCqUFelOLLD IyqjQzSSVTj98DzAnUiC0fMY/FbqWClmwmIqIfFn/1Iv9TUbrWBZc5XQJCP9gjl2 MGzxavXILitlHX1XO11tOVSih0P7LKgIjN7R5TLXjWzuHMqBrXFmmDmET2mCuXU5 rXj6xL4nfjlld6CjORHzBcoEQs5KNNvtNVaz+c78gh4SNLEscUHopysp8z/zQgO8 /iB1shEJXLx4jJnxWf4/RnFlPUovcdVlStDAXPs0rDDEeEyvk6KXUQ0D0m/4R3G1 HapsOvD27EOlI3VVq0sLbxvakqVNR1rwFn9ydVku7FXKWuZrWOujvOhAs/3spASA MG8zc0y+2zZjFV/6Shl5dcVwMXADZ/W2KBSNwpFACr5IHCaUivLa332kr35OBIyq 0AFRLAVftlZi8ocdk6alJXOMvFmMGPehJSC0OehM3oneDsNQN7k= =ibJQ -----END PGP SIGNATURE----- --ki4hszz32d6crwco-- ------------=_1582406583-13108-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 3 Oct 2019 14:17:53 +0000 Received: from localhost ([127.0.0.1]:40703 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG1vU-0005gW-Up for submit@debbugs.gnu.org; Thu, 03 Oct 2019 10:17:53 -0400 Received: from lists.gnu.org ([209.51.188.17]:54244) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG1vT-0005gP-HS for submit@debbugs.gnu.org; Thu, 03 Oct 2019 10:17:52 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:60454) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iG1vS-0005DJ-2l for guix-patches@gnu.org; Thu, 03 Oct 2019 10:17:51 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iG1vP-00088H-9C for guix-patches@gnu.org; Thu, 03 Oct 2019 10:17:49 -0400 Received: from freeshell.de ([2a01:360:106::2]:45337) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iG1vO-00083X-QY for guix-patches@gnu.org; Thu, 03 Oct 2019 10:17:47 -0400 From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= DKIM-Filter: OpenDKIM Filter v2.9.2 freeshell.de E25AB35CC340 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freeshell.de; s=mail; t=1570112260; bh=VUrKJCcXLnkhKVyM7HX+a0x00x8fVeM63inC9yPvKyo=; h=From:To:Subject:Date; b=exiSQctb9itCCdRkBSIW9zvXv9OHdhKWkR51Tmk9G0vH34x12n8bRl0+9mrdylFMx 4PRqmciij2khNBQHV8B5XATY/mkCl1Z4JrieZztlCTdf93kKrXJvV7wg6C7hH2TdZ8 3Lx1T9vC1SPGVchrYaUmZkQ5Q3odpZpWxf4MUF4w= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add aha. Date: Thu, 3 Oct 2019 16:15:29 +0200 Message-Id: <20191003141529.3940-1-wz@freeshell.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2a01:360:106::2 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) From: Wiktor =C5=BBelazny * gnu/packages/textutils.scm (aha): new variable. --- Hi, This is the first time that I=E2=80=99m submitting something that use= s 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 =C2=A9 2018 Pierre Neidhardt ;;; Copyright =C2=A9 2018 Meiyo Peng ;;; Copyright =C2=A9 2019 Yoshinori Arai +;;; Copyright =C2=A9 2019 Wiktor =C5=BBelazny ;;; ;;; This file is part of GNU Guix. ;;; @@ -1011,3 +1012,32 @@ instance one can add new syntax elements to markdo= wn, etc. =20 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=3Dgcc" + (string-append "PREFIX=3D" + (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))))) --=20 2.23.0 ------------=_1582406583-13108-3--