Przeglądaj źródła

ignore vim swapfiles

Wichert Akkerman 25 lat temu
rodzic
commit
d3e1f1fd93
3 zmienionych plików z 6 dodań i 1 usunięć
  1. 4 0
      ChangeLog
  2. 1 0
      debian/changelog
  3. 1 1
      scripts/dpkg-source.pl

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+Mon Jan  8 15:12:21 PST 2001 Wichert Akkerman <wakkerma@debian.org>
+
+  * scripts/dpkg-source.pl: add vim swapfiles to the default ignore regexp
+
 Mon Jan  8 10:38:28 PST 2001 Wichert Akkerman <wakkerma@debian.org>
 
   * po/fr.po: updated

+ 1 - 0
debian/changelog

@@ -6,6 +6,7 @@ dpkg (1.9.0) unstable; urgency=low
     a warning if used.
   * Update French translation, Closes: Bug#65284
   * Add French manpages, courtesy of Philippe Batailler
+  * Ingore vim swapfiles in dpkg-soruce, Closes: Bug#81630
 
  -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
 

+ 1 - 1
scripts/dpkg-source.pl

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