From: Joerg Jaspert Date: Sat, 11 Dec 2010 15:14:52 +0000 (+0100) Subject: Ask the database for components X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=f1333752e7ffbbb3bbda0ce16c3ab1bbb4545f71;p=dak.git Ask the database for components Signed-off-by: Joerg Jaspert --- diff --git a/dak/generate_filelist.py b/dak/generate_filelist.py index a2246f5c..a58fe7e2 100755 --- a/dak/generate_filelist.py +++ b/dak/generate_filelist.py @@ -196,9 +196,11 @@ def main(): suites = [suite.suite_name for suite in query_suites.all()] if not cnf.has_key('Filelist::Options::Suite'): cnf['Filelist::Options::Suite'] = ','.join(suites) - # we can ask the database for components if 'mixed' is gone + query_components = session.query(Component) + components = \ + [component.component_name for component in query_components.all()] if not cnf.has_key('Filelist::Options::Component'): - cnf['Filelist::Options::Component'] = 'main,contrib,non-free' + cnf['Filelist::Options::Component'] = ','.join(components) query_architectures = session.query(Architecture) architectures = \ [architecture.arch_string for architecture in query_architectures.all()]