From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 18 05:20:50 2017 Received: (at submit) by debbugs.gnu.org; 18 Sep 2017 09:20:50 +0000 Received: from localhost ([127.0.0.1]:45569 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtsEQ-0001w4-Nn for submit@debbugs.gnu.org; Mon, 18 Sep 2017 05:20:50 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34165) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtsEO-0001vr-AT for submit@debbugs.gnu.org; Mon, 18 Sep 2017 05:20:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dtsEI-0004cC-7o for submit@debbugs.gnu.org; Mon, 18 Sep 2017 05:20:39 -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,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:37508) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dtsEI-0004c6-4r for submit@debbugs.gnu.org; Mon, 18 Sep 2017 05:20:38 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53361) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dtsEG-0004ta-JT for guix-patches@gnu.org; Mon, 18 Sep 2017 05:20:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dtsEC-0004bN-Ki for guix-patches@gnu.org; Mon, 18 Sep 2017 05:20:36 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:60419) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dtsEC-0004bF-IX; Mon, 18 Sep 2017 05:20:32 -0400 Received: from mx.verum.com ([31.223.170.65]:31870 helo=dundal.verum.com) by fencepost.gnu.org with esmtpa (Exim 4.82) (envelope-from ) id 1dtsEC-0003Tr-4q; Mon, 18 Sep 2017 05:20:32 -0400 From: Jan Nieuwenhuizen To: guix-patches@gnu.org Subject: [PATCH] doc: Add "Sending a Patch Series" subsection. Date: Mon, 18 Sep 2017 11:20:30 +0200 Message-Id: <20170918092030.9691-1-janneke@gnu.org> X-Mailer: git-send-email 2.13.0 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-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.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: -5.0 (-----) Searching for `git send-email' took you to the end of `Submitting Patches' section which said You may use your email client or the ‘git send-email’ command. without further warning or remark. * doc/contributing.texi (Sending a Patch Series): Move information about debbugs bug 15361 to subsection. Add git-send-email index entries. (Submitting Patches): Reference it. --- doc/contributing.texi | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/doc/contributing.texi b/doc/contributing.texi index 00edd4771..71a465a37 100644 --- a/doc/contributing.texi +++ b/doc/contributing.texi @@ -298,11 +298,7 @@ This mailing list is backed by a Debbugs instance accessible at of submissions. Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is -the tracking number. When sending a patch series, please first send one -message to @email{guix-patches@@gnu.org}, and then send subsequent -patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept -together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs -documentation}, for more information. +the tracking number, @xref{Sending a Patch Series}. Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for @@ -434,7 +430,22 @@ Please follow our code formatting rules, possibly running the When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject. You may use your email client or the @command{git -send-email} command. We prefer to get patches in plain text messages, -either inline or as MIME attachments. You are advised to pay attention if -your email client changes anything like line breaks or indentation which -could potentially break the patches. +send-email} command @xref{Sending a Patch Series}. We prefer to get +patches in plain text messages, either inline or as MIME attachments. +You are advised to pay attention if your email client changes anything +like line breaks or indentation which could potentially break the +patches. + +@unnumberedsubsec Sending a Patch Series +@anchor{Sending a Patch Series} +@cindex patch series +@cindex @code{git send-email} +@cindex @code{git-send-email} + +When sending a patch series (e.g., using @code{git send-email}), please +first send one message to @email{guix-patches@@gnu.org}, and then send +subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure +they are kept together. See +@uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} +for more information. +@c Debbugs bug: https://debbugs.gnu.org/db/15/15361.html -- Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar® http://AvatarAcademy.com From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 18 08:46:03 2017 Received: (at 28491) by debbugs.gnu.org; 18 Sep 2017 12:46:03 +0000 Received: from localhost ([127.0.0.1]:45671 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtvR5-0000D5-B8 for submit@debbugs.gnu.org; Mon, 18 Sep 2017 08:46:03 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:37375) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtvR3-0000CO-If for 28491@debbugs.gnu.org; Mon, 18 Sep 2017 08:46:02 -0400 Received: from saiph.selenimh (000043010000000000000469.ipv6.commingeshautdebit.fr [IPv6:2a03:a0a0:0:4301::469]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 3707AA80CF; Mon, 18 Sep 2017 14:45:59 +0200 (CEST) Received: from ngz by saiph.selenimh with local (Exim 4.89) (envelope-from ) id 1dtvQw-0002te-A2; Mon, 18 Sep 2017 14:45:54 +0200 From: Nicolas Goaziou To: Jan Nieuwenhuizen Subject: Re: [bug#28491] [PATCH] doc: Add "Sending a Patch Series" subsection. In-Reply-To: <20170918092030.9691-1-janneke@gnu.org> (Jan Nieuwenhuizen's message of "Mon, 18 Sep 2017 11:20:30 +0200") References: <20170918092030.9691-1-janneke@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Date: Mon, 18 Sep 2017 14:45:54 +0200 Message-ID: <87h8w089a5.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 28491 Cc: 28491@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.7 (/) Hello, Jan Nieuwenhuizen writes: > +the tracking number, @xref{Sending a Patch Series}. It should be @pxref. Regards, -- Nicolas Goaziou 0x80A93738 From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 18 10:26:06 2017 Received: (at 28491) by debbugs.gnu.org; 18 Sep 2017 14:26:06 +0000 Received: from localhost ([127.0.0.1]:46529 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtwzt-0002m4-UL for submit@debbugs.gnu.org; Mon, 18 Sep 2017 10:26:06 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59980) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtwzp-0002lN-Kb for 28491@debbugs.gnu.org; Mon, 18 Sep 2017 10:26:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dtwzU-0007z8-3M for 28491@debbugs.gnu.org; Mon, 18 Sep 2017 10:25:46 -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.5 required=5.0 tests=BAYES_05,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:41761) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dtwzD-0007qz-SQ; Mon, 18 Sep 2017 10:25:23 -0400 Received: from mx.verum.com ([31.223.170.65]:57537 helo=dundal.peder.onsbrabantnet.nl) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dtwzD-0001lQ-Fs; Mon, 18 Sep 2017 10:25:23 -0400 From: Jan Nieuwenhuizen To: Nicolas Goaziou Subject: Re: [bug#28491] [PATCH] doc: Add "Sending a Patch Series" subsection. Organization: AvatarAcademy.nl References: <20170918092030.9691-1-janneke@gnu.org> <87h8w089a5.fsf@nicolasgoaziou.fr> X-Url: http://AvatarAcademy.nl Date: Mon, 18 Sep 2017 16:25:20 +0200 In-Reply-To: <87h8w089a5.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Mon, 18 Sep 2017 14:45:54 +0200") Message-ID: <87377k3wz3.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 28491 Cc: 28491@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: -5.0 (-----) --=-=-= Content-Type: text/plain Nicolas Goaziou writes: >> +the tracking number, @xref{Sending a Patch Series}. > > It should be @pxref. Thanks, changed both instances from @xref{} to (@pxref{..}), similar to other usage. Updated version attached Greetings, janneke --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-doc-Add-Sending-a-Patch-Series-subsection.patch Content-Transfer-Encoding: quoted-printable >From 12b798f59e7d1397e1581f52a5321d5880cb33c1 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 18 Sep 2017 11:12:43 +0200 Subject: [PATCH] doc: Add "Sending a Patch Series" subsection. MIME-Version: 1.0 Content-Type: text/plain; charset=3DUTF-8 Content-Transfer-Encoding: 8bit Searching for `git send-email' took you to the end of `Submitting Patches' section which said You may use your email client or the =E2=80=98git send-email=E2=80=99 co= mmand. without further warning or remark. * doc/contributing.texi (Sending a Patch Series): Move information about debbugs bug 15361 to subsection. Add git-send-email index entries. (Submitting Patches): Reference it. --- doc/contributing.texi | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/doc/contributing.texi b/doc/contributing.texi index 00edd4771..323b01628 100644 --- a/doc/contributing.texi +++ b/doc/contributing.texi @@ -298,11 +298,7 @@ This mailing list is backed by a Debbugs instance acce= ssible at of submissions. Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is -the tracking number. When sending a patch series, please first send one -message to @email{guix-patches@@gnu.org}, and then send subsequent -patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept -together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs -documentation}, for more information. +the tracking number (@pxref{Sending a Patch Series}). =20 Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for @@ -434,7 +430,22 @@ Please follow our code formatting rules, possibly runn= ing the =20 When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject. You may use your email client or the @command{git -send-email} command. We prefer to get patches in plain text messages, -either inline or as MIME attachments. You are advised to pay attention if -your email client changes anything like line breaks or indentation which -could potentially break the patches. +send-email} command (@pxref{Sending a Patch Series}). We prefer to get +patches in plain text messages, either inline or as MIME attachments. +You are advised to pay attention if your email client changes anything +like line breaks or indentation which could potentially break the +patches. + +@unnumberedsubsec Sending a Patch Series +@anchor{Sending a Patch Series} +@cindex patch series +@cindex @code{git send-email} +@cindex @code{git-send-email} + +When sending a patch series (e.g., using @code{git send-email}), please +first send one message to @email{guix-patches@@gnu.org}, and then send +subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure +they are kept together. See +@uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} +for more information. +@c Debbugs bug: https://debbugs.gnu.org/db/15/15361.html --=20 Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar=C2=AE http://AvatarAcademy.com --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable --=20 Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar=C2=AE http://AvatarAcademy.com --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 18 11:13:04 2017 Received: (at 28491) by debbugs.gnu.org; 18 Sep 2017 15:13:04 +0000 Received: from localhost ([127.0.0.1]:46573 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtxjM-0003u8-FE for submit@debbugs.gnu.org; Mon, 18 Sep 2017 11:13:04 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:39804) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtxjK-0003tF-Qg for 28491@debbugs.gnu.org; Mon, 18 Sep 2017 11:13:03 -0400 Received: from saiph.selenimh (000043010000000000000469.ipv6.commingeshautdebit.fr [IPv6:2a03:a0a0:0:4301::469]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id CAFBCA8125; Mon, 18 Sep 2017 17:13:00 +0200 (CEST) Received: from ngz by saiph.selenimh with local (Exim 4.89) (envelope-from ) id 1dtxjI-0003HI-7I; Mon, 18 Sep 2017 17:13:00 +0200 From: Nicolas Goaziou To: Jan Nieuwenhuizen Subject: Re: [bug#28491] [PATCH] doc: Add "Sending a Patch Series" subsection. In-Reply-To: <87377k3wz3.fsf@gnu.org> (Jan Nieuwenhuizen's message of "Mon, 18 Sep 2017 16:25:20 +0200") References: <20170918092030.9691-1-janneke@gnu.org> <87h8w089a5.fsf@nicolasgoaziou.fr> <87377k3wz3.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Date: Mon, 18 Sep 2017 17:13:00 +0200 Message-ID: <874ls0ca6b.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 28491 Cc: 28491@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.7 (/) Jan Nieuwenhuizen writes: > Thanks, changed both instances from @xref{} to (@pxref{..}), similar to > other usage. Looks good. @pxref after a comma was fine, too. > +When sending a patch series (e.g., using @code{git send-email}), please > +first send one message to @email{guix-patches@@gnu.org}, and then send > +subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure > +they are kept together. See > +@uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} > +for more information. > +@c Debbugs bug: https://debbugs.gnu.org/db/15/15361.html Would it make sense to recall the need to close the thread by answering to ? This information is surprisingly hard to find. Regards, From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 18 11:34:25 2017 Received: (at 28491) by debbugs.gnu.org; 18 Sep 2017 15:34:25 +0000 Received: from localhost ([127.0.0.1]:46622 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dty3w-0004TQ-MN for submit@debbugs.gnu.org; Mon, 18 Sep 2017 11:34:24 -0400 Received: from eggs.gnu.org ([208.118.235.92]:60195) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dty3u-0004TA-NA for 28491@debbugs.gnu.org; Mon, 18 Sep 2017 11:34:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dty3o-000110-Hi for 28491@debbugs.gnu.org; Mon, 18 Sep 2017 11:34:13 -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.0 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:44154) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dty3i-0000yM-5T; Mon, 18 Sep 2017 11:34:06 -0400 Received: from mx.verum.com ([31.223.170.65]:60220 helo=dundal.peder.onsbrabantnet.nl) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dty3h-0000No-MU; Mon, 18 Sep 2017 11:34:05 -0400 From: Jan Nieuwenhuizen To: Nicolas Goaziou Subject: Re: [bug#28491] [PATCH] doc: Add "Sending a Patch Series" subsection. Organization: AvatarAcademy.nl References: <20170918092030.9691-1-janneke@gnu.org> <87h8w089a5.fsf@nicolasgoaziou.fr> <87377k3wz3.fsf@gnu.org> <874ls0ca6b.fsf@nicolasgoaziou.fr> X-Url: http://AvatarAcademy.nl Date: Mon, 18 Sep 2017 17:34:03 +0200 In-Reply-To: <874ls0ca6b.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Mon, 18 Sep 2017 17:13:00 +0200") Message-ID: <87y3pc2f84.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 28491 Cc: 28491@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.0 (/) --=-=-= Content-Type: text/plain Nicolas Goaziou writes: > Looks good. @pxref after a comma was fine, too. Ok. > Would it make sense to recall the need to close the thread by answering > to ? This information is surprisingly > hard to find. Yes, I think so. Added as a second patch, how is this? Greeting, janneke --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0002-doc-Add-a-note-about-closing-bug-threads.patch Content-Transfer-Encoding: quoted-printable >From 73cb6cc69746c03efd5ea3c233a74717a6612534 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 18 Sep 2017 17:25:58 +0200 Subject: [PATCH 2/2] doc: Add a note about closing bug threads. * doc/contributing.texi (Submitting Patches): Add a note about closing bug threads by mailing to NNN-done@debbugs.gnu.org. Suggested-by: Nicolas Goaziou --- doc/contributing.texi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/contributing.texi b/doc/contributing.texi index 323b01628..1b1875fa0 100644 --- a/doc/contributing.texi +++ b/doc/contributing.texi @@ -436,6 +436,9 @@ You are advised to pay attention if your email client c= hanges anything like line breaks or indentation which could potentially break the patches. =20 +When a bug is resolved, please close the thread by sending an email to +@email{@var{NNN}-done@@debbugs.gnu.org}. + @unnumberedsubsec Sending a Patch Series @anchor{Sending a Patch Series} @cindex patch series --=20 Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar=C2=AE http://AvatarAcademy.com --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable --=20 Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar=C2=AE http://AvatarAcademy.com --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 18 12:04:08 2017 Received: (at 28491) by debbugs.gnu.org; 18 Sep 2017 16:04:08 +0000 Received: from localhost ([127.0.0.1]:46666 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtyWm-00075d-I2 for submit@debbugs.gnu.org; Mon, 18 Sep 2017 12:04:08 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:44747) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dtyWk-00075U-6t for 28491@debbugs.gnu.org; Mon, 18 Sep 2017 12:04:06 -0400 Received: from saiph.selenimh (000043010000000000000469.ipv6.commingeshautdebit.fr [IPv6:2a03:a0a0:0:4301::469]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 562A8A810E; Mon, 18 Sep 2017 18:04:04 +0200 (CEST) Received: from ngz by saiph.selenimh with local (Exim 4.89) (envelope-from ) id 1dtyWh-0003Ry-P8; Mon, 18 Sep 2017 18:04:03 +0200 From: Nicolas Goaziou To: Jan Nieuwenhuizen Subject: Re: [bug#28491] [PATCH] doc: Add "Sending a Patch Series" subsection. In-Reply-To: <87y3pc2f84.fsf@gnu.org> (Jan Nieuwenhuizen's message of "Mon, 18 Sep 2017 17:34:03 +0200") References: <20170918092030.9691-1-janneke@gnu.org> <87h8w089a5.fsf@nicolasgoaziou.fr> <87377k3wz3.fsf@gnu.org> <874ls0ca6b.fsf@nicolasgoaziou.fr> <87y3pc2f84.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Date: Mon, 18 Sep 2017 18:04:03 +0200 Message-ID: <87vakgat8s.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 28491 Cc: 28491@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.7 (/) Jan Nieuwenhuizen writes: > Nicolas Goaziou writes: > >> Would it make sense to recall the need to close the thread by answering >> to ? This information is surprisingly >> hard to find. > > Yes, I think so. Added as a second patch, how is this? [...] > * doc/contributing.texi (Submitting Patches): Add a note about closing bug > threads by mailing to NNN-done@debbugs.gnu.org. See, I got it backwards once again ;) AFAIC, this all looks good. Thank you. I'll let others comment about it. Regards, From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 19 06:17:19 2017 Received: (at 28491) by debbugs.gnu.org; 19 Sep 2017 10:17:19 +0000 Received: from localhost ([127.0.0.1]:47273 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1duFah-00041N-2a for submit@debbugs.gnu.org; Tue, 19 Sep 2017 06:17:19 -0400 Received: from eggs.gnu.org ([208.118.235.92]:51448) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1duFae-000419-Kh for 28491@debbugs.gnu.org; Tue, 19 Sep 2017 06:17:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1duFaU-00019c-Pl for 28491@debbugs.gnu.org; Tue, 19 Sep 2017 06:17:11 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:42459) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1duFaG-0000pa-SQ; Tue, 19 Sep 2017 06:16:52 -0400 Received: from [193.50.110.249] (port=37064 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1duFaG-0004hT-Et; Tue, 19 Sep 2017 06:16:52 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Nicolas Goaziou Subject: Re: [bug#28491] [PATCH] doc: Add "Sending a Patch Series" subsection. References: <20170918092030.9691-1-janneke@gnu.org> <87h8w089a5.fsf@nicolasgoaziou.fr> <87377k3wz3.fsf@gnu.org> <874ls0ca6b.fsf@nicolasgoaziou.fr> <87y3pc2f84.fsf@gnu.org> <87vakgat8s.fsf@nicolasgoaziou.fr> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: Jour du Travail de =?utf-8?Q?l'Ann=C3=A9e?= 225 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-unknown-linux-gnu Date: Tue, 19 Sep 2017 12:16:50 +0200 In-Reply-To: <87vakgat8s.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Mon, 18 Sep 2017 18:04:03 +0200") Message-ID: <87wp4v56y5.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 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: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 28491 Cc: 28491@debbugs.gnu.org, Jan Nieuwenhuizen 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: -5.0 (-----) Nicolas Goaziou skribis: > Jan Nieuwenhuizen writes: > >> Nicolas Goaziou writes: >> >>> Would it make sense to recall the need to close the thread by answering >>> to ? This information is surprisingly >>> hard to find. >> >> Yes, I think so. Added as a second patch, how is this? > > [...] > >> * doc/contributing.texi (Submitting Patches): Add a note about closing b= ug >> threads by mailing to NNN-done@debbugs.gnu.org. I=E2=80=99m fine with both patches, thank you! In the future, we should probably add a =E2=80=9CReviewing Patches=E2=80=9D= section as well. :-) Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 19 11:27:25 2017 Received: (at 28491-done) by debbugs.gnu.org; 19 Sep 2017 15:27:25 +0000 Received: from localhost ([127.0.0.1]:48400 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1duKQm-00051f-Vr for submit@debbugs.gnu.org; Tue, 19 Sep 2017 11:27:25 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47947) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1duKQl-00051R-IA for 28491-done@debbugs.gnu.org; Tue, 19 Sep 2017 11:27:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1duKQX-0004pJ-1x for 28491-done@debbugs.gnu.org; Tue, 19 Sep 2017 11:27:18 -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.0 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:33609) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1duKQI-0004e0-UC; Tue, 19 Sep 2017 11:26:54 -0400 Received: from mx.verum.com ([31.223.170.65]:7334 helo=dundal.peder.onsbrabantnet.nl) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1duKQI-0003Sa-Eo; Tue, 19 Sep 2017 11:26:54 -0400 From: Jan Nieuwenhuizen To: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [bug#28491] [PATCH] doc: Add "Sending a Patch Series" subsection. Organization: AvatarAcademy.nl References: <20170918092030.9691-1-janneke@gnu.org> <87h8w089a5.fsf@nicolasgoaziou.fr> <87377k3wz3.fsf@gnu.org> <874ls0ca6b.fsf@nicolasgoaziou.fr> <87y3pc2f84.fsf@gnu.org> <87vakgat8s.fsf@nicolasgoaziou.fr> <87wp4v56y5.fsf@gnu.org> X-Url: http://AvatarAcademy.nl Date: Tue, 19 Sep 2017 17:26:51 +0200 In-Reply-To: <87wp4v56y5.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Tue, 19 Sep 2017 12:16:50 +0200") Message-ID: <87wp4u1zgk.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 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: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 28491-done Cc: 28491-done@debbugs.gnu.org, Nicolas Goaziou 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: -5.0 (-----) Ludovic Court=C3=A8s writes: >>> * doc/contributing.texi (Submitting Patches): Add a note about closing = bug >>> threads by mailing to NNN-done@debbugs.gnu.org. > > I=E2=80=99m fine with both patches, thank you! Thanks, pushed to master as 4619b59cb49c5356eaea4650dee3d4de929e082a > In the future, we should probably add a =E2=80=9CReviewing Patches=E2=80= =9D section as > well. :-) Yes...that should be easy to review ;-) janneke --=20 Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar=C2=AE http://AvatarAcademy.com From unknown Sat Aug 16 22:47:56 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 18 Oct 2017 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