Package: pristine-tar Version: 1.24
Relevant .xz files: https://launchpad.net/debian/sid/+source/haskell-ncurses/0.2.1-1/+files/haskell-ncurses_0.2.1.orig.tar.xz https://launchpad.net/ubuntu/quantal/+source/evilvte/0.5.0-1/+files/evilvte_0.5.0.orig.tar.xz https://launchpad.net/ubuntu/quantal/+source/evilvte/0.5.0-1/+files/evilvte_0.5.0-1.debian.tar.xz https://launchpad.net/debian/sid/+source/evilvte/0.5.1-1/+files/evilvte_0.5.1.orig.tar.xz https://launchpad.net/debian/sid/+source/evilvte/0.5.1-1/+files/evilvte_0.5.1-1.debian.tar.xz The following patch fixes the issue: modified pristine-xz === modified file 'pristine-xz' --- pristine-xz 2012-04-01 16:21:10 +0000 +++ pristine-xz 2012-06-12 15:09:13 +0000 @@ -115,7 +115,7 @@ # # 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", "6e", "9e"]; + my $possible_levels = ["6", "9", "0", "6e", "9e", "0e"]; return ($possible_levels); } @@ -127,7 +127,8 @@ foreach my $level (@$possible_levels) { push @args, ["-z", "-$level"]; push @args, ["-z", "-$level", "--check=crc32"]; - } + push @args, ["-z", "-$level", "--check=sha256"]; + } return @args; } @@ -190,6 +191,7 @@ next if $param=~/^(-[0-9]e?)$/; next if $param eq '-z'; next if $param eq '--check=crc32'; + next if $param eq '--check=sha256'; die "paranoia check failed on params from delta (@params)"; } @params=split(' ', $delta->{params}); -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

