Bring ``ac'' into reality. This great tools now works correctly (for

current state of the tree)
This commit is contained in:
Alexey Zelkin 1999-11-04 08:45:02 +00:00
parent d4dee594a4
commit 3fcae27b92
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52869

View File

@ -1,26 +1,25 @@
#!/bin/sh
# Copyright (c) March 1997. Wolfram Schneider <wosch@FreeBSD.ORG>. Berlin.
# (c) 1999, Alexey Zelkin <phantom@FreeBSD.org>
# This script is dedicated to the FreeBSD core team.
#
# ac - check if the FreeBSD handbook is in sync with the committers list
#
# $FreeBSD$
: ${CVSROOT=/usr/cvs}
contrib=src/share/doc/handbook/contrib.sgml
avail=CVSROOT/avail
: ${CVSROOT=/home/ncvs}
contrib=doc/en_US.ISO_8859-1/books/handbook/staff/chapter.sgml
access=CVSROOT/access
cvs='cvs -Q co -p'
tmp=${TMPDIR-/tmp}/_committers
$cvs $contrib |
perl -ne 'print if /contrib:core/ .. /contrib:doc/' |
perl -ne 'print "$1\n" if /<item>\&a\.([^;]+)/' |
$cvs $contrib |
perl -ne 'print "$1\n" if /<para>\&a\.([^;]+)/' |
sort -u > $tmp.contrib
$cvs $avail |
sed -n 's/^avail\|//p' |
perl -npe 's/,/\n/g' |
sort -u > $tmp.avail
$cvs $access |
sed 's/^\#.*//g' |
sort -u > $tmp.access
diff -u $tmp.avail $tmp.contrib
rm -f $tmp.avail $tmp.contrib
diff -u $tmp.access $tmp.contrib
rm -f $tmp.access $tmp.contrib