Backport: List Translations* in Release

This commit is contained in:
Steve McIntyre 2013-06-17 15:47:40 +01:00
parent 5d56bf1797
commit c5e46fd7b2
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View File

@ -4,6 +4,8 @@ debian-cd (3.1.13-deb7u1) UNRELEASED; urgency=low
+ Make sure that when we call apt, we tell it to *not* use localised + Make sure that when we call apt, we tell it to *not* use localised
package descriptions; this causes issues during build. See #712435 in package descriptions; this causes issues during build. See #712435 in
apt. apt.
+ List Translation files in dists/$dist/Release too - apt looks there
now instead of in Index, apparently.
-- Steve McIntyre <93sam@debian.org> Mon, 17 June 2013 15:44:32 +0100 -- Steve McIntyre <93sam@debian.org> Mon, 17 June 2013 15:44:32 +0100

View File

@ -597,7 +597,7 @@ sub find_and_checksum_files_for_release {
$filename = $File::Find::name; $filename = $File::Find::name;
if ($filename =~ m/\/.*\/(Packages|Sources|Release)/o) { if ($filename =~ m/\/.*\/(Packages|Sources|Release|Translation)/o) {
$filename =~ s/^\.\///g; $filename =~ s/^\.\///g;
($checksum, $size) = checksum_file($_, $current_checksum_type); ($checksum, $size) = checksum_file($_, $current_checksum_type);
printf RELEASE " %s %8d %s\n", $checksum, $size, $filename; printf RELEASE " %s %8d %s\n", $checksum, $size, $filename;