GNU bug report logs -
#72809
ms-windows: Copyright embedded into executable is outdated
Previous Next
Reported by: Cecilio Pardo <cpardo <at> imayhem.com>
Date: Sun, 25 Aug 2024 19:40:02 UTC
Severity: normal
Fixed in version 30.1
Done: Stefan Kangas <stefankangas <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Eli Zaretskii <eliz <at> gnu.org> writes:
> Stefan, what are your thoughts about improving the script? Do you
> understand why these files were missed?
The simple reason is that the Gnulib `build-aux/update-copyright` script
don't support them, so we need to remember to update them manually.
As for why this is, the cases are different.
1. There's more than one copyright year in these files:
configure.ac
doc/lispref/tips.texi
etc/images/gud/README
However, the Gnulib script only updates the first copyright year.
2. For these files:
nt/emacs.rc.in
nt/emacsclient.rc.in
the Gnulib script does not support making this update:
- VALUE "LegalCopyright", "Copyright (C) 2001-2021\0"
+ VALUE "LegalCopyright", "Copyright (C) 2001-2024\0"
3. This file:
test/lisp/which-key-tests.el
was added with the wrong copyright in 2024.
There are even more edge cases, see for example commit 33d159c36f42.
I'm not sure if it's worth updating our script to support all this.
It's not too hard to remember to grep for "202[0-9]" and updating them
manually. Writing code to do this has a maintenance cost too, and also
runs a risk of missing some years. Files change, new files are added,
etc. So there's no way around grepping to make sure, I think.
Thus, perhaps we should just do this:
diff --git a/admin/update-copyright b/admin/update-copyright
index b9007100b35..23b78443ca4 100755
--- a/admin/update-copyright
+++ b/admin/update-copyright
@@ -77,3 +77,6 @@ updatable_files=
-print) &&
build-aux/update-copyright $updatable_files
+
+printf "!! Please remember to grep for and manually update any"
+printf "!! copyright years that were not updated by this script."
This bug report was last modified 250 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.