2015-04-07 07:00:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Convert git log output to ChangeLog format for GNU Emacs.
|
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
# Copyright (C) 2014-2017 Free Software Foundation, Inc.
|
2015-04-07 07:00:55 +00:00
|
|
|
|
2015-04-24 18:34:37 +00:00
|
|
|
# Author: Paul Eggert
|
|
|
|
|
2015-04-07 07:00:55 +00:00
|
|
|
# This program 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.
|
|
|
|
|
|
|
|
# This program 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
|
2017-09-13 22:52:52 +00:00
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2015-04-07 07:00:55 +00:00
|
|
|
|
|
|
|
LC_ALL=C
|
|
|
|
export LC_ALL
|
|
|
|
|
2015-05-07 01:58:58 +00:00
|
|
|
# The newest revision that should not appear in the generated ChangeLog.
|
2015-06-07 22:40:10 +00:00
|
|
|
gen_origin=
|
|
|
|
|
2015-05-09 00:45:22 +00:00
|
|
|
force=
|
|
|
|
output=ChangeLog
|
2015-05-09 01:02:36 +00:00
|
|
|
nmax=2
|
2015-05-09 00:45:22 +00:00
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
|
|
|
-g|--gen-origin) gen_origin="$2" ; shift ;;
|
|
|
|
-f|--force) force=1 ;;
|
2015-05-09 01:02:36 +00:00
|
|
|
-n|--nmax) nmax="$2"; shift ;;
|
2015-05-09 00:45:22 +00:00
|
|
|
-o|--output) output="$2" ; shift ;;
|
Use ‘echo’ safely with ‘\’ or leading ‘-’
POSIX says that ‘echo FOO’ produces implementation-defined output
if FOO contains leading ‘-’, or ‘\’ anywhere, so don’t assume GNU
behavior in that case.
* Makefile.in (removenullpaths): Remove.
(epaths-force): Rewrite to avoid the need for ‘echo’.
(install-etc): Be clearer about escaping the shell metacharacters
‘\’ and ‘$’.
* Makefile.in (install-arch-indep, install-etcdoc):
* admin/charsets/mapconv, admin/merge-gnulib, admin/merge-pkg-config:
* admin/quick-install-emacs, build-aux/gitlog-to-emacslog:
* configure.ac, lib-src/rcs2log, make-dist:
* src/Makefile.in (lisp.mk):
Don’t assume ‘echo’ outputs ‘\’ and leading ‘-’ unscathed.
For example, use ‘printf '%s\n' "$foo"’ rather than ‘echo "$foo"’
if $foo can contain arbitrary characters.
* lisp/Makefile.in (TAGS): Use ‘ls’, not ‘echo’, to avoid ‘\’ issues.
* doc/lispref/two-volume.make (vol1.pdf):
* test/etags/make-src/Makefile (web ftp publish):
Use ‘printf’ rather than ‘echo -e’.
2015-10-11 01:03:49 +00:00
|
|
|
*) printf '%s\n' "Unrecognized argument: $1" >&2; exit 1 ;;
|
2015-05-09 00:45:22 +00:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2015-05-09 01:34:35 +00:00
|
|
|
if [ ! -f ChangeLog.$nmax ]; then
|
Use ‘echo’ safely with ‘\’ or leading ‘-’
POSIX says that ‘echo FOO’ produces implementation-defined output
if FOO contains leading ‘-’, or ‘\’ anywhere, so don’t assume GNU
behavior in that case.
* Makefile.in (removenullpaths): Remove.
(epaths-force): Rewrite to avoid the need for ‘echo’.
(install-etc): Be clearer about escaping the shell metacharacters
‘\’ and ‘$’.
* Makefile.in (install-arch-indep, install-etcdoc):
* admin/charsets/mapconv, admin/merge-gnulib, admin/merge-pkg-config:
* admin/quick-install-emacs, build-aux/gitlog-to-emacslog:
* configure.ac, lib-src/rcs2log, make-dist:
* src/Makefile.in (lisp.mk):
Don’t assume ‘echo’ outputs ‘\’ and leading ‘-’ unscathed.
For example, use ‘printf '%s\n' "$foo"’ rather than ‘echo "$foo"’
if $foo can contain arbitrary characters.
* lisp/Makefile.in (TAGS): Use ‘ls’, not ‘echo’, to avoid ‘\’ issues.
* doc/lispref/two-volume.make (vol1.pdf):
* test/etags/make-src/Makefile (web ftp publish):
Use ‘printf’ rather than ‘echo -e’.
2015-10-11 01:03:49 +00:00
|
|
|
printf '%s\n' "Can't find ChangeLog.$nmax" >&2
|
|
|
|
printf '%s\n' "Must be run from the top source directory" >&2
|
2015-05-09 01:34:35 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-06-07 22:40:10 +00:00
|
|
|
# If not specified in the command line, get gen_origin from the existing
|
|
|
|
# ChangeLog file.
|
|
|
|
[ "$gen_origin" ] || {
|
|
|
|
gen_origin_line=`
|
|
|
|
grep -E '^commit [0-9a-f]+ [(]inclusive[)]' ChangeLog.$nmax
|
|
|
|
` || {
|
Use ‘echo’ safely with ‘\’ or leading ‘-’
POSIX says that ‘echo FOO’ produces implementation-defined output
if FOO contains leading ‘-’, or ‘\’ anywhere, so don’t assume GNU
behavior in that case.
* Makefile.in (removenullpaths): Remove.
(epaths-force): Rewrite to avoid the need for ‘echo’.
(install-etc): Be clearer about escaping the shell metacharacters
‘\’ and ‘$’.
* Makefile.in (install-arch-indep, install-etcdoc):
* admin/charsets/mapconv, admin/merge-gnulib, admin/merge-pkg-config:
* admin/quick-install-emacs, build-aux/gitlog-to-emacslog:
* configure.ac, lib-src/rcs2log, make-dist:
* src/Makefile.in (lisp.mk):
Don’t assume ‘echo’ outputs ‘\’ and leading ‘-’ unscathed.
For example, use ‘printf '%s\n' "$foo"’ rather than ‘echo "$foo"’
if $foo can contain arbitrary characters.
* lisp/Makefile.in (TAGS): Use ‘ls’, not ‘echo’, to avoid ‘\’ issues.
* doc/lispref/two-volume.make (vol1.pdf):
* test/etags/make-src/Makefile (web ftp publish):
Use ‘printf’ rather than ‘echo -e’.
2015-10-11 01:03:49 +00:00
|
|
|
printf '%s\n' "ChangeLog.$nmax lacks a 'commit ... (inclusive)' line" >&2
|
2015-06-07 22:40:10 +00:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
set $gen_origin_line
|
|
|
|
gen_origin=$2
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get the new value for gen_origin from the latest version in the repository.
|
|
|
|
new_origin=`git log --pretty=format:%H 'HEAD^!'` || exit
|
|
|
|
|
2015-05-09 01:15:48 +00:00
|
|
|
if [ -f "$output" ]; then
|
Use ‘echo’ safely with ‘\’ or leading ‘-’
POSIX says that ‘echo FOO’ produces implementation-defined output
if FOO contains leading ‘-’, or ‘\’ anywhere, so don’t assume GNU
behavior in that case.
* Makefile.in (removenullpaths): Remove.
(epaths-force): Rewrite to avoid the need for ‘echo’.
(install-etc): Be clearer about escaping the shell metacharacters
‘\’ and ‘$’.
* Makefile.in (install-arch-indep, install-etcdoc):
* admin/charsets/mapconv, admin/merge-gnulib, admin/merge-pkg-config:
* admin/quick-install-emacs, build-aux/gitlog-to-emacslog:
* configure.ac, lib-src/rcs2log, make-dist:
* src/Makefile.in (lisp.mk):
Don’t assume ‘echo’ outputs ‘\’ and leading ‘-’ unscathed.
For example, use ‘printf '%s\n' "$foo"’ rather than ‘echo "$foo"’
if $foo can contain arbitrary characters.
* lisp/Makefile.in (TAGS): Use ‘ls’, not ‘echo’, to avoid ‘\’ issues.
* doc/lispref/two-volume.make (vol1.pdf):
* test/etags/make-src/Makefile (web ftp publish):
Use ‘printf’ rather than ‘echo -e’.
2015-10-11 01:03:49 +00:00
|
|
|
[ ! "$force" ] && printf '%s\n' "$output exists" >&2 && exit 1
|
2015-05-09 01:15:48 +00:00
|
|
|
rm -f "$output" || exit 1
|
2015-05-09 00:45:22 +00:00
|
|
|
fi
|
2015-04-07 07:00:55 +00:00
|
|
|
|
|
|
|
# If this is not a Git repository, just generate an empty ChangeLog.
|
2017-08-21 22:34:07 +00:00
|
|
|
test -r .git || {
|
2015-05-09 01:15:48 +00:00
|
|
|
>"$output"
|
2015-04-07 07:00:55 +00:00
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
|
|
|
# Use Gnulib's packaged ChangeLog generator.
|
2015-06-11 01:37:06 +00:00
|
|
|
# Maybe we should skip all "Merge branch 'master'" messages.
|
|
|
|
# See eg the cairo-related ones.
|
|
|
|
./build-aux/gitlog-to-changelog \
|
2016-03-23 21:49:26 +00:00
|
|
|
--ignore-matching="^; |^Merge branch '[^']*' of git\.(savannah|sv)\.gnu\.org:/srv/git/emacs|^Merge remote-tracking branch '.*'$" \
|
2015-05-19 01:41:03 +00:00
|
|
|
--ignore-line='^; ' --format='%B' \
|
2015-06-07 22:40:10 +00:00
|
|
|
"$gen_origin..$new_origin" >"ChangeLog.tmp" || exit
|
2015-04-07 07:00:55 +00:00
|
|
|
|
2017-08-21 22:34:07 +00:00
|
|
|
if test -r "ChangeLog.tmp"; then
|
2015-04-07 07:00:55 +00:00
|
|
|
|
2015-04-24 18:34:37 +00:00
|
|
|
# Fix up bug references.
|
|
|
|
# This would be better as eg a --transform option to gitlog-to-changelog,
|
|
|
|
# but... effort. FIXME does not handle rare cases like:
|
|
|
|
# Fixes: debbugs:19434 debbugs:19519
|
|
|
|
sed 's/ Fixes: \(debbugs:\|bug#\)\([0-9][0-9]*\)/ (Bug#\2)/' \
|
2015-05-09 01:15:48 +00:00
|
|
|
"ChangeLog.tmp" > "ChangeLog.tmp2"
|
|
|
|
mv "ChangeLog.tmp2" "ChangeLog.tmp"
|
2015-04-24 18:34:37 +00:00
|
|
|
|
2015-04-07 07:00:55 +00:00
|
|
|
# Find the years covered by the generated ChangeLog, so that
|
|
|
|
# a proper copyright notice can be output.
|
|
|
|
years=`
|
2015-05-09 01:15:48 +00:00
|
|
|
sed -n 's/^\([0-9][0-9]*\).*/\1/p' "ChangeLog.tmp" |
|
2015-04-07 07:00:55 +00:00
|
|
|
sort -nu
|
|
|
|
`
|
|
|
|
start_year=
|
|
|
|
end_year=
|
2016-05-25 18:35:44 +00:00
|
|
|
for year in ${years:-`date +%Y`}; do
|
2015-04-07 07:00:55 +00:00
|
|
|
: ${start_year:=$year}
|
|
|
|
end_year=$year
|
|
|
|
done
|
|
|
|
|
|
|
|
if test "$start_year" = "$end_year"; then
|
|
|
|
year_range=$start_year
|
|
|
|
else
|
|
|
|
year_range=$start_year-$end_year
|
|
|
|
fi
|
|
|
|
|
2016-05-25 18:35:44 +00:00
|
|
|
# Update gen_origin
|
|
|
|
if test "$gen_origin" != "$new_origin"; then
|
|
|
|
sed -n '
|
|
|
|
1i\
|
|
|
|
|
|
|
|
/^This file records repository revisions/p
|
|
|
|
s/^commit [0-9a-f]* (exclusive)/commit '"$gen_origin"' (exclusive)/p
|
|
|
|
s/^commit [0-9a-f]* (inclusive)/commit '"$new_origin"' (inclusive)/p
|
|
|
|
' <ChangeLog.$nmax >>"ChangeLog.tmp" || exit
|
|
|
|
fi
|
2015-04-09 16:50:48 +00:00
|
|
|
|
2016-05-25 18:35:44 +00:00
|
|
|
# Append a proper copyright notice.
|
|
|
|
sed -n '
|
2015-05-09 01:02:36 +00:00
|
|
|
/^See ChangeLog.[0-9]* for earlier/,${
|
|
|
|
s/ChangeLog\.[0-9]*/ChangeLog.'$nmax'/
|
2015-04-09 16:50:48 +00:00
|
|
|
s/\(Copyright[ (C)]*\)[0-9]*-[0-9]*/\1'"$year_range"'/
|
|
|
|
p
|
|
|
|
}
|
2015-05-09 01:15:48 +00:00
|
|
|
' <ChangeLog.$nmax >>"ChangeLog.tmp" || exit
|
2015-04-07 07:00:55 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Install the generated ChangeLog.
|
2015-05-09 01:15:48 +00:00
|
|
|
test "$output" = "ChangeLog.tmp" || mv "ChangeLog.tmp" "$output"
|