mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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 <mail@cbaines.net>
This commit is contained in:
parent
81a8bcf91c
commit
db523cfaa8
1 changed files with 34 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue