]> git.decadent.org.uk Git - dak.git/commitdiff
Include all source packages in index
authorAnsgar Burchardt <ansgar@debian.org>
Sat, 19 Dec 2015 10:52:38 +0000 (11:52 +0100)
committerAnsgar Burchardt <ansgar@debian.org>
Sat, 19 Dec 2015 10:52:38 +0000 (11:52 +0100)
Previously we required that either an override is present or the
source is an "extra source" introduced via Built-Using.  However as we
now include all binary packages (see previous commit), we should also
include all source packages to treat both in a consistent way.

dak/generate_packages_sources2.py

index a201d5ac160ae0d442e4d63811fa540cd8e5a1c0..ed12e9f14a0fa2eefc968e4597c4b71b62ba3960 100755 (executable)
@@ -94,9 +94,6 @@ LEFT JOIN override o ON o.package = s.source
 LEFT JOIN section sec ON o.section = sec.id
 LEFT JOIN priority pri ON o.priority = pri.id
 
-WHERE
-  (src_associations_full.extra_source OR o.suite IS NOT NULL)
-
 ORDER BY
 s.source, s.version
 """