From: Adam Heath Date: Sat, 13 Sep 2003 21:27:14 +0000 (+0000) Subject: Add .cvsignore to dpkg-source's default diff ignore regex. Also fix X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a55cdcc7552599f02f3a0fc51382dd67529b684e;p=dpkg Add .cvsignore to dpkg-source's default diff ignore regex. Also fix missing \ escape for .deps. --- diff --git a/ChangeLog b/ChangeLog index ebd5cbcf..af03a04d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Sep 13 16:26:36 CDT 2003 Adam Heath + + * scripts/dpkg-source.pl: Add .cvsignore to dpkg-source's default diff + ignore regex. Also fix missing \ escape for .deps. + Sat Sep 13 16:16:52 CDT 2003 Adam Heath * main/remove.c: Retry removing empty dirs during purge. diff --git a/debian/changelog b/debian/changelog index 8c3b8be8..43d2a087 100644 --- a/debian/changelog +++ b/debian/changelog @@ -34,6 +34,9 @@ dpkg (1.10.11) unstable; urgency=low #179385 * Anthony Towns : Retry removing empty dirs during purge. Closes: #112386 + * Darren Salt : + Add .cvsignore to dpkg-source's default diff ignore regex. Also fix + missing \ escape for .deps. Closes: #174013 -- Wichert Akkerman UNRELEASED diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl index 57b47f30..5b4eb3e5 100755 --- a/scripts/dpkg-source.pl +++ b/scripts/dpkg-source.pl @@ -8,7 +8,7 @@ my %dirincluded; my %notfileobject; my $fn; -$diff_ignore_default_regexp = '(?:^|/).*~$|(?:^|/)\..*\.swp|DEADJOE|(?:/CVS|/RCS|/.deps)(?:$|/.*$)'; +$diff_ignore_default_regexp = '(?:^|/).*~$|(?:^|/)\..*\.swp|DEADJOE|\.cvsignore|(?:/CVS|/RCS|/\.deps)(?:$|/.*$)'; $sourcestyle = 'X'; $dscformat = "1.0";