From unknown Sat Jun 14 18:46:20 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#37618 <37618@debbugs.gnu.org> To: bug#37618 <37618@debbugs.gnu.org> Subject: Status: [PATCH v2] gnu: Add aha. Reply-To: bug#37618 <37618@debbugs.gnu.org> Date: Sun, 15 Jun 2025 01:46:20 +0000 retitle 37618 [PATCH v2] gnu: Add aha. reassign 37618 guix-patches submitter 37618 Wiktor =C5=BBelazny severity 37618 normal tag 37618 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 04 09:24:28 2019 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 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 debbugs-submit-bounces@debbugs.gnu.org Sat Feb 22 16:22:44 2020 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-- From unknown Sat Jun 14 18:46:20 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 22 Mar 2020 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator