+09 Nov 2004 Aron Griffis <agriffis@gentoo.org>
+ * change "cvs diff -fU 0" => "cvs -f diff U0" because -f is a
+ global option, not a diff option
+
08 Nov 2004 Aron Griffis <agriffis@gentoo.org>
* call cvs with -f to refrain from using .cvsrc, which might
contain conflicting options
# Figure out what has changed around here
open C, 'cvs -fn up 2>&1 |' or die "Can't run cvs -fn up: $!\n";
while (<C>) {
+ #print STDERR "cvs: $_";
/ChangeLog/ and next;
/^\? (\S+)/ and push @unknown, $1;
/^([ARMC]) (\S+)/ or next;
# the changed files we have
@ebuilds = grep /\.ebuild$/, @files;
@files = grep !/\.ebuild$/, @files;
+#print STDERR '@ebuilds = [', join('],[', @ebuilds), "]\n";
+#print STDERR '@files = [', join('],[', @files), "]\n";
if (@ebuilds) {
- open C, "cvs diff -fU 0 @ebuilds 2>&1 |" or die "Can't run cvs diff: $!\n";
+ open C, "cvs -f diff -U0 @ebuilds 2>&1 |" or die "Can't run cvs diff: $!\n";
$_ = <C>;
while (defined $_) {
+ #print STDERR "cvs: $_";
if (/^cvs diff: (([^\/]*?)\.ebuild) was removed/) {
push @files, $1;
$versions{$2} = 0; # existing ebuild that was removed