summaryrefslogtreecommitdiff
path: root/trunk/src
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src')
-rw-r--r--trunk/src/echangelog/ChangeLog4
-rw-r--r--trunk/src/echangelog/echangelog4
2 files changed, 6 insertions, 2 deletions
diff --git a/trunk/src/echangelog/ChangeLog b/trunk/src/echangelog/ChangeLog
index fcba1bc..d16ae1c 100644
--- a/trunk/src/echangelog/ChangeLog
+++ b/trunk/src/echangelog/ChangeLog
@@ -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
diff --git a/trunk/src/echangelog/echangelog b/trunk/src/echangelog/echangelog
index 3e30323..750828c 100644
--- a/trunk/src/echangelog/echangelog
+++ b/trunk/src/echangelog/echangelog
@@ -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 .= ':';