don't complain about cvs add of digests #84377
authoragriffis <agriffis@gentoo.org>
Tue, 8 Mar 2005 20:11:36 +0000 (20:11 -0000)
committeragriffis <agriffis@gentoo.org>
Tue, 8 Mar 2005 20:11:36 +0000 (20:11 -0000)
svn path=/; revision=188

trunk/src/echangelog/ChangeLog
trunk/src/echangelog/echangelog

index fcba1bc8edc6fd1f10ab444f2c787e6915bb904e..d16ae1c8d778656885f80c994473dae043492c84 100644 (file)
@@ -1,3 +1,7 @@
+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
 
index 3e30323a006d85d6ddeedd2ea9c3b11a80c006b7..750828ca719981521ec4988de5bda77154b2256b 100644 (file)
@@ -59,7 +59,7 @@ while (<C>) {
     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.
@@ -257,7 +257,7 @@ unless ($user = $ENV{'ECHANGELOG_USER'}) {
 }
 # 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 .= ':';