+08 Mar 2005 Aron Griffis <agriffis@gentoo.org>
+ * don't complain about cvs add of digests #84377
+ * use gmtime instead of localtime
+
07 Mar 2005 Aron Griffis <agriffis@gentoo.org>
* report all changed versions #84332
push @files, $2;
($actions{$2} = $1) =~ tr/ARMC/+-/d;
}
-if (@unknown) {
+if (grep !/files.digest|Manifest/, @unknown) {
print STDERR <<EOT;
Cvs reports the following unknown files. Please use "cvs add" before
running echangelog, or remove the files in question.
}
# Make sure that we didn't get "root"
die "Please set ECHANGELOG_USER or run as non-root\n" if $user =~ /<root@/;
-$date = strftime("%d %b %Y", localtime);
+$date = strftime("%d %b %Y", gmtime);
$entry = "$date; $user ";
$entry .= join ', ', map "$actions{$_}$_", grep !/files.digest|Manifest/, @files;
$entry .= ':';