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

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

bug#57668: closed ([PATCH 1/2] gnu: Add txt2tags.)


From: GNU bug Tracking System
Subject: bug#57668: closed ([PATCH 1/2] gnu: Add txt2tags.)
Date: Mon, 12 Sep 2022 13:32:01 +0000

Your message dated Mon, 12 Sep 2022 14:29:43 +0100
with message-id <875yhsu3bg.fsf@cbaines.net>
and subject line Re: [bug#57668] [PATCH 1/2] gnu: Add txt2tags.
has caused the debbugs.gnu.org bug report #57668,
regarding [PATCH 1/2] gnu: Add txt2tags.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57668: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57668
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 1/2] gnu: Add txt2tags. Date: Wed, 7 Sep 2022 23:51:17 -0400
* gnu/packages/textutils.scm (txt2tags): New variable.
---
 gnu/packages/textutils.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 7898d520f0..dd57a6fd8a 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -68,6 +68,7 @@ (define-module (gnu packages textutils)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-build)
+  #:use-module (gnu packages python-check)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages ruby)
@@ -1502,3 +1503,20 @@ (define-public ack
 easily specify file types, match highlighting, Perl-Compatible Regular
 Expressions, and being faster to type than grep.")
     (license license:artistic2.0)))
+
+(define-public txt2tags
+  (package
+   (name "txt2tags")
+   (version "3.7")
+   (source (origin
+            (method url-fetch)
+            (uri (pypi-uri "txt2tags" version))
+            (sha256
+             (base32
+              "12hpnvdy7dgarq6ini9jp7dp2zcmvpax04zbl3jb84kd423r75i7"))))
+   (build-system python-build-system)
+   (native-inputs (list python-tox))
+   (home-page "https://txt2tags.org";)
+   (synopsis "Convert between markup languages")
+   (description "txt2tags is a document generator. It reads a text file with 
minimal markup and converts it to multiple formats.")
+   (license license:gpl2)))

base-commit: b45a44eaad890f31d9418dbb8cb14e3ee1d83c19
-- 
2.37.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#57668] [PATCH 1/2] gnu: Add txt2tags. Date: Mon, 12 Sep 2022 14:29:43 +0100 User-agent: mu4e 1.6.11; emacs 28.1
kiasoc5 via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/textutils.scm (txt2tags): New variable.
> ---
>  gnu/packages/textutils.scm | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)

I fixed the issues raised by guix lint about tab characters and the line
length, and pushed this to master as
25d88eb9f3e22816180c099502a3a919bbe602f6.

Chris

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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