From unknown Wed Jun 18 23:11: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#47003 <47003@debbugs.gnu.org> To: bug#47003 <47003@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add emacs-ox-haunt. Reply-To: bug#47003 <47003@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:11:37 +0000 retitle 47003 [PATCH] gnu: Add emacs-ox-haunt. reassign 47003 guix-patches submitter 47003 Xinglu Chen severity 47003 normal tag 47003 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 08 04:48:59 2021 Received: (at submit) by debbugs.gnu.org; 8 Mar 2021 09:49:00 +0000 Received: from localhost ([127.0.0.1]:42163 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lJCVX-0002OS-NF for submit@debbugs.gnu.org; Mon, 08 Mar 2021 04:48:59 -0500 Received: from lists.gnu.org ([209.51.188.17]:42748) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lJCVW-0002OL-CB for submit@debbugs.gnu.org; Mon, 08 Mar 2021 04:48:58 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:57592) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lJCVW-0000e9-3m for guix-patches@gnu.org; Mon, 08 Mar 2021 04:48:58 -0500 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:41380 helo=mail.yoctocell.xyz) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lJCVU-0003YD-IO for guix-patches@gnu.org; Mon, 08 Mar 2021 04:48:57 -0500 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1615196934; bh=Lx4l1fZ1m7JDLrdL1Han8y+Xu0DinRCPfOwNaVjpF6M=; h=From:To:Subject:Date; b=XY7v/UKswdHNw92shuazRTBioqD1m/eKG2TSry+Odz9kikaJLEv2zR1gNzilXHN2V +tg5Nrp9KTldwkEQfHCM1oh3a/FrDYO2P6TsTwtIauWDzdFTmdyq3gxQXMeODLiunj hzcxGz399DJlI+a1yyKqvZmq2yGf149uQ8qDudCQ= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-ox-haunt. Message-Id: <900b664835aa9ce22564eba1c517df71fb14cef2.1615196912.git.public@yoctocell.xyz> Date: Mon, 08 Mar 2021 10:48:53 +0100 MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=87.96.130.155; envelope-from=public@yoctocell.xyz; helo=mail.yoctocell.xyz X-Spam_score_int: 9 X-Spam_score: 0.9 X-Spam_bar: / X-Spam_report: (0.9 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FROM_SUSPICIOUS_NTLD=0.499, FROM_SUSPICIOUS_NTLD_FP=0.001, PDS_OTHER_BAD_TLD=1.516, RDNS_DYNAMIC=0.982, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.7 (/) 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: -0.3 (/) * gnu/packages/emacs-xyz.scm (emacs-ox-haunt): New variable. --- gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 960a5668ca..0053460407 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -23892,6 +23892,26 @@ convert the resulting @code{.epub} to a @code{.mobi} file. Needs a working zip utility (default is @code{zip}).") (license license:gpl3+))) +(define-public emacs-ox-haunt + (package + (name "emacs-ox-haunt") + (version "0.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~jakob/ox-haunt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rs1n228c2fmpvirc57bqgf2616ijpphkgf4w9ln5j46snmkam25")))) + (build-system emacs-build-system) + (home-page "https://git.sr.ht/~jakob/ox-haunt") + (synopsis "Export Org files to HTML appropriate for Haunt") + (description "This library implements an HTML back-end for the Org generic +exporter, producing output appropriate for Haunt's @code{html-reader}.") + (license license:gpl3+))) + (define-public emacs-ox-hugo (package (name "emacs-ox-hugo") base-commit: a4640f40fb155b37282450da1b12caa2c705eb50 -- 2.30.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 13 06:13:52 2021 Received: (at 47003-done) by debbugs.gnu.org; 13 Mar 2021 11:13:52 +0000 Received: from localhost ([127.0.0.1]:59186 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lL2DQ-0006IR-AS for submit@debbugs.gnu.org; Sat, 13 Mar 2021 06:13:52 -0500 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:56311) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lL2DO-0006IE-Ig for 47003-done@debbugs.gnu.org; Sat, 13 Mar 2021 06:13:51 -0500 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 893B31BF204; Sat, 13 Mar 2021 11:13:44 +0000 (UTC) From: Nicolas Goaziou To: Xinglu Chen Subject: Re: [bug#47003] [PATCH] gnu: Add emacs-ox-haunt. References: <900b664835aa9ce22564eba1c517df71fb14cef2.1615196912.git.public@yoctocell.xyz> Date: Sat, 13 Mar 2021 12:13:43 +0100 In-Reply-To: <900b664835aa9ce22564eba1c517df71fb14cef2.1615196912.git.public@yoctocell.xyz> (Xinglu Chen's message of "Mon, 08 Mar 2021 10:48:53 +0100") Message-ID: <87wnubxq54.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hello, Xinglu Chen writes: > * gnu/packages/emacs-xyz.scm (emacs-ox-haunt): New variable. Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.201 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [217.70.183.201 listed in wl.mailspike.net] X-Debbugs-Envelope-To: 47003-done Cc: 47003-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: 0.3 (/) Hello, Xinglu Chen writes: > * gnu/packages/emacs-xyz.scm (emacs-ox-haunt): New variable. Applied. Thank you. Regards, -- Nicolas Goaziou From unknown Wed Jun 18 23:11: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: Sat, 10 Apr 2021 11:24:04 +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