4 Generate Packages/Sources files
6 @contact: Debian FTP Master <ftpmaster@debian.org>
7 @copyright: 2011 Ansgar Burchardt <ansgar@debian.org>
8 @copyright: Based on daklib/lists.py and dak/generate_filelist.py:
9 2009-2011 Torsten Werner <twerner@debian.org>
10 @copyright: Based on dak/generate_packages_sources.py:
11 2000, 2001, 2002, 2006 James Troup <james@nocrew.org>
12 2009 Mark Hymers <mhy@debian.org>
13 2010 Joerg Jaspert <joerg@debian.org>
14 @license: GNU General Public License version 2 or later
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 # GNU General Public License for more details.
27 # You should have received a copy of the GNU General Public License
28 # along with this program; if not, write to the Free Software
29 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 from daklib.dbconn import *
32 from daklib.config import Config
33 from daklib import utils, daklog
34 from multiprocessing import Pool
35 import apt_pkg, os, stat, sys
38 print """Usage: dak generate-packages-sources2 [OPTIONS]
39 Generate the Packages/Sources files
41 -s, --suite=SUITE process this suite
42 Default: All suites not marked 'untouchable'
43 -f, --force Allow processing of untouchable suites
44 CAREFUL: Only to be used at point release time!
45 -h, --help show this help and exit
47 SUITE can be a space seperated list, e.g.
48 --suite=unstable testing
52 #############################################################################
61 WHEN key = 'Source' THEN 'Package\: '
62 WHEN key = 'Files' THEN E'Files\:\n ' || f.md5sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
63 WHEN key = 'Checksums-Sha1' THEN E'Checksums-Sha1\:\n ' || f.sha1sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
64 WHEN key = 'Checksums-Sha256' THEN E'Checksums-Sha256\:\n ' || f.sha256sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
66 END || value, E'\n' ORDER BY mk.ordering, mk.key)
69 JOIN metadata_keys mk ON mk.key_id = sm.key_id
73 E'\nDirectory\: pool/' || SUBSTRING(f.filename FROM E'\\A(.*)/[^/]*\\Z')
75 E'\nPriority\: ' || pri.priority
77 E'\nSection\: ' || sec.section
82 JOIN src_associations sa ON s.id = sa.source
83 JOIN files f ON s.file=f.id
84 JOIN override o ON o.package = s.source
85 JOIN section sec ON o.section = sec.id
86 JOIN priority pri ON o.priority = pri.id
90 AND o.suite = :suite AND o.component = :component AND o.type = :dsc_type
96 def open_sources(suite, component):
98 dest = os.path.join(cnf['Dir::Root'], 'dists', suite.suite_name, component.component_name, 'source', 'Sources')
100 # create queue if it does not exist yet
101 if os.path.exists(dest) and os.path.isdir(dest):
104 dest_dir = os.path.dirname(dest)
105 if not os.path.exists(dest_dir):
106 umask = os.umask(00000)
107 os.makedirs(dest_dir, 02775)
113 def generate_sources(suite_id, component_id):
114 global _sources_query
116 session = DBConn().session()
117 dsc_type = session.query(OverrideType).filter_by(overridetype='dsc').one().overridetype_id
119 suite = session.query(Suite).get(suite_id)
120 component = session.query(Component).get(component_id)
122 output = open_sources(suite, component)
124 # run query and write Sources
125 r = session.execute(_sources_query, {"suite": suite_id, "component": component_id, "dsc_type": dsc_type})
127 print >>output, stanza
130 return ["generate sources", suite.suite_name, component.component_name]
132 #############################################################################
134 # Here be large dragons.
135 _packages_query = R"""
141 b.package AS package,
142 b.version AS version,
143 b.architecture AS architecture,
144 b.source AS source_id,
146 f.filename AS filename,
149 f.sha1sum AS sha1sum,
150 f.sha256sum AS sha256sum
153 JOIN bin_associations ba ON b.id = ba.bin
154 JOIN files f ON f.id = b.file
155 JOIN location l ON l.id = f.location
156 JOIN source s ON b.source = s.id
158 (b.architecture = :arch_all OR b.architecture = :arch) AND b.type = :type_name
159 AND ba.suite = :suite
160 AND l.component = :component
165 STRING_AGG(key || '\: ' || value, E'\n' ORDER BY mk.ordering, mk.key)
168 JOIN metadata_keys mk ON mk.key_id = bm.key_id
170 bm.bin_id = tmp.binary_id
171 AND key != 'Section' AND key != 'Priority'
173 || E'\nSection\: ' || sec.section
174 || E'\nPriority\: ' || pri.priority
175 || E'\nFilename\: pool/' || tmp.filename
176 || E'\nSize\: ' || tmp.size
177 || E'\nMD5sum\: ' || tmp.md5sum
178 || E'\nSHA1\: ' || tmp.sha1sum
179 || E'\nSHA256\: ' || tmp.sha256sum
183 JOIN override o ON o.package = tmp.package
184 JOIN section sec ON sec.id = o.section
185 JOIN priority pri ON pri.id = o.priority
189 architecture <> :arch_all
191 (architecture = :arch_all AND source_id IN (SELECT source_id FROM tmp WHERE architecture <> :arch_all))
193 (architecture = :arch_all AND source NOT IN (SELECT DISTINCT source FROM tmp WHERE architecture <> :arch_all))
196 o.type = :type_id AND o.suite = :suite AND o.component = :component
198 ORDER BY tmp.package, tmp.version
201 def open_packages(suite, component, architecture, type_name):
203 if type_name == 'udeb':
204 dest = os.path.join(cnf['Dir::Root'], 'dists', suite.suite_name, component.component_name, 'debian-installer', 'binary-%s' % architecture.arch_string, 'Packages')
206 dest = os.path.join(cnf['Dir::Root'], 'dists', suite.suite_name, component.component_name, 'binary-%s' % architecture.arch_string, 'Packages')
208 # create queue if it does not exist yet
209 if os.path.exists(dest) and os.path.isdir(dest):
212 dest_dir = os.path.dirname(dest)
213 if not os.path.exists(dest_dir):
214 umask = os.umask(00000)
215 os.makedirs(dest_dir, 02775)
221 def generate_packages(suite_id, component_id, architecture_id, type_name):
222 global _packages_query
224 session = DBConn().session()
225 arch_all_id = session.query(Architecture).filter_by(arch_string='all').one().arch_id
226 type_id = session.query(OverrideType).filter_by(overridetype=type_name).one().overridetype_id
228 suite = session.query(Suite).get(suite_id)
229 component = session.query(Component).get(component_id)
230 architecture = session.query(Architecture).get(architecture_id)
232 output = open_packages(suite, component, architecture, type_name)
234 r = session.execute(_packages_query, {"suite": suite_id, "component": component_id,
235 "arch": architecture_id, "type_id": type_id, "type_name": type_name, "arch_all": arch_all_id})
237 print >>output, stanza
242 return ["generate-packages", suite.suite_name, component.component_name, architecture.arch_string]
244 #############################################################################
249 Arguments = [('h',"help","Generate-Packages-Sources::Options::Help"),
250 ('s',"suite","Generate-Packages-Sources::Options::Suite"),
251 ('f',"force","Generate-Packages-Sources::Options::Force")]
253 suite_names = apt_pkg.ParseCommandLine(cnf.Cnf, Arguments, sys.argv)
255 Options = cnf.SubTree("Generate-Packages-Sources::Options")
259 if Options.has_key("Help"):
262 logger = daklog.Logger(cnf, 'generate-packages-sources2')
264 session = DBConn().session()
266 if Options.has_key("Suite"):
268 for s in suite_names:
269 suite = get_suite(s.lower(), session)
273 print "I: Cannot find suite %s" % s
274 logger.log(['Cannot find suite %s' % s])
276 suites = session.query(Suite).filter(Suite.untouchable == False).all()
278 force = Options.has_key("Force") and Options["Force"]
280 component_ids = [ c.component_id for c in session.query(Component).all() ]
287 if s.untouchable and not force:
288 utils.fubar("Refusing to touch %s (untouchable and not forced)" % s.suite_name)
289 for c in component_ids:
290 pool.apply_async(generate_sources, [s.suite_id, c], callback=log)
291 for a in s.architectures:
292 #pool.apply_async(generate_packages, [s.suite_id, c, a.arch_id, 'deb'], callback=log)
293 apply(generate_packages, [s.suite_id, c, a.arch_id, 'deb'])
294 #pool.apply_async(generate_packages, [s.suite_id, c, a.arch_id, 'udeb'], callback=log)
298 # this script doesn't change the database
301 if __name__ == '__main__':