[bug#76601,v3] dir-locals: Add copyrights.

Message ID c09948fb31fb22b51eb4b7aa52b613e18fce65a9.1742340462.git.GNUtoo@cyberdimension.org
State New
Headers
Series [bug#76601,v3] dir-locals: Add copyrights. |

Commit Message

Denis 'GNUtoo' Carikli March 18, 2025, 11:55 p.m. UTC
  * .dir-locals.el: Add copyrights.

The list was first generated in this way:
- I started with "git log --pretty='format:%h %ad %an <%ae>' origin/master \
  --date="format:%Y" -- .dir-locals.el".
- I took the name at the bottom and do a grep with it like that: "git log \
  --pretty='format:%h %ad %an <%ae>' origin/master --date="format:%Y" -- \
  .dir-locals.el | grep 'Ludovic Courtès'"
- I then filled in the copyright for that name
- I then repeat the first command with grep -v instead, like that:
  "git log --pretty='format:%h %ad %an <%ae>' origin/master \
   --date="format:%Y" -- .dir-locals.el | grep -v 'Ludovic Courtès'"

I also used "git log --pretty='format:%h %ad %an <%ae>' origin/master \
--date="format:%Y" --merges -- .dir-locals.el" to verify which commits I
should not take into account, when they didn't modify .dir-locals.el (I
checked that with git show <hash>).

For updating the names and/or email addresses being used I used git log
--author with either part of the name or the email (though it is easy to miss
things with this approach).

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: I010f1e5e3afc8b646da39dc6341f7870f0c9bf45
---
ChangeLog v2->v3:
=================
* Fixed "unmatched-parenthesis"'s name.
* Added "David Elsing" who was missing.
* Documented better my process for comming up
  with the name list inside the commit message.

ChangeLog v1->v2:
=================
* Fixed the command in the commit log (it didn't list all the commits).
* Added missing Copyrights (Tomas Volf, Nicolas Graves, and 2025 for Maxim
  Cournoyer). Thanks to Tomas Volf who found the issue.
---
 .dir-locals.el | 35 ++++++++++++++++++++++++++++++++++-
 1 file changed, 34 insertions(+), 1 deletion(-)


base-commit: fa39695bbc0c5f79838cbca55d55eebd821a8efa
  

Comments

Tomas Volf March 19, 2025, 4:42 p.m. UTC | #1
Reviewed-by: Tomas Volf <~@wolfsden.cz>
  

Patch

diff --git a/.dir-locals.el b/.dir-locals.el
index 76c9e12992..69a5d8065e 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,5 +1,38 @@ 
-;; Per-directory local variables for GNU Emacs 23 and later.
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2012-2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2013,2014 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2014 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
+;;; Copyright © 2017 Alex Kost <alezost@gmail.com>
+;;; Copyright © 2018-2020 Caleb Ristvedt <caleb.ristvedt@cune.org>
+;;; Copyright © 2020-2023,2025 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2020 Miguel Ángel Arruga Vivas <rosen644835@gmail.com>
+;;; Copyright © 2020 Christine Lemmer-Webber <cwebber@dustycloud.org>
+;;; Copyright © 2022 Liliana Marie Prikler <liliana.prikler@gmail.com>
+;;; Copyright © 2022 Andrew Tropin <andrew@trop.in>
+;;; Copyright © 2022 Brian Cully <bjc@kublai.com>
+;;; Copyright © 2023 (unmatched-parenthesis <paren@disroot.org>
+;;; Copyright © 2024 Christopher Baines <mail@cbaines.net>
+;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
+;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr>
+;;; Copyright © 2025 David Elsing <david.elsing@posteo.net>
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
+;; Per-directory local variables for GNU Emacs 23 and later.
 ((nil
   . ((fill-column . 78)
      (tab-width   .  8)