]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add steps to update copyrights
authorMatthijs Mekking <matthijs@isc.org>
Wed, 2 Jun 2021 13:42:29 +0000 (15:42 +0200)
committerOndřej Surý <ondrej@sury.org>
Thu, 24 Jun 2021 09:14:27 +0000 (11:14 +0200)
This was written down in the outdated doc/dev/release documentation.
Since the rest of that file can go, add these steps to a separate file
and update it to current standards (e.g. use git commands).

doc/dev/copyrights [new file with mode: 0644]

diff --git a/doc/dev/copyrights b/doc/dev/copyrights
new file mode 100644 (file)
index 0000000..bd93c91
--- /dev/null
@@ -0,0 +1,16 @@
+#
+# Merge and Update copyrights
+#
+
+git clean -dfx
+perl util/merge_copyrights
+diff util/copyrights util/newcopyrights
+... examine output, particularly any files with the "?" type, and
+... then edit util/newcopyrights if necessary
+$ mv util/newcopyrights util/copyrights
+$ perl util/update_copyrights < util/copyrights
+$ git diff
+... examine output, edit as necessary.  mail me about anything that
+... the script should have been able to do itself. :-)
+$ git add util/copyrights
+$ git commit -m 'update_copyrights'