From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:47038) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1imz1H-0000Lb-Q3 for guix-patches@gnu.org; Thu, 02 Jan 2020 06:52:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1imz1G-0006Z6-Gq for guix-patches@gnu.org; Thu, 02 Jan 2020 06:52:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60594) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1imz1G-0006Yw-DI for guix-patches@gnu.org; Thu, 02 Jan 2020 06:52:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1imz1G-0000UH-BR for guix-patches@gnu.org; Thu, 02 Jan 2020 06:52:02 -0500 Subject: [bug#38846] [PATCH 1/4] doc: Add "Tracking Bugs and Patches" section. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20200101162945.4946-1-ludo@gnu.org> <20200101163446.5132-1-ludo@gnu.org> Date: Thu, 02 Jan 2020 12:51:10 +0100 In-Reply-To: (zimoun's message of "Wed, 1 Jan 2020 19:18:38 +0100") Message-ID: <8736cyvzyp.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: zimoun Cc: 38846@debbugs.gnu.org Hi Simon, zimoun skribis: > On Wed, 1 Jan 2020 at 17:36, Ludovic Court=C3=A8s wrote: >> >> * doc/contributing.texi (Tracking Bugs and Patches): New section. >> (Submitting Patches): Refer to it. >> * doc/guix.texi: Update copyright line. >> * HACKING (Using emacs-debbugs): Remove. >> --- >> HACKING | 11 +------- >> doc/contributing.texi | 62 ++++++++++++++++++++++++++++++++++++++----- >> doc/guix.texi | 2 +- >> 3 files changed, 58 insertions(+), 17 deletions(-) >> >> diff --git a/HACKING b/HACKING >> index 2f0f93f896..eeea2f6311 100644 >> --- a/HACKING >> +++ b/HACKING >> @@ -2,7 +2,7 @@ >> >> #+TITLE: Hacking GNU Guix and Its Incredible Distro >> >> -Copyright =C2=A9 2012, 2013, 2014, 2016, 2017, 2019 Ludovic Court=C3=A8= s >> +Copyright =C2=A9 2012, 2013, 2014, 2016, 2017, 2019, 2020 Ludovic Court= =C3=A8s >> Copyright =C2=A9 2015, 2017 Mathieu Lirzin >> Copyright =C2=A9 2017 Leo Famulari >> Copyright =C2=A9 2017 Arun Isaac >> @@ -63,12 +63,3 @@ after two weeks, and if you=E2=80=99re confident, it= =E2=80=99s OK to commit. >> >> That last part is subject to being adjusted, allowing individuals to co= mmit >> directly on non-controversial changes on parts they=E2=80=99re familiar= with. >> - >> -* Using emacs-debbugs >> - >> -Bug reports and patches are tracked using debbugs. If you are on emacs,= you >> -can use emacs-debbugs. >> - >> -List all open bug reports on guix-patches with >> - >> -C-u M-x debbugs-gnu guix-patches n y > > I thought the policy about copyright was when adding/changing lines, > not when removing them. > > https://lists.gnu.org/archive/html/guix-devel/2019-10/msg00473.html > > Maybe I miss something. > Just to notice. Ah well, I have (add-hook 'write-file-functions 'copyright-update), which took care of it. :-) Some projects (such as Gnulib) automatically update copyright years each 1st of January, so there are different practices. But anyway, you=E2=80=99= re right that it=E2=80=99s a bit odd to add a new year here, I=E2=80=99ll remo= ve it. Thanks, Ludo=E2=80=99.