Changelog generator
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:52:16 +0000 (16:52 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:52:16 +0000 (16:52 +0000)
Author: jgg
Date: 1998-12-15 21:14:50 GMT
Changelog generator

buildlib/mkChangeLog [new file with mode: 0755]

diff --git a/buildlib/mkChangeLog b/buildlib/mkChangeLog
new file mode 100755 (executable)
index 0000000..c54a433
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+NAMES="`sed -ne 's/^.*CVS:\([^ ]\+\) \([^<]\+\) <\([^>]*\)>/\
+       -u '\''\1:\2:\3'\''/gp' AUTHORS`"
+OPTIONS="-l 78"
+
+# Generate the standard ChangeLog
+echo CVSIGNORE=po rcs2log $OPTIONS $NAMES
+eval CVSIGNORE=po rcs2log $OPTIONS $NAMES >> ChangeLog
+
+# Generate the po ChangeLog
+echo rcs2log $OPTIONS $NAMES po
+eval rcs2log $OPTIONS $NAMES po >> po/ChangeLog