From unknown Sat Aug 16 12:40:37 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#61815 <61815@debbugs.gnu.org> To: bug#61815 <61815@debbugs.gnu.org> Subject: Status: [PATCH 1/2] gnu: Add python-panflute. Reply-To: bug#61815 <61815@debbugs.gnu.org> Date: Sat, 16 Aug 2025 19:40:37 +0000 retitle 61815 [PATCH 1/2] gnu: Add python-panflute. reassign 61815 guix-patches submitter 61815 Wiktor =C5=BBelazny severity 61815 normal tag 61815 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 26 10:24:12 2023 Received: (at submit) by debbugs.gnu.org; 26 Feb 2023 15:24:13 +0000 Received: from localhost ([127.0.0.1]:44828 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWIsm-00033I-IE for submit@debbugs.gnu.org; Sun, 26 Feb 2023 10:24:12 -0500 Received: from lists.gnu.org ([209.51.188.17]:38434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWIsk-00033A-Vz for submit@debbugs.gnu.org; Sun, 26 Feb 2023 10:24:11 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWIsj-0004EN-H1 for guix-patches@gnu.org; Sun, 26 Feb 2023 10:24:10 -0500 Received: from freeshell.de ([116.202.128.144]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWIsh-0002Ju-8D for guix-patches@gnu.org; Sun, 26 Feb 2023 10:24:08 -0500 Received: from localhost.localdomain (cst-prg-12-119.cust.vodafone.cz [46.135.12.119]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id A81F4B3C1F7E for ; Sun, 26 Feb 2023 16:24:00 +0100 (CET) From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= To: guix-patches@gnu.org Subject: [PATCH 1/2] gnu: Add python-panflute. Date: Sun, 26 Feb 2023 16:23:51 +0100 Message-Id: <20230226152351.22119-1-wz@freeshell.de> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=116.202.128.144; envelope-from=wz@freeshell.de; helo=freeshell.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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 (--) * gnu/packages/textutils.scm (python-panflute): New variable. --- gnu/packages/textutils.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index aeff4593a8..fad790c065 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -57,6 +57,7 @@ (define-module (gnu packages textutils) #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages base) + #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages gcc) #:use-module (gnu packages golang) @@ -69,6 +70,7 @@ (define-module (gnu packages textutils) #:use-module (gnu packages python) #:use-module (gnu packages python-build) #:use-module (gnu packages python-check) + #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) #:use-module (gnu packages readline) #:use-module (gnu packages ruby) @@ -1522,3 +1524,30 @@ (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 python-panflute + (package + (name "python-panflute") + (version "2.3.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "panflute" version)) + (sha256 + (base32 + "1jk5b2sp1h4drkjrg2ks77d0ca6j043n2myvacm77nfc93y9vzff")))) + (build-system python-build-system) + (propagated-inputs (list python-click python-pyyaml)) + (native-inputs (list python-configparser + python-coverage + python-flake8 + python-pandocfilters + python-pytest + python-pytest-cov + python-requests)) + (home-page "http://scorreia.com/software/panflute/") + (synopsis "Pythonic Pandoc filters") + (description + "Panflute is a Python package that makes Pandoc filters fun to +write. It is a pythonic alternative to John MacFarlane's pandocfilters, from +which it is heavily inspired.") + (license license:bsd-3))) base-commit: 53a739ae5d05c3278f09e05f0cba13d698031d92 -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 26 10:31:58 2023 Received: (at 61815) by debbugs.gnu.org; 26 Feb 2023 15:31:58 +0000 Received: from localhost ([127.0.0.1]:44834 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWJ0I-0003Fr-Jc for submit@debbugs.gnu.org; Sun, 26 Feb 2023 10:31:58 -0500 Received: from freeshell.de ([116.202.128.144]:41070) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWJ0H-0003Fd-6Q for 61815@debbugs.gnu.org; Sun, 26 Feb 2023 10:31:57 -0500 Received: from localhost.localdomain (cst-prg-12-119.cust.vodafone.cz [46.135.12.119]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 66B49B3C1F80 for <61815@debbugs.gnu.org>; Sun, 26 Feb 2023 16:31:50 +0100 (CET) From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= To: 61815@debbugs.gnu.org Subject: [PATCH 2/2] gnu: Add pandoc-include. Date: Sun, 26 Feb 2023 16:31:38 +0100 Message-Id: <20230226153138.22696-1-wz@freeshell.de> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 61815 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 (-) * gnu/packages/textutils.scm (pandoc-include): New variable. --- gnu/packages/textutils.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index fad790c065..e03ea3d448 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1551,3 +1551,31 @@ (define-public python-panflute write. It is a pythonic alternative to John MacFarlane's pandocfilters, from which it is heavily inspired.") (license license:bsd-3))) + +(define-public pandoc-include + (package + (name "pandoc-include") + (version "1.2.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "pandoc-include" version)) + (sha256 + (base32 + "01nrbzs85mrd7jcflicsz0bmfnzi6wsy0ii262xl01zsabqd7n91")))) + (build-system python-build-system) + (propagated-inputs (list python-natsort python-panflute)) + (home-page "https://github.com/DCsunset/pandoc-include") + (synopsis "Pandoc filter to allow file and header includes") + (description "@code{pandoc-include} extends Pandoc to support: + +@enumerate +@item include as raw blocks +@item indent and dedent included contents +@item partial include +@item code include +@item Unix style pathname +@item recursive include +@item Yaml header merging +@item header include +@end enumerate") + (license license:expat))) -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 08 17:36:50 2023 Received: (at 61815-done) by debbugs.gnu.org; 8 Jun 2023 21:36:50 +0000 Received: from localhost ([127.0.0.1]:57785 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7NJJ-0006of-PN for submit@debbugs.gnu.org; Thu, 08 Jun 2023 17:36:50 -0400 Received: from eggs.gnu.org ([209.51.188.92]:49216) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7NJG-0006oR-UQ for 61815-done@debbugs.gnu.org; Thu, 08 Jun 2023 17:36:47 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q7NJA-0002lH-Hw; Thu, 08 Jun 2023 17:36:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=/8ZUVyPq5ptP/aCyD/R4HNVFDiDZonO/ytzXOZGgg6Y=; b=Jnn2+HV878MtNHjEGGT+ KzVfEboPPM/Wos+aPEZvDgtIjXcOOxvS4DWaMxFMFzZ8CcNEjybr+OINQ0tPoSGNWMVLmsDA44F1l Cg0xaxaUA+ka9XD3QzogKyGP+3tTPeme4a5AdSPYVlhP/yWTkaM4ClA2KqtfJ4BtRXnq+APM37dgp 0fO/s+B5Lt9GZEQzbPcqRsz0QNAc9tHLFeVLNxSDNmLhwsB+lgl5Julo/s4hZoL91qGry2RgRfvnA 2s4N5eyhN9CRG2iJl7ueC9zPKS1yBXrhkUqH7KNl3UaFwtVIDynuO/BySMVQpmianXP93V6zzUb1X Aad/I/zbW98fMA==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q7NJA-00069e-4q; Thu, 08 Jun 2023 17:36:40 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Wiktor =?utf-8?Q?=C5=BBelazny?= Subject: Re: bug#61815: [PATCH 1/2] gnu: Add python-panflute. References: <20230226152351.22119-1-wz@freeshell.de> Date: Thu, 08 Jun 2023 23:36:38 +0200 In-Reply-To: <20230226152351.22119-1-wz@freeshell.de> ("Wiktor =?utf-8?Q?=C5=BBelazny=22's?= message of "Sun, 26 Feb 2023 16:23:51 +0100") Message-ID: <875y7xzleh.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61815-done Cc: 61815-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: -3.3 (---) Hi, Wiktor =C5=BBelazny skribis: > * gnu/packages/textutils.scm (python-panflute): New variable. [...] > * gnu/packages/textutils.scm (pandoc-include): New variable. Finally applied, thanks! Ludo=E2=80=99. From unknown Sat Aug 16 12:40:37 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 07 Jul 2023 11:24:06 +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