1995-07-07 22:47:57 +00:00
|
|
|
#! /bin/sh
|
1992-02-03 03:20:43 +00:00
|
|
|
|
|
|
|
# RCS to ChangeLog generator
|
|
|
|
|
1993-09-24 01:03:32 +00:00
|
|
|
# Generate a change log prefix from RCS files and the ChangeLog (if any).
|
1992-02-03 03:20:43 +00:00
|
|
|
# Output the new prefix to standard output.
|
|
|
|
# You can edit this prefix by hand, and then prepend it to ChangeLog.
|
|
|
|
|
1992-05-08 21:45:00 +00:00
|
|
|
# Ignore log entries that start with `#'.
|
|
|
|
# Clump together log entries that start with `{topic} ',
|
|
|
|
# where `topic' contains neither white space nor `}'.
|
1992-02-03 03:20:43 +00:00
|
|
|
|
1993-01-15 05:33:29 +00:00
|
|
|
# Author: Paul Eggert <eggert@twinsun.com>
|
|
|
|
|
1996-11-03 17:09:27 +00:00
|
|
|
# $Id: rcs2log,v 1.34 1996/10/13 05:59:42 eggert Exp eggert $
|
1993-01-15 05:33:29 +00:00
|
|
|
|
1996-01-15 01:17:56 +00:00
|
|
|
# Copyright 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
|
1993-01-15 05:33:29 +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 2, or (at your option)
|
|
|
|
# any later version.
|
1996-08-24 21:11:14 +00:00
|
|
|
#
|
1993-01-15 05:33:29 +00:00
|
|
|
# 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.
|
1996-08-24 21:11:14 +00:00
|
|
|
#
|
1993-01-15 05:33:29 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
1996-08-26 21:20:48 +00:00
|
|
|
# along with this program; see the file COPYING. If not, write to the
|
1996-07-20 18:10:35 +00:00
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
1993-01-15 05:33:29 +00:00
|
|
|
|
1995-03-21 05:37:42 +00:00
|
|
|
tab=' '
|
1993-05-29 06:22:48 +00:00
|
|
|
nl='
|
|
|
|
'
|
1993-01-15 05:33:29 +00:00
|
|
|
|
1992-02-05 04:31:18 +00:00
|
|
|
# Parse options.
|
|
|
|
|
|
|
|
# defaults
|
1995-03-21 05:37:42 +00:00
|
|
|
: ${AWK=awk}
|
1993-09-24 01:03:32 +00:00
|
|
|
: ${TMPDIR=/tmp}
|
1996-08-24 21:11:14 +00:00
|
|
|
changelog=ChangeLog # change log file name
|
|
|
|
datearg= # rlog date option
|
1993-09-24 01:03:32 +00:00
|
|
|
hostname= # name of local host (if empty, will deduce it later)
|
1992-02-05 04:31:18 +00:00
|
|
|
indent=8 # indent of log line
|
|
|
|
length=79 # suggested max width of log line
|
1995-04-30 15:34:52 +00:00
|
|
|
logins= # login names for people we know fullnames and mailaddrs of
|
1995-03-21 05:37:42 +00:00
|
|
|
loginFullnameMailaddrs= # login<tab>fullname<tab>mailaddr triplets
|
1996-08-24 21:11:14 +00:00
|
|
|
logTZ= # time zone for log dates (if empty, use local time)
|
1995-03-21 05:37:42 +00:00
|
|
|
recursive= # t if we want recursive rlog
|
1996-08-24 21:11:14 +00:00
|
|
|
revision= # t if we want revision numbers
|
1993-09-24 01:03:32 +00:00
|
|
|
rlog_options= # options to pass to rlog
|
1992-02-05 04:31:18 +00:00
|
|
|
tabwidth=8 # width of horizontal tab
|
|
|
|
|
|
|
|
while :
|
|
|
|
do
|
|
|
|
case $1 in
|
1996-08-24 21:11:14 +00:00
|
|
|
-c) changelog=${2?}; shift;;
|
1995-03-21 05:37:42 +00:00
|
|
|
-i) indent=${2?}; shift;;
|
|
|
|
-h) hostname=${2?}; shift;;
|
|
|
|
-l) length=${2?}; shift;;
|
|
|
|
-[nu]) # -n is obsolescent; it is replaced by -u.
|
|
|
|
case $1 in
|
|
|
|
-n) case ${2?}${3?}${4?} in
|
|
|
|
*"$tab"* | *"$nl"*)
|
|
|
|
echo >&2 "$0: -n '$2' '$3' '$4': tabs, newlines not allowed"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
loginFullnameMailaddrs=$loginFullnameMailaddrs$nl$2$tab$3$tab$4
|
|
|
|
shift; shift; shift;;
|
|
|
|
-u)
|
1995-03-21 23:14:41 +00:00
|
|
|
# If $2 is not tab-separated, use colon for separator.
|
1995-03-21 05:37:42 +00:00
|
|
|
case ${2?} in
|
|
|
|
*"$nl"*)
|
|
|
|
echo >&2 "$0: -u '$2': newlines not allowed"
|
|
|
|
exit 1;;
|
1995-03-21 23:14:41 +00:00
|
|
|
*"$tab"*)
|
|
|
|
t=$tab;;
|
|
|
|
*)
|
|
|
|
t=:
|
|
|
|
esac
|
|
|
|
case $2 in
|
|
|
|
*"$t"*"$t"*"$t"*)
|
1995-03-21 05:37:42 +00:00
|
|
|
echo >&2 "$0: -u '$2': too many fields"
|
|
|
|
exit 1;;
|
1995-03-21 23:14:41 +00:00
|
|
|
*"$t"*"$t"*)
|
1995-03-21 05:37:42 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo >&2 "$0: -u '$2': not enough fields"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
loginFullnameMailaddrs=$loginFullnameMailaddrs$nl$2
|
|
|
|
shift
|
1993-09-24 01:03:32 +00:00
|
|
|
esac
|
1995-03-21 05:37:42 +00:00
|
|
|
logins=$logins$nl$login
|
|
|
|
;;
|
|
|
|
-r) rlog_options=$rlog_options$nl${2?}; shift;;
|
|
|
|
-R) recursive=t;;
|
|
|
|
-t) tabwidth=${2?}; shift;;
|
1996-08-24 21:11:14 +00:00
|
|
|
-v) revision=t;;
|
1993-09-24 01:03:32 +00:00
|
|
|
-*) echo >&2 "$0: usage: $0 [options] [file ...]
|
|
|
|
Options:
|
1996-08-24 21:11:14 +00:00
|
|
|
[-c changelog] [-h hostname] [-i indent] [-l length] [-R]
|
|
|
|
[-r rlog_option] [-t tabwidth] [-v]
|
|
|
|
[-u 'login<TAB>fullname<TAB>mailaddr']..."
|
1992-02-05 04:31:18 +00:00
|
|
|
exit 1;;
|
|
|
|
*) break
|
|
|
|
esac
|
1995-03-21 05:37:42 +00:00
|
|
|
shift
|
1992-02-05 04:31:18 +00:00
|
|
|
done
|
|
|
|
|
1993-03-16 22:49:00 +00:00
|
|
|
month_data='
|
|
|
|
m[0]="Jan"; m[1]="Feb"; m[2]="Mar"
|
|
|
|
m[3]="Apr"; m[4]="May"; m[5]="Jun"
|
|
|
|
m[6]="Jul"; m[7]="Aug"; m[8]="Sep"
|
|
|
|
m[9]="Oct"; m[10]="Nov"; m[11]="Dec"
|
|
|
|
'
|
|
|
|
|
1992-02-05 04:31:18 +00:00
|
|
|
|
1995-04-30 15:34:52 +00:00
|
|
|
# Put rlog output into $rlogout.
|
1992-02-03 03:20:43 +00:00
|
|
|
|
1995-04-30 15:34:52 +00:00
|
|
|
# If no rlog options are given,
|
|
|
|
# log the revisions checked in since the first ChangeLog entry.
|
1996-08-24 21:11:14 +00:00
|
|
|
# Since ChangeLog is only by date, some of these revisions may be duplicates of
|
|
|
|
# what's already in ChangeLog; it's the user's responsibility to remove them.
|
1995-04-30 15:34:52 +00:00
|
|
|
case $rlog_options in
|
|
|
|
'')
|
1996-08-24 21:11:14 +00:00
|
|
|
if test -s "$changelog"
|
1995-04-30 15:34:52 +00:00
|
|
|
then
|
|
|
|
e='
|
1996-08-24 21:11:14 +00:00
|
|
|
/^[0-9]+-[0-9][0-9]-[0-9][0-9]/{
|
|
|
|
# ISO 8601 date
|
|
|
|
print $1
|
|
|
|
exit
|
|
|
|
}
|
1995-04-30 15:34:52 +00:00
|
|
|
/^... ... [ 0-9][0-9] [ 0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9]+ /{
|
1996-08-24 21:11:14 +00:00
|
|
|
# old-fashioned date and time (Emacs 19.31 and earlier)
|
1995-04-30 15:34:52 +00:00
|
|
|
'"$month_data"'
|
|
|
|
year = $5
|
|
|
|
for (i=0; i<=11; i++) if (m[i] == $2) break
|
|
|
|
dd = $3
|
1996-08-24 21:11:14 +00:00
|
|
|
printf "%d-%02d-%02d\n", year, i+1, dd
|
1995-04-30 15:34:52 +00:00
|
|
|
exit
|
1993-03-16 22:49:00 +00:00
|
|
|
}
|
1995-04-30 15:34:52 +00:00
|
|
|
'
|
1996-08-24 21:11:14 +00:00
|
|
|
d=`$AWK "$e" <"$changelog"` || exit
|
1995-04-30 15:34:52 +00:00
|
|
|
case $d in
|
1996-10-13 05:59:42 +00:00
|
|
|
?*) datearg="-d>$d"
|
1995-04-30 15:34:52 +00:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
esac
|
1992-02-03 03:20:43 +00:00
|
|
|
|
1996-08-24 21:11:14 +00:00
|
|
|
# Use TZ specified by ChangeLog local variable, if any.
|
|
|
|
if test -s "$changelog"
|
|
|
|
then
|
|
|
|
extractTZ='
|
|
|
|
/^.*change-log-time-zone-rule['"$tab"' ]*:['"$tab"' ]*"\([^"]*\)".*/{
|
|
|
|
s//\1/; p; q
|
|
|
|
}
|
|
|
|
/^.*change-log-time-zone-rule['"$tab"' ]*:['"$tab"' ]*t.*/{
|
|
|
|
s//UTC0/; p; q
|
|
|
|
}
|
|
|
|
'
|
|
|
|
logTZ=`tail "$changelog" | sed -n "$extractTZ"`
|
|
|
|
case $logTZ in
|
|
|
|
?*) TZ=$logTZ; export TZ
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
1995-04-30 15:34:52 +00:00
|
|
|
# If CVS is in use, examine its repository, not the normal RCS files.
|
|
|
|
if test ! -f CVS/Repository
|
|
|
|
then
|
|
|
|
rlog=rlog
|
|
|
|
repository=
|
|
|
|
else
|
|
|
|
rlog='cvs log'
|
|
|
|
repository=`sed 1q <CVS/Repository` || exit
|
1995-06-28 01:47:55 +00:00
|
|
|
test ! -f CVS/Root || CVSROOT=`cat <CVS/Root` || exit
|
1995-07-08 18:44:04 +00:00
|
|
|
case $CVSROOT in
|
1995-06-28 01:47:55 +00:00
|
|
|
*:/*)
|
|
|
|
# remote repository
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# local repository
|
|
|
|
case $repository in
|
|
|
|
/*) ;;
|
1995-07-08 18:44:04 +00:00
|
|
|
*) repository=${CVSROOT?}/$repository
|
1995-06-28 01:47:55 +00:00
|
|
|
esac
|
|
|
|
if test ! -d "$repository"
|
|
|
|
then
|
|
|
|
echo >&2 "$0: $repository: bad repository (see CVS/Repository)"
|
|
|
|
exit 1
|
|
|
|
fi
|
1995-04-30 15:34:52 +00:00
|
|
|
esac
|
|
|
|
fi
|
1994-08-15 22:44:10 +00:00
|
|
|
|
1996-09-25 09:53:56 +00:00
|
|
|
# Use $rlog's -zLT option, if $rlog supports it.
|
|
|
|
case `$rlog -zLT 2>&1` in
|
1996-10-12 17:24:45 +00:00
|
|
|
*' option'*) ;;
|
1996-09-25 09:53:56 +00:00
|
|
|
*) rlog_options=-zLT$nl$rlog_options
|
|
|
|
esac
|
|
|
|
|
1993-05-29 06:22:48 +00:00
|
|
|
# With no arguments, examine all files under the RCS directory.
|
|
|
|
case $# in
|
|
|
|
0)
|
1994-08-15 22:44:10 +00:00
|
|
|
case $repository in
|
|
|
|
'')
|
|
|
|
oldIFS=$IFS
|
|
|
|
IFS=$nl
|
1995-03-21 05:37:42 +00:00
|
|
|
case $recursive in
|
|
|
|
t)
|
|
|
|
RCSdirs=`find . -name RCS -type d -print`
|
|
|
|
filesFromRCSfiles='s|,v$||; s|/RCS/|/|; s|^\./||'
|
|
|
|
files=`
|
|
|
|
{
|
|
|
|
case $RCSdirs in
|
|
|
|
?*) find $RCSdirs -type f -print
|
|
|
|
esac
|
|
|
|
find . -name '*,v' -print
|
|
|
|
} |
|
|
|
|
sort -u |
|
|
|
|
sed "$filesFromRCSfiles"
|
|
|
|
`;;
|
|
|
|
*)
|
|
|
|
files=
|
|
|
|
for file in RCS/.* RCS/* .*,v *,v
|
|
|
|
do
|
|
|
|
case $file in
|
|
|
|
RCS/. | RCS/..) continue;;
|
|
|
|
RCS/.\* | RCS/\* | .\*,v | \*,v) test -f "$file" || continue
|
|
|
|
esac
|
|
|
|
files=$files$nl$file
|
|
|
|
done
|
|
|
|
case $files in
|
|
|
|
'') exit 0
|
|
|
|
esac
|
|
|
|
esac
|
|
|
|
set x $files
|
|
|
|
shift
|
1994-08-15 22:44:10 +00:00
|
|
|
IFS=$oldIFS
|
1993-05-29 06:22:48 +00:00
|
|
|
esac
|
|
|
|
esac
|
|
|
|
|
1995-03-21 05:37:42 +00:00
|
|
|
llogout=$TMPDIR/rcs2log$$l
|
1993-09-24 01:03:32 +00:00
|
|
|
rlogout=$TMPDIR/rcs2log$$r
|
1992-02-03 03:20:43 +00:00
|
|
|
trap exit 1 2 13 15
|
1995-03-21 05:37:42 +00:00
|
|
|
trap "rm -f $llogout $rlogout; exit 1" 0
|
1992-02-03 03:20:43 +00:00
|
|
|
|
1996-08-24 21:11:14 +00:00
|
|
|
case $datearg in
|
|
|
|
?*) $rlog $rlog_options "$datearg" ${1+"$@"} >$rlogout;;
|
|
|
|
'') $rlog $rlog_options ${1+"$@"} >$rlogout
|
1995-04-30 15:34:52 +00:00
|
|
|
esac || exit
|
1992-02-03 03:20:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Get the full name of each author the logs mention, and set initialize_fullname
|
|
|
|
# to awk code that initializes the `fullname' awk associative array.
|
|
|
|
# Warning: foreign authors (i.e. not known in the passwd file) are mishandled;
|
|
|
|
# you have to fix the resulting output by hand.
|
|
|
|
|
1995-03-21 05:37:42 +00:00
|
|
|
initialize_fullname=
|
|
|
|
initialize_mailaddr=
|
|
|
|
|
|
|
|
case $loginFullnameMailaddrs in
|
|
|
|
?*)
|
|
|
|
case $loginFullnameMailaddrs in
|
|
|
|
*\"* | *\\*)
|
|
|
|
sed 's/["\\]/\\&/g' >$llogout <<EOF || exit
|
|
|
|
$loginFullnameMailaddrs
|
|
|
|
EOF
|
|
|
|
loginFullnameMailaddrs=`cat $llogout`
|
|
|
|
esac
|
|
|
|
|
|
|
|
oldIFS=$IFS
|
|
|
|
IFS=$nl
|
|
|
|
for loginFullnameMailaddr in $loginFullnameMailaddrs
|
|
|
|
do
|
1995-03-21 23:14:41 +00:00
|
|
|
case $loginFullnameMailaddr in
|
|
|
|
*"$tab"*) IFS=$tab;;
|
|
|
|
*) IFS=:
|
|
|
|
esac
|
1995-03-21 05:37:42 +00:00
|
|
|
set x $loginFullnameMailaddr
|
|
|
|
login=$2
|
|
|
|
fullname=$3
|
|
|
|
mailaddr=$4
|
|
|
|
initialize_fullname="$initialize_fullname
|
|
|
|
fullname[\"$login\"] = \"$fullname\""
|
|
|
|
initialize_mailaddr="$initialize_mailaddr
|
|
|
|
mailaddr[\"$login\"] = \"$mailaddr\""
|
|
|
|
done
|
|
|
|
IFS=$oldIFS
|
|
|
|
esac
|
|
|
|
|
|
|
|
case $llogout in
|
|
|
|
?*) sort -u -o $llogout <<EOF || exit
|
1993-09-24 01:03:32 +00:00
|
|
|
$logins
|
|
|
|
EOF
|
|
|
|
esac
|
1995-03-21 05:37:42 +00:00
|
|
|
output_authors='/^date: / {
|
1995-06-04 01:34:39 +00:00
|
|
|
if ($2 ~ /^[0-9]*[-\/][0-9][0-9][-\/][0-9][0-9]$/ && $3 ~ /^[0-9][0-9]:[0-9][0-9]:[0-9][0-9][-+0-9:]*;$/ && $4 == "author:" && $5 ~ /^[^;]*;$/) {
|
1995-03-21 05:37:42 +00:00
|
|
|
print substr($5, 1, length($5)-1)
|
|
|
|
}
|
|
|
|
}'
|
1992-02-03 03:20:43 +00:00
|
|
|
authors=`
|
1995-03-21 05:37:42 +00:00
|
|
|
$AWK "$output_authors" <$rlogout |
|
|
|
|
case $llogout in
|
1993-09-24 01:03:32 +00:00
|
|
|
'') sort -u;;
|
1995-03-21 05:37:42 +00:00
|
|
|
?*) sort -u | comm -23 - $llogout
|
1993-09-24 01:03:32 +00:00
|
|
|
esac
|
1992-02-03 03:20:43 +00:00
|
|
|
`
|
1992-05-11 19:59:33 +00:00
|
|
|
case $authors in
|
|
|
|
?*)
|
1995-03-21 05:37:42 +00:00
|
|
|
cat >$llogout <<EOF || exit
|
|
|
|
$authors
|
|
|
|
EOF
|
|
|
|
initialize_author_script='s/["\\]/\\&/g; s/.*/author[\"&\"] = 1/'
|
|
|
|
initialize_author=`sed -e "$initialize_author_script" <$llogout`
|
1992-05-11 19:59:33 +00:00
|
|
|
awkscript='
|
|
|
|
BEGIN {
|
|
|
|
alphabet = "abcdefghijklmnopqrstuvwxyz"
|
|
|
|
ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
'"$initialize_author"'
|
|
|
|
}
|
|
|
|
{
|
|
|
|
if (author[$1]) {
|
|
|
|
fullname = $5
|
1993-08-09 22:06:00 +00:00
|
|
|
if (fullname ~ /[0-9]+-[^(]*\([0-9]+\)$/) {
|
|
|
|
# Remove the junk from fullnames like "0000-Admin(0000)".
|
|
|
|
fullname = substr(fullname, index(fullname, "-") + 1)
|
|
|
|
fullname = substr(fullname, 1, index(fullname, "(") - 1)
|
|
|
|
}
|
|
|
|
if (fullname ~ /,[^ ]/) {
|
|
|
|
# Some sites put comma-separated junk after the fullname.
|
|
|
|
# Remove it, but leave "Bill Gates, Jr" alone.
|
|
|
|
fullname = substr(fullname, 1, index(fullname, ",") - 1)
|
|
|
|
}
|
1992-05-11 19:59:33 +00:00
|
|
|
abbr = index(fullname, "&")
|
|
|
|
if (abbr) {
|
|
|
|
a = substr($1, 1, 1)
|
|
|
|
A = a
|
|
|
|
i = index(alphabet, a)
|
|
|
|
if (i) A = substr(ALPHABET, i, 1)
|
|
|
|
fullname = substr(fullname, 1, abbr-1) A substr($1, 2) substr(fullname, abbr+1)
|
|
|
|
}
|
1995-03-21 05:37:42 +00:00
|
|
|
|
|
|
|
# Quote quotes and backslashes properly in full names.
|
|
|
|
# Do not use gsub; traditional awk lacks it.
|
|
|
|
quoted = ""
|
|
|
|
rest = fullname
|
|
|
|
for (;;) {
|
|
|
|
p = index(rest, "\\")
|
|
|
|
q = index(rest, "\"")
|
|
|
|
if (p) {
|
|
|
|
if (q && q<p) p = q
|
|
|
|
} else {
|
|
|
|
if (!q) break
|
|
|
|
p = q
|
|
|
|
}
|
|
|
|
quoted = quoted substr(rest, 1, p-1) "\\" substr(rest, p, 1)
|
|
|
|
rest = substr(rest, p+1)
|
|
|
|
}
|
|
|
|
|
|
|
|
printf "fullname[\"%s\"] = \"%s%s\"\n", $1, quoted, rest
|
1992-05-11 19:59:33 +00:00
|
|
|
author[$1] = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'
|
1992-02-03 03:20:43 +00:00
|
|
|
|
1992-05-11 19:59:33 +00:00
|
|
|
initialize_fullname=`
|
1996-01-15 01:17:56 +00:00
|
|
|
(
|
|
|
|
cat /etc/passwd
|
|
|
|
for author in $authors
|
|
|
|
do nismatch $author passwd.org_dir
|
|
|
|
done
|
|
|
|
ypmatch $authors passwd
|
|
|
|
) 2>/dev/null |
|
1995-03-21 05:37:42 +00:00
|
|
|
$AWK -F: "$awkscript"
|
1993-09-24 01:03:32 +00:00
|
|
|
`$initialize_fullname
|
1992-05-11 19:59:33 +00:00
|
|
|
esac
|
1992-02-03 03:20:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Function to print a single log line.
|
|
|
|
# We don't use awk functions, to stay compatible with old awk versions.
|
|
|
|
# `Log' is the log message (with \n replaced by \r).
|
1992-03-21 05:58:05 +00:00
|
|
|
# `files' contains the affected files.
|
1992-02-03 03:20:43 +00:00
|
|
|
printlogline='{
|
|
|
|
|
|
|
|
# Following the GNU coding standards, rewrite
|
|
|
|
# * file: (function): comment
|
|
|
|
# to
|
|
|
|
# * file (function): comment
|
|
|
|
if (Log ~ /^\([^)]*\): /) {
|
|
|
|
i = index(Log, ")")
|
|
|
|
files = files " " substr(Log, 1, i)
|
|
|
|
Log = substr(Log, i+3)
|
|
|
|
}
|
|
|
|
|
|
|
|
# If "label: comment" is too long, break the line after the ":".
|
|
|
|
sep = " "
|
1993-03-16 22:49:00 +00:00
|
|
|
if ('"$length"' <= '"$indent"' + 1 + length(files) + index(Log, CR)) sep = "\n" indent_string
|
1992-02-03 03:20:43 +00:00
|
|
|
|
|
|
|
# Print the label.
|
1992-02-05 04:31:18 +00:00
|
|
|
printf "%s*%s:", indent_string, files
|
1992-02-03 03:20:43 +00:00
|
|
|
|
|
|
|
# Print each line of the log, transliterating \r to \n.
|
1993-03-16 22:49:00 +00:00
|
|
|
while ((i = index(Log, CR)) != 0) {
|
1993-10-19 02:50:31 +00:00
|
|
|
logline = substr(Log, 1, i-1)
|
1995-03-21 05:37:42 +00:00
|
|
|
if (logline ~ /[^'"$tab"' ]/) {
|
1993-10-19 02:50:31 +00:00
|
|
|
printf "%s%s\n", sep, logline
|
|
|
|
} else {
|
|
|
|
print ""
|
|
|
|
}
|
1992-02-05 04:31:18 +00:00
|
|
|
sep = indent_string
|
1992-02-03 03:20:43 +00:00
|
|
|
Log = substr(Log, i+1)
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
|
1996-08-24 21:11:14 +00:00
|
|
|
# Pattern to match the `revision' line of rlog output.
|
|
|
|
rlog_revision_pattern='^revision [0-9]+\.[0-9]+(\.[0-9]+\.[0-9]+)*(['"$tab"' ]+locked by: [^'"$tab"' $,.0-9:;@]*[^'"$tab"' $,:;@][^'"$tab"' $,.0-9:;@]*;)?['"$tab"' ]*$'
|
|
|
|
|
1993-09-24 01:03:32 +00:00
|
|
|
case $hostname in
|
|
|
|
'')
|
|
|
|
hostname=`(
|
|
|
|
hostname || uname -n || uuname -l || cat /etc/whoami
|
|
|
|
) 2>/dev/null` || {
|
|
|
|
echo >&2 "$0: cannot deduce hostname"
|
|
|
|
exit 1
|
|
|
|
}
|
1996-01-15 01:17:56 +00:00
|
|
|
|
|
|
|
case $hostname in
|
|
|
|
*.*) ;;
|
|
|
|
*)
|
|
|
|
domainname=`(domainname) 2>/dev/null` &&
|
|
|
|
case $domainname in
|
|
|
|
*.*) hostname=$hostname.$domainname
|
|
|
|
esac
|
|
|
|
esac
|
1993-09-24 01:03:32 +00:00
|
|
|
esac
|
1992-02-03 03:20:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Process the rlog output, generating ChangeLog style entries.
|
|
|
|
|
|
|
|
# First, reformat the rlog output so that each line contains one log entry.
|
|
|
|
# Transliterate \n to \r so that multiline entries fit on a single line.
|
|
|
|
# Discard irrelevant rlog output.
|
1995-03-21 05:37:42 +00:00
|
|
|
$AWK <$rlogout '
|
|
|
|
BEGIN { repository = "'"$repository"'" }
|
|
|
|
/^RCS file:/ {
|
|
|
|
if (repository != "") {
|
|
|
|
filename = $3
|
|
|
|
if (substr(filename, 1, length(repository) + 1) == repository "/") {
|
|
|
|
filename = substr(filename, length(repository) + 2)
|
|
|
|
}
|
|
|
|
if (filename ~ /,v$/) {
|
|
|
|
filename = substr(filename, 1, length(filename) - 2)
|
|
|
|
}
|
1996-11-03 17:09:27 +00:00
|
|
|
if (filename ~ /(^|\/)Attic\/[^\/]*$/) {
|
|
|
|
i = length(filename)
|
|
|
|
while (substr(filename, i, 1) != "/") i--
|
|
|
|
filename = substr(filename, 1, i - 6) substr(filename, i + 1)
|
|
|
|
}
|
1995-03-21 05:37:42 +00:00
|
|
|
}
|
1996-08-24 21:11:14 +00:00
|
|
|
rev = "?"
|
1995-03-21 05:37:42 +00:00
|
|
|
}
|
|
|
|
/^Working file:/ { if (repository == "") filename = $3 }
|
1996-08-24 21:11:14 +00:00
|
|
|
/'"$rlog_revision_pattern"'/, /^(-----------*|===========*)$/ {
|
|
|
|
if ($0 ~ /'"$rlog_revision_pattern"'/) {
|
|
|
|
rev = $2
|
|
|
|
next
|
|
|
|
}
|
1994-08-15 22:44:10 +00:00
|
|
|
if ($0 ~ /^date: [0-9][- +\/0-9:]*;/) {
|
|
|
|
date = $2
|
1996-08-24 21:11:14 +00:00
|
|
|
if (date ~ /\//) {
|
|
|
|
# This is a traditional RCS format date YYYY/MM/DD.
|
|
|
|
# Replace "/"s with "-"s to get ISO format.
|
1994-08-15 22:44:10 +00:00
|
|
|
newdate = ""
|
1996-08-24 21:11:14 +00:00
|
|
|
while ((i = index(date, "/")) != 0) {
|
|
|
|
newdate = newdate substr(date, 1, i-1) "-"
|
1994-08-15 22:44:10 +00:00
|
|
|
date = substr(date, i+1)
|
|
|
|
}
|
|
|
|
date = newdate date
|
|
|
|
}
|
1996-08-24 21:11:14 +00:00
|
|
|
time = substr($3, 1, length($3) - 1)
|
1992-02-03 03:20:43 +00:00
|
|
|
author = substr($5, 1, length($5)-1)
|
1996-08-24 21:11:14 +00:00
|
|
|
printf "%s %s %s %s %s %c", filename, rev, date, time, author, 13
|
|
|
|
rev = "?"
|
1992-02-03 03:20:43 +00:00
|
|
|
next
|
|
|
|
}
|
1996-08-24 21:11:14 +00:00
|
|
|
if ($0 ~ /^branches: /) { next }
|
1992-05-08 21:45:00 +00:00
|
|
|
if ($0 ~ /^(-----------*|===========*)$/) { print ""; next }
|
1993-03-16 22:49:00 +00:00
|
|
|
printf "%s%c", $0, 13
|
1992-02-03 03:20:43 +00:00
|
|
|
}
|
|
|
|
' |
|
|
|
|
|
|
|
|
# Now each line is of the form
|
1996-08-24 21:11:14 +00:00
|
|
|
# FILENAME REVISION YYYY-MM-DD HH:MM:SS[+-TIMEZONE] AUTHOR \rLOG
|
1992-02-03 03:20:43 +00:00
|
|
|
# where \r stands for a carriage return,
|
|
|
|
# and each line of the log is terminated by \r instead of \n.
|
1992-05-11 19:59:33 +00:00
|
|
|
# Sort the log entries, first by date+time (in reverse order),
|
1996-08-24 21:11:14 +00:00
|
|
|
# then by author, then by log entry, and finally by file name and revision
|
|
|
|
# (just in case).
|
|
|
|
sort +2 -4r +4 +0 |
|
1992-02-03 03:20:43 +00:00
|
|
|
|
|
|
|
# Finally, reformat the sorted log entries.
|
1995-03-21 05:37:42 +00:00
|
|
|
$AWK '
|
1992-02-03 03:20:43 +00:00
|
|
|
BEGIN {
|
1996-08-24 21:11:14 +00:00
|
|
|
logTZ = "'"$logTZ"'"
|
|
|
|
revision = "'"$revision"'"
|
|
|
|
|
1995-04-30 15:34:52 +00:00
|
|
|
# Some awk variants do not understand "\r" or "\013", so we have to
|
1993-03-16 22:49:00 +00:00
|
|
|
# put a carriage return directly in the file.
|
|
|
|
CR="
" # <-- There is a single CR between the " chars here.
|
1992-02-03 03:20:43 +00:00
|
|
|
|
1993-09-24 01:03:32 +00:00
|
|
|
# Initialize the fullname and mailaddr associative arrays.
|
1992-02-03 03:20:43 +00:00
|
|
|
'"$initialize_fullname"'
|
1993-09-24 01:03:32 +00:00
|
|
|
'"$initialize_mailaddr"'
|
1992-02-03 03:20:43 +00:00
|
|
|
|
1992-02-05 04:31:18 +00:00
|
|
|
# Initialize indent string.
|
|
|
|
indent_string = ""
|
|
|
|
i = '"$indent"'
|
|
|
|
if (0 < '"$tabwidth"')
|
|
|
|
for (; '"$tabwidth"' <= i; i -= '"$tabwidth"')
|
|
|
|
indent_string = indent_string "\t"
|
|
|
|
while (1 <= i--)
|
|
|
|
indent_string = indent_string " "
|
1992-02-03 03:20:43 +00:00
|
|
|
}
|
1992-05-08 21:45:00 +00:00
|
|
|
|
1992-02-03 03:20:43 +00:00
|
|
|
{
|
1993-03-16 22:49:00 +00:00
|
|
|
newlog = substr($0, 1 + index($0, CR))
|
1992-05-08 21:45:00 +00:00
|
|
|
|
|
|
|
# Ignore log entries prefixed by "#".
|
|
|
|
if (newlog ~ /^#/) { next }
|
|
|
|
|
1996-08-24 21:11:14 +00:00
|
|
|
if (Log != newlog || date != $3 || author != $5) {
|
1992-03-21 05:58:05 +00:00
|
|
|
|
1992-02-03 03:20:43 +00:00
|
|
|
# The previous log and this log differ.
|
1992-03-21 05:58:05 +00:00
|
|
|
|
|
|
|
# Print the old log.
|
1992-02-03 03:20:43 +00:00
|
|
|
if (date != "") '"$printlogline"'
|
|
|
|
|
1992-03-21 05:58:05 +00:00
|
|
|
# Logs that begin with "{clumpname} " should be grouped together,
|
|
|
|
# and the clumpname should be removed.
|
|
|
|
# Extract the new clumpname from the log header,
|
|
|
|
# and use it to decide whether to output a blank line.
|
|
|
|
newclumpname = ""
|
|
|
|
sep = "\n"
|
1992-04-01 08:57:55 +00:00
|
|
|
if (date == "") sep = ""
|
1995-03-21 05:37:42 +00:00
|
|
|
if (newlog ~ /^\{[^'"$tab"' }]*}['"$tab"' ]/) {
|
1992-03-21 05:58:05 +00:00
|
|
|
i = index(newlog, "}")
|
|
|
|
newclumpname = substr(newlog, 1, i)
|
1995-03-21 05:37:42 +00:00
|
|
|
while (substr(newlog, i+1) ~ /^['"$tab"' ]/) i++
|
1992-03-21 05:58:05 +00:00
|
|
|
newlog = substr(newlog, i+1)
|
|
|
|
if (clumpname == newclumpname) sep = ""
|
|
|
|
}
|
|
|
|
printf sep
|
|
|
|
clumpname = newclumpname
|
|
|
|
|
1992-02-03 03:20:43 +00:00
|
|
|
# Get ready for the next log.
|
|
|
|
Log = newlog
|
1992-02-05 04:31:18 +00:00
|
|
|
if (files != "")
|
|
|
|
for (i in filesknown)
|
|
|
|
filesknown[i] = 0
|
1992-02-03 03:20:43 +00:00
|
|
|
files = ""
|
|
|
|
}
|
1996-08-24 21:11:14 +00:00
|
|
|
if (date != $3 || author != $5) {
|
1992-02-03 03:20:43 +00:00
|
|
|
# The previous date+author and this date+author differ.
|
|
|
|
# Print the new one.
|
1996-08-24 21:11:14 +00:00
|
|
|
date = $3
|
|
|
|
time = $4
|
|
|
|
author = $5
|
|
|
|
|
|
|
|
zone = ""
|
|
|
|
if (logTZ && ((i = index(time, "-")) || (i = index(time, "+"))))
|
|
|
|
zone = " " substr(time, i)
|
|
|
|
|
|
|
|
# Print "date[ timezone] fullname <email address>".
|
1993-09-24 01:03:32 +00:00
|
|
|
# Get fullname and email address from associative arrays;
|
|
|
|
# default to author and author@hostname if not in arrays.
|
1992-02-05 04:31:18 +00:00
|
|
|
if (fullname[author])
|
1993-09-24 01:03:32 +00:00
|
|
|
auth = fullname[author]
|
|
|
|
else
|
|
|
|
auth = author
|
1996-08-24 21:11:14 +00:00
|
|
|
printf "%s%s %s ", date, zone, auth
|
1993-09-24 01:03:32 +00:00
|
|
|
if (mailaddr[author])
|
1994-08-09 20:43:48 +00:00
|
|
|
printf "<%s>\n\n", mailaddr[author]
|
1992-02-05 04:31:18 +00:00
|
|
|
else
|
1994-08-09 20:43:48 +00:00
|
|
|
printf "<%s@%s>\n\n", author, "'"$hostname"'"
|
1992-02-05 04:31:18 +00:00
|
|
|
}
|
|
|
|
if (! filesknown[$1]) {
|
|
|
|
filesknown[$1] = 1
|
1992-03-21 05:58:05 +00:00
|
|
|
if (files == "") files = " " $1
|
|
|
|
else files = files ", " $1
|
1996-08-24 21:11:14 +00:00
|
|
|
if (revision && $2 != "?") files = files " " $2
|
1992-02-03 03:20:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
END {
|
|
|
|
# Print the last log.
|
1992-03-21 05:58:05 +00:00
|
|
|
if (date != "") {
|
|
|
|
'"$printlogline"'
|
|
|
|
printf "\n"
|
|
|
|
}
|
1992-02-03 03:20:43 +00:00
|
|
|
}
|
|
|
|
' &&
|
|
|
|
|
|
|
|
|
|
|
|
# Exit successfully.
|
|
|
|
|
1995-03-21 05:37:42 +00:00
|
|
|
exec rm -f $llogout $rlogout
|
1996-08-24 21:11:14 +00:00
|
|
|
|
|
|
|
# Local Variables:
|
|
|
|
# tab-width:4
|
|
|
|
# End:
|