summaryrefslogtreecommitdiff
path: root/update-copyright.sh
diff options
context:
space:
mode:
authorBertrand Garrigues <bertrand.garrigues@laposte.net>2020-11-11 01:58:55 +0100
committerBertrand Garrigues <bertrand.garrigues@laposte.net>2020-11-11 23:08:05 +0100
commitc05b538c504106d55b81caa6400ea80797f03775 (patch)
treea4e0da3e80d40367df50a8b41f44b4d5010a5120 /update-copyright.sh
parent10cd0b662256d6fd2b6ed204f0ce891c8fc1175d (diff)
downloadgroff-git-c05b538c504106d55b81caa6400ea80797f03775.tar.gz
Update copyright1.23.0.rc1
* update-copyright.sh: use gnulib's 'update-copyright' script. Pass this script in directories 'arch', 'contrib', 'font', 'man', 'tmac', 'src' and on a list of extra files. * FOR-RELEASE: mention this point.
Diffstat (limited to 'update-copyright.sh')
-rwxr-xr-xupdate-copyright.sh40
1 files changed, 40 insertions, 0 deletions
diff --git a/update-copyright.sh b/update-copyright.sh
new file mode 100755
index 000000000..962835d58
--- /dev/null
+++ b/update-copyright.sh
@@ -0,0 +1,40 @@
+#!/bin/sh
+
+export UPDATE_COPYRIGHT_USE_INTERVALS=2
+find arch contrib font man tmac src \
+ ! -name .gitignore \
+ -type f | xargs ./gnulib/build-aux/update-copyright -
+
+extra_files="
+acinclude.m4
+bootstrap.conf
+configure.ac
+gendef.sh
+mdate.pl
+test-groff.in
+BUG-REPORT
+Changelog
+FOR-RELEASE
+INSTALL.REPO
+INSTALL.extra
+LICENSES
+MANIFEST
+MORE.STUFF
+Makefile.am
+NEWS
+PROBLEMS
+PROJECTS
+README
+README.MinGW
+TODO
+doc/automake.mom
+doc/doc.am
+doc/groff.texi
+doc/meref.me
+doc/pic.ms
+m4/groff.m4
+m4/localcharset.m4
+"
+for k in $extra_files; do
+ ./gnulib/build-aux/update-copyright $k
+done