2006-02-11 Frank Lichtenheld <djpig@debian.org>
* scripts/dpkg-source.pl: Add .git to
- $diff_ignore_default_regexp
+ $diff_ignore_default_regexp.
+
+ * scripts/dpkg-source.pl: Remove any
+ newlines from Uploaders field to allow
+ people to make it multi-line in the
+ source package.
2006-02-10 Denis Barbier <barbier@linuxfr.org>
* Let dpkg-source -x touch all patched files to have the same
timestamp to mitigate time-skew problems (Denis Barbier).
Closes: #105750
+ * Strip any newlines from Uploaders field on dpkg-source -b.
+ Closes: #254449
[ Christian Perrier ]
* Switch to po4a for manpages translation. Closes: #320122
$v= $fi{$_};
if (s/^C //) {
if (m/^Source$/i) { &setsourcepackage; }
- elsif (m/^(Standards-Version|Origin|Maintainer|Uploaders)$/i) { $f{$_}= $v; }
+ elsif (m/^(Standards-Version|Origin|Maintainer)$/i) { $f{$_}= $v; }
+ elsif (m/^Uploaders$/i) { ($f{$_}= $v) =~ s/[\r\n]//g; }
elsif (m/^Build-(Depends|Conflicts)(-Indep)?$/i) {
my $dep = parsedep(substvars($v),1);
&error("error occoured while parsing $_") unless defined $dep;