cbaines pushed a commit to branch master
in repository guix.

commit db523cfaa834ac9778f436e7f94647508733c0a1
Author: Denis 'GNUtoo' Carikli <gnu...@cyberdimension.org>
AuthorDate: Wed Mar 19 00:55:22 2025 +0100

    dir-locals: 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).
    
    * .dir-locals.el: Add copyrights.
    
    Change-Id: I010f1e5e3afc8b646da39dc6341f7870f0c9bf45
    Reviewed-by: Tomas Volf <~@wolfsden.cz>
    Signed-off-by: Christopher Baines <m...@cbaines.net>
---
 .dir-locals.el | 35 ++++++++++++++++++++++++++++++++++-
 1 file changed, 34 insertions(+), 1 deletion(-)

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 <l...@gnu.org>
+;;; Copyright © 2013,2014 Mark H Weaver <m...@netris.org>
+;;; Copyright © 2014 Taylan Ulrich Bayırlı/Kammer <taylanbayi...@gmail.com>
+;;; Copyright © 2015 David Thompson <da...@gnu.org>
+;;; Copyright © 2016 Hartmut Goebel <h.goe...@crazy-compilers.com>
+;;; Copyright © 2017 Alex Kost <alez...@gmail.com>
+;;; Copyright © 2018-2020 Caleb Ristvedt <caleb.ristv...@cune.org>
+;;; Copyright © 2020-2023,2025 Maxim Cournoyer <maxim.courno...@gmail.com>
+;;; Copyright © 2020 Miguel Ángel Arruga Vivas <rosen644...@gmail.com>
+;;; Copyright © 2020 Christine Lemmer-Webber <cweb...@dustycloud.org>
+;;; Copyright © 2022 Liliana Marie Prikler <liliana.prik...@gmail.com>
+;;; Copyright © 2022 Andrew Tropin <and...@trop.in>
+;;; Copyright © 2022 Brian Cully <b...@kublai.com>
+;;; Copyright © 2023 (unmatched-parenthesis <pa...@disroot.org>
+;;; Copyright © 2024 Christopher Baines <m...@cbaines.net>
+;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
+;;; Copyright © 2024 Nicolas Graves <ngra...@ngraves.fr>
+;;; Copyright © 2025 David Elsing <david.els...@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)

Reply via email to