From: Ansgar Burchardt Date: Sun, 11 Mar 2012 11:25:05 +0000 (+0000) Subject: generate_translations: do not include some descriptions more than once X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=01a871e7aeeeae385cbd30ceceb169cd909faf07;p=dak.git generate_translations: do not include some descriptions more than once By no longer using s.source in the GROUP BY clause, identical descriptions for binary packages built by more than one source no longer appear multiple times in Translation-en. Bug: http://bugs.debian.org/660543 --- diff --git a/dak/generate_packages_sources2.py b/dak/generate_packages_sources2.py index 6ef9fd6c..151920c1 100755 --- a/dak/generate_packages_sources2.py +++ b/dak/generate_packages_sources2.py @@ -273,8 +273,8 @@ FROM binaries b JOIN source s ON b.source = s.id WHERE ba.suite = :suite AND o.component = :component -GROUP BY s.source, b.package, bm_description_md5.value, bm_description.value -ORDER BY s.source, b.package, bm_description_md5.value +GROUP BY b.package, bm_description_md5.value, bm_description.value +ORDER BY MIN(s.source), b.package, bm_description_md5.value """ def generate_translations(suite_id, component_id):