+2007-05-21: Paul Varner <fuzzyray@gentoo.org>
+ * echangelog: Add patch from genstef to fix issues from Bug 176337
+
2007-05-11: Paul Varner <fuzzyray@gentoo.org>
* eclean: Changed permission check to see if you are either root or
belong to the portage group (Bug #177385)
# copyright lines on ebuilds that haven't changed. I verified this with an IP
# lawyer.
for my $e (grep /\.ebuild$/, @files) {
+ if (-s $e) {
my ($etext, $netext);
open E, "<$e" or warn("Can't read $e to update copyright year\n"), next;
{ local $/ = undef; $etext = <E>; }
# Move things around and show the diff
system "diff -U 0 $e $e.new";
rename "$e.new", $e or warn("Can't rename $e.new: $!\n");
+ }
}
# Move things around and show the ChangeLog diff
}
} elsif ($vcs eq "svn") {
if (open F, ".svn/entries") {
- system("svn add ChangeLog") unless (scalar grep /^ChangeLog$/, <F>);
+ system("svn add ChangeLog") unless (scalar grep /ChangeLog/, <F>);
}
} else {
system("$vcs{$vcs}{add} ChangeLog 2>&1 >> /dev/null");