+pristine-tar (1.20) UNRELEASED; urgency=low
+
+ * pristine-xz: Try --extreme too. While my corpus has no such xz files,
+ Darren Salt points out that automake 1.11.2 has started using
+ extreme mode. Closes: #658666
+
+ -- Joey Hess <joeyh@debian.org> Sun, 12 Feb 2012 14:20:44 -0400
+
pristine-tar (1.19) unstable; urgency=low
* Fix duplicate function oops.
#
# So far in the wild only these levels have been seen.
# (Note that level 9 can use a lot of memory.)
- my $possible_levels = [6, 9];
+ my $possible_levels = ["6", "9", "6e", "9e"];
return ($possible_levels);
}
while (@params) {
my $param=shift @params;
- next if $param=~/^(-[0-9])$/;
+ next if $param=~/^(-[0-9]e?)$/;
next if $param eq '-z';
die "paranoia check failed on params from delta (@params)";
}