Przeglądaj źródła

Add .svn, {arch}, and .arch-ids to dpkg-source -i default regex.

Adam Heath 23 lat temu
rodzic
commit
6e5d8562fe
3 zmienionych plików z 10 dodań i 1 usunięć
  1. 5 0
      ChangeLog
  2. 4 0
      debian/changelog
  3. 1 1
      scripts/dpkg-source.pl

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+Sat Sep 13 17:18:46 CDT 2003 Adam Heath <doogie@debian.org>
+
+  * scripts/dpkg-source.pl: Add .svn, {arch}, and .arch-ids to dpkg-source
+    -i default regex.
+
 Sat Sep 13 16:34:53 CDT 2003 Adam Heath <doogie@debian.org>
 
   * lib/parse.c: Change use of strncpy in parsedb to memcpy.

+ 4 - 0
debian/changelog

@@ -40,6 +40,10 @@ dpkg (1.10.11) unstable; urgency=low
     missing \ escape for .deps.  Closes: #174013
   * Koblinger Egmont <egmont@uhulinux.hu>:
     Fix segfault with --status-fd.  Closes: #173618
+  * Colin Watson <cjwatson@debian.org>,
+    Andrew Suffield <asuffield@debian.org>:
+    Add .svn, {arch}, and .arch-ids to dpkg-source -i default regex.
+    Closes: #169359
 
  -- Wichert Akkerman <debian@extern.wiggy.net>  UNRELEASED
 

+ 1 - 1
scripts/dpkg-source.pl

@@ -8,7 +8,7 @@ my %dirincluded;
 my %notfileobject;
 my $fn;
 
-$diff_ignore_default_regexp = '(?:^|/).*~$|(?:^|/)\..*\.swp|DEADJOE|\.cvsignore|(?:/CVS|/RCS|/\.deps)(?:$|/.*$)';
+$diff_ignore_default_regexp = '(?:^|/).*~$|(?:^|/)\..*\.swp|DEADJOE|\.cvsignore|(?:/(?:CVS|RCS|\.deps|\{arch\}|\.arch-ids|\.svn))(?:$|/.*$)';
 
 $sourcestyle = 'X';
 $dscformat = "1.0";