From unknown Wed Jun 25 02:08: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#40104 <40104@debbugs.gnu.org> To: bug#40104 <40104@debbugs.gnu.org> Subject: Status: [PATCH 1/1] gnu: Add emacs-org-static-blog. Reply-To: bug#40104 <40104@debbugs.gnu.org> Date: Wed, 25 Jun 2025 09:08:20 +0000 retitle 40104 [PATCH 1/1] gnu: Add emacs-org-static-blog. reassign 40104 guix-patches submitter 40104 Brice Waegeneire severity 40104 normal tag 40104 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 17 10:13:05 2020 Received: (at submit) by debbugs.gnu.org; 17 Mar 2020 14:13:05 +0000 Received: from localhost ([127.0.0.1]:39370 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jECxs-00080s-UK for submit@debbugs.gnu.org; Tue, 17 Mar 2020 10:13:05 -0400 Received: from lists.gnu.org ([209.51.188.17]:58936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jECxr-00080h-9S for submit@debbugs.gnu.org; Tue, 17 Mar 2020 10:13:03 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:51432) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jECxq-0004Xp-0m for guix-patches@gnu.org; Tue, 17 Mar 2020 10:13:03 -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.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jECxo-0004ME-OP for guix-patches@gnu.org; Tue, 17 Mar 2020 10:13:01 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:53355) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jECxo-00048y-Hh for guix-patches@gnu.org; Tue, 17 Mar 2020 10:13:00 -0400 X-Originating-IP: 78.237.113.178 Received: from localhost (luy13-1-78-237-113-178.fbx.proxad.net [78.237.113.178]) (Authenticated sender: brice@waegenei.re) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 8BEE3E0007 for ; Tue, 17 Mar 2020 14:12:58 +0000 (UTC) From: Brice Waegeneire To: guix-patches@gnu.org Subject: [PATCH 1/1] gnu: Add emacs-org-static-blog. Date: Tue, 17 Mar 2020 15:12:53 +0100 Message-Id: <20200317141253.25851-2-brice@waegenei.re> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200317141253.25851-1-brice@waegenei.re> References: <20200317141253.25851-1-brice@waegenei.re> 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] [fuzzy] X-Received-From: 217.70.183.196 X-Spam-Score: -0.0 (/) 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: -1.0 (-) * gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable. --- gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index d45814379b..dfcf283283 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -62,6 +62,7 @@ ;;; Copyright © 2020 Evan Straw ;;; Copyright © 2020 Masaya Tojo ;;; Copyright © 2020 Martin Becze +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -21806,3 +21807,28 @@ All entries in a specified TODO state will be carried over to the next day.") "Daredevil SKK is a version of @acronym{SKK, Simple Kana to Kanji conversion program}, a Japanese input method on Emacs.") (license license:gpl2+)))) + +(define-public emacs-org-static-blog + (package + (name "emacs-org-static-blog") + (version "20200117.800") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/org-static-blog-" + version ".el")) + (sha256 + (base32 + "0k1p43pvjvfzgqigybizg9pr8r7sqapbv18vhfg9smik09sjh0gd")))) + (build-system emacs-build-system) + (home-page + "https://github.com/bastibe/org-static-blog") + (synopsis + "Simple org-mode based static blog generator") + (description + "Org-static-blog is one more static blog generator, it focuses on being +simple. All files are simple org-mode files in a directory. The only +requirement is that every org file must have a #+TITLE and a #+DATE, and +optionally, #+FILETAGS.") + (license license:bsd-3))) -- 2.25.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 17 10:16:56 2020 Received: (at control) by debbugs.gnu.org; 17 Mar 2020 14:16:57 +0000 Received: from localhost ([127.0.0.1]:39377 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jED1c-00089h-Lq for submit@debbugs.gnu.org; Tue, 17 Mar 2020 10:16:56 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:39565) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jED1Z-00088x-R2 for control@debbugs.gnu.org; Tue, 17 Mar 2020 10:16:54 -0400 Received: from webmail.gandi.net (webmail18.sd4.0x35.net [10.200.201.18]) (Authenticated sender: brice@waegenei.re) by relay5-d.mail.gandi.net (Postfix) with ESMTPA id 64B451C000F for ; Tue, 17 Mar 2020 14:16:46 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 17 Mar 2020 14:16:46 +0000 From: Brice Waegeneire To: control@debbugs.gnu.org Subject: merge 40103 40104 Message-ID: X-Sender: brice@waegenei.re User-Agent: Roundcube Webmail/1.3.8 X-Spam-Score: -0.7 (/) 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: -1.7 (-) merge 40103 40104 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 17 11:08:10 2020 Received: (at 40104) by debbugs.gnu.org; 17 Mar 2020 15:08:10 +0000 Received: from localhost ([127.0.0.1]:39413 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEDpB-00036U-C7 for submit@debbugs.gnu.org; Tue, 17 Mar 2020 11:08:10 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:59997) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEDp8-00035s-OF for 40104@debbugs.gnu.org; Tue, 17 Mar 2020 11:08:07 -0400 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 relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 3880BE0002; Tue, 17 Mar 2020 15:07:58 +0000 (UTC) From: Nicolas Goaziou To: Brice Waegeneire Subject: Re: [bug#40104] [PATCH 1/1] gnu: Add emacs-org-static-blog. References: <20200317141253.25851-1-brice@waegenei.re> <20200317141253.25851-2-brice@waegenei.re> Date: Tue, 17 Mar 2020 16:07:58 +0100 In-Reply-To: <20200317141253.25851-2-brice@waegenei.re> (Brice Waegeneire's message of "Tue, 17 Mar 2020 15:12:53 +0100") Message-ID: <87sgi7t3xt.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 40104 Cc: 40104@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.7 (-) Hello, Brice Waegeneire writes: > * gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable. Thank you. > +(define-public emacs-org-static-blog > + (package > + (name "emacs-org-static-blog") > + (version "20200117.800") Could you explain in a comment why using an unstable release is required? > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://melpa.org/packages/org-static-blog-" > + version ".el")) It seems upstream is at Github, not MELPA. Could you use Github instead? > + (home-page > + "https://github.com/bastibe/org-static-blog") > + (synopsis > + "Simple org-mode based static blog generator") Nitpick: Simple Org mode based static blog generator > + (description > + "Org-static-blog is one more static blog generator, it focuses on being > +simple. All files are simple org-mode files in a directory. Nitpick: All file are simple Org files in a directory. > The only > +requirement is that every org file must have a #+TITLE and a #+DATE, and > +optionally, #+FILETAGS.") Nitpick: every Org file must have a @samp{title} and a @samp{date} keywords, and optionally, a @samp{filetags} keyword. Could you send an updated patch? Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 18 04:24:56 2020 Received: (at 40104) by debbugs.gnu.org; 18 Mar 2020 08:24:56 +0000 Received: from localhost ([127.0.0.1]:39795 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEU0W-0005PS-Hp for submit@debbugs.gnu.org; Wed, 18 Mar 2020 04:24:56 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:53873) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEU0U-0005PC-GQ for 40104@debbugs.gnu.org; Wed, 18 Mar 2020 04:24:55 -0400 X-Originating-IP: 78.237.113.178 Received: from localhost (luy13-1-78-237-113-178.fbx.proxad.net [78.237.113.178]) (Authenticated sender: brice@waegenei.re) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id ADC1F1BF20A for <40104@debbugs.gnu.org>; Wed, 18 Mar 2020 08:24:47 +0000 (UTC) From: Brice Waegeneire To: 40104@debbugs.gnu.org Subject: [PATCH v2] gnu: Add emacs-org-static-blog. Date: Wed, 18 Mar 2020 09:24:43 +0100 Message-Id: <20200318082443.25193-1-brice@waegenei.re> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200317141253.25851-1-brice@waegenei.re> References: <20200317141253.25851-1-brice@waegenei.re> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 40104 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.7 (-) * gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable. --- gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index d45814379b..e09eb4a19f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -62,6 +62,7 @@ ;;; Copyright © 2020 Evan Straw ;;; Copyright © 2020 Masaya Tojo ;;; Copyright © 2020 Martin Becze +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -21806,3 +21807,30 @@ All entries in a specified TODO state will be carried over to the next day.") "Daredevil SKK is a version of @acronym{SKK, Simple Kana to Kanji conversion program}, a Japanese input method on Emacs.") (license license:gpl2+)))) + +(define-public emacs-org-static-blog + ;; Use the latest commit as the last release only contains half of the + ;; current total commits. + (package + (name "emacs-org-static-blog") + (version "20200117") + (home-page "https://github.com/bastibe/org-static-blog") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit "5c19300d7634e94ae813b1b66abc716fbb1e5fc9"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1m7vmibjc6yk2npfrnnqd3g2099300r0q8mr8cvyivmk5ailbfrh")))) + (build-system emacs-build-system) + (synopsis + "Simple Org mode based static blog generator") + (description + "@code{emacs-org-static-blog} is one more static blog generator, it focuses on being +simple. All file are simple Org files in a directory. The only requirement +is that every Org file must have a @samp{title} and a @samp{date} keywords, +and optionally, a @samp{filetags} keyword.") + (license license:bsd-3))) -- 2.25.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 18 04:26:18 2020 Received: (at 40104) by debbugs.gnu.org; 18 Mar 2020 08:26:18 +0000 Received: from localhost ([127.0.0.1]:39799 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEU1p-0005Rn-V8 for submit@debbugs.gnu.org; Wed, 18 Mar 2020 04:26:18 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:41741) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEU1m-0005RY-Or for 40104@debbugs.gnu.org; Wed, 18 Mar 2020 04:26:15 -0400 Received: from webmail.gandi.net (webmail18.sd4.0x35.net [10.200.201.18]) (Authenticated sender: brice@waegenei.re) by relay4-d.mail.gandi.net (Postfix) with ESMTPA id C5FDFE0018; Wed, 18 Mar 2020 08:26:07 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 18 Mar 2020 08:26:07 +0000 From: Brice Waegeneire To: Nicolas Goaziou Subject: Re: [bug#40104] [PATCH 1/1] gnu: Add emacs-org-static-blog. In-Reply-To: <87sgi7t3xt.fsf@nicolasgoaziou.fr> References: <20200317141253.25851-1-brice@waegenei.re> <20200317141253.25851-2-brice@waegenei.re> <87sgi7t3xt.fsf@nicolasgoaziou.fr> Message-ID: <64c029ab13977fff2c527f1aec183746@waegenei.re> X-Sender: brice@waegenei.re User-Agent: Roundcube Webmail/1.3.8 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 40104 Cc: 40104@debbugs.gnu.org, Guix-patches 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.7 (-) On 2020-03-17 15:07, Nicolas Goaziou wrote: > Hello, > > Brice Waegeneire writes: > >> * gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable. > > Thank you. > >> +(define-public emacs-org-static-blog >> + (package >> + (name "emacs-org-static-blog") >> + (version "20200117.800") > > Could you explain in a comment why using an unstable release is > required? > >> + (source >> + (origin >> + (method url-fetch) >> + (uri (string-append >> + "https://melpa.org/packages/org-static-blog-" >> + version ".el")) > > It seems upstream is at Github, not MELPA. Could you use Github > instead? > >> + (home-page >> + "https://github.com/bastibe/org-static-blog") >> + (synopsis >> + "Simple org-mode based static blog generator") > > Nitpick: Simple Org mode based static blog generator > >> + (description >> + "Org-static-blog is one more static blog generator, it focuses on >> being >> +simple. All files are simple org-mode files in a directory. > > Nitpick: All file are simple Org files in a directory. > >> The only >> +requirement is that every org file must have a #+TITLE and a #+DATE, >> and >> +optionally, #+FILETAGS.") > > Nitpick: every Org file must have a @samp{title} and a @samp{date} > keywords, and optionally, a @samp{filetags} keyword. > > Could you send an updated patch? > > Regards, V2 send with all your suggestions added. And I have requested a new release upstream: https://github.com/bastibe/org-static-blog/issues/50 From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 18 07:28:14 2020 Received: (at 40104-done) by debbugs.gnu.org; 18 Mar 2020 11:28:14 +0000 Received: from localhost ([127.0.0.1]:39895 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEWru-0001Kt-7e for submit@debbugs.gnu.org; Wed, 18 Mar 2020 07:28:14 -0400 Received: from relay10.mail.gandi.net ([217.70.178.230]:51321) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEWrs-0001Kg-FW for 40104-done@debbugs.gnu.org; Wed, 18 Mar 2020 07:28:13 -0400 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay10.mail.gandi.net (Postfix) with ESMTPSA id 61FDA240003; Wed, 18 Mar 2020 11:28:02 +0000 (UTC) From: Nicolas Goaziou To: Brice Waegeneire Subject: Re: [bug#40104] [PATCH 1/1] gnu: Add emacs-org-static-blog. References: <20200317141253.25851-1-brice@waegenei.re> <20200317141253.25851-2-brice@waegenei.re> <87sgi7t3xt.fsf@nicolasgoaziou.fr> <64c029ab13977fff2c527f1aec183746@waegenei.re> Date: Wed, 18 Mar 2020 12:28:02 +0100 In-Reply-To: <64c029ab13977fff2c527f1aec183746@waegenei.re> (Brice Waegeneire's message of "Wed, 18 Mar 2020 08:26:07 +0000") Message-ID: <87o8stgawt.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 40104-done Cc: 40104-done@debbugs.gnu.org, Guix-patches 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.7 (-) Hello, Brice Waegeneire writes: > V2 send with all your suggestions added. And I have requested a new > release upstream: https://github.com/bastibe/org-static-blog/issues/50 Great! Applied as 382ba7bad59ec7205cd883bb93b5e6cf33329d66. Thank you. Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 18 13:15:28 2020 Received: (at 40104) by debbugs.gnu.org; 18 Mar 2020 17:15:29 +0000 Received: from localhost ([127.0.0.1]:41291 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEcHw-0007xY-Ke for submit@debbugs.gnu.org; Wed, 18 Mar 2020 13:15:28 -0400 Received: from minsky.hcoop.net ([104.248.1.95]:55960) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEcHv-0007rj-8L for 40104@debbugs.gnu.org; Wed, 18 Mar 2020 13:15:27 -0400 Received: from marsh.hcoop.net ([45.55.52.66]) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1jEcHp-0003Y2-Cn; Wed, 18 Mar 2020 13:15:21 -0400 Date: Wed, 18 Mar 2020 13:15:21 -0400 (EDT) From: Jack Hill X-X-Sender: jackhill@marsh.hcoop.net To: Brice Waegeneire Subject: Re: [bug#40104] [PATCH v2] gnu: Add emacs-org-static-blog. In-Reply-To: <20200318082443.25193-1-brice@waegenei.re> Message-ID: References: <20200317141253.25851-1-brice@waegenei.re> <20200318082443.25193-1-brice@waegenei.re> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: multipart/mixed; BOUNDARY="925712948-633457255-1584551721=:19733" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 40104 Cc: Nicolas Goaziou , 40104@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 (-) This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --925712948-633457255-1584551721=:19733 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8BIT I know this was already merged, but I found an additional nit-pick/typo: On Wed, 18 Mar 2020, Brice Waegeneire wrote: > + (description > + "@code{emacs-org-static-blog} is one more static blog generator, it focuses on being > +simple. All file are simple Org files in a directory. The only requirement I believe it should read, "All files are simple Org files…". Note the lack of s on the first instance of file. Hopefully you don't mind me pointing out such a small thing. All the best, Jack --925712948-633457255-1584551721=:19733-- From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 18 16:51:19 2020 Received: (at 40104) by debbugs.gnu.org; 18 Mar 2020 20:51:19 +0000 Received: from localhost ([127.0.0.1]:41512 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEfep-0000TJ-1A for submit@debbugs.gnu.org; Wed, 18 Mar 2020 16:51:19 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:32953) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEfel-0000T5-Gc for 40104@debbugs.gnu.org; Wed, 18 Mar 2020 16:51:16 -0400 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 relay9-d.mail.gandi.net (Postfix) with ESMTPSA id 13C9CFF805; Wed, 18 Mar 2020 20:51:06 +0000 (UTC) From: Nicolas Goaziou To: Jack Hill Subject: Re: [bug#40104] [PATCH v2] gnu: Add emacs-org-static-blog. References: <20200317141253.25851-1-brice@waegenei.re> <20200318082443.25193-1-brice@waegenei.re> Date: Wed, 18 Mar 2020 21:51:05 +0100 In-Reply-To: (Jack Hill's message of "Wed, 18 Mar 2020 13:15:21 -0400 (EDT)") Message-ID: <87h7yle69y.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 40104 Cc: Brice Waegeneire , 40104@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.7 (-) Hello, Jack Hill writes: > I believe it should read, "All files are simple Org files=E2=80=A6". Note= the > lack of s on the first instance of file. > > Hopefully you don't mind me pointing out such a small thing. Not at all! Fixed. Thank you. Regards, --=20 Nicolas Goaziou From unknown Wed Jun 25 02:08: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: Thu, 16 Apr 2020 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