3 """ Generate Packages/Sources files
5 @contact: Debian FTPMaster <ftpmaster@debian.org>
6 @copyright: 2000, 2001, 2002, 2006 James Troup <james@nocrew.org>
7 @copyright: 2009 Mark Hymers <mhy@debian.org>
8 @copyright: 2010 Joerg Jaspert <joerg@debian.org>
9 @license: GNU General Public License version 2 or later
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 ################################################################################
33 from tempfile import mkstemp, mkdtemp
35 from multiprocessing import Pool, TimeoutError
37 from daklib import daklog
38 from daklib.dbconn import *
39 from daklib.config import Config
41 ################################################################################
43 Options = None #: Commandline arguments parsed into this
44 Logger = None #: Our logging object
45 results = [] #: Results of the subprocesses
47 ################################################################################
49 def usage (exit_code=0):
50 print """Usage: dak generate-packages-sources [OPTIONS]
51 Generate the Packages/Sources files
53 -s, --suite=SUITE(s) process this suite
54 Default: All suites not marked 'untouchable'
55 -f, --force Allow processing of untouchable suites
56 CAREFUL: Only to be used at point release time!
57 -h, --help show this help and exit
59 SUITE can be a space seperated list, e.g.
60 --suite=unstable testing
65 ################################################################################
67 def generate_packages_sources(arch, suite, tmppath):
69 Generate Packages/Sources files with apt-ftparchive for the given suite/arch
72 @param suite: Suite name
75 @param arch: Architecture name
78 @param tmppath: The temporary path to work ing
84 ArchiveDir "/srv/ftp-master.debian.org/ftp/";
85 OverrideDir "/srv/ftp-master.debian.org/scripts/override/";
86 CacheDir "/srv/ftp-master.debian.org/database/";
91 Packages::Compress "bzip2 gzip";
92 Sources::Compress "bzip2 gzip";
93 Contents::Compress "gzip";
95 MaxContentsChange 25000;
101 Contents::Header "/srv/ftp-master.debian.org/dak/config/debian/Contents.top";
109 apt_trees["oldstable"]="""
110 tree "dists/oldstable"
112 FileList "/srv/ftp-master.debian.org/database/dists/oldstable_$(SECTION)_binary-$(ARCH).list";
113 SourceFileList "/srv/ftp-master.debian.org/database/dists/oldstable_$(SECTION)_source.list";
114 Sections "main contrib non-free";
115 Architectures "%(arch)s";
116 BinOverride "override.lenny.$(SECTION)";
117 ExtraOverride "override.lenny.extra.$(SECTION)";
118 SrcOverride "override.lenny.$(SECTION).src";
122 apt_trees["di"]["oldstable"]="""
123 tree "dists/oldstable/main"
125 FileList "/srv/ftp-master.debian.org/database/dists/oldstable_main_$(SECTION)_binary-$(ARCH).list";
126 Sections "debian-installer";
127 Architectures "%(arch)s";
128 BinOverride "override.lenny.main.$(SECTION)";
129 SrcOverride "override.lenny.main.src";
130 BinCacheDB "packages-debian-installer-$(ARCH).db";
131 Packages::Extensions ".udeb";
135 tree "dists/oldstable/non-free"
137 FileList "/srv/ftp-master.debian.org/database/dists/oldstable_non-free_$(SECTION)_binary-$(ARCH).list";
138 Sections "debian-installer";
139 Architectures "%(arch)s";
140 BinOverride "override.lenny.main.$(SECTION)";
141 SrcOverride "override.lenny.main.src";
142 BinCacheDB "packages-debian-installer-$(ARCH).db";
143 Packages::Extensions ".udeb";
148 apt_trees["stable"]="""
151 FileList "/srv/ftp-master.debian.org/database/dists/stable_$(SECTION)_binary-$(ARCH).list";
152 SourceFileList "/srv/ftp-master.debian.org/database/dists/stable_$(SECTION)_source.list";
153 Sections "main contrib non-free";
154 Architectures "%(arch)s";
155 BinOverride "override.squeeze.$(SECTION)";
156 ExtraOverride "override.squeeze.extra.$(SECTION)";
157 SrcOverride "override.squeeze.$(SECTION).src";
161 apt_trees["di"]["stable"]="""
162 tree "dists/stable/main"
164 FileList "/srv/ftp-master.debian.org/database/dists/stable_main_$(SECTION)_binary-$(ARCH).list";
165 Sections "debian-installer";
166 Architectures "%(arch)s";
167 BinOverride "override.squeeze.main.$(SECTION)";
168 SrcOverride "override.squeeze.main.src";
169 BinCacheDB "packages-debian-installer-$(ARCH).db";
170 Packages::Extensions ".udeb";
174 tree "dists/stable/non-free"
176 FileList "/srv/ftp-master.debian.org/database/dists/stable_non-free_$(SECTION)_binary-$(ARCH).list";
177 Sections "debian-installer";
178 Architectures "%(arch)s";
179 BinOverride "override.squeeze.main.$(SECTION)";
180 SrcOverride "override.squeeze.main.src";
181 BinCacheDB "packages-debian-installer-$(ARCH).db";
182 Packages::Extensions ".udeb";
187 apt_trees["squeeze-updates"]="""
188 tree "dists/squeeze-updates"
190 FileList "/srv/ftp-master.debian.org/database/dists/squeeze-updates_$(SECTION)_binary-$(ARCH).list";
191 SourceFileList "/srv/ftp-master.debian.org/database/dists/squeeze-updates_$(SECTION)_source.list";
192 Sections "main contrib non-free";
193 Architectures "%(arch)s";
194 BinOverride "override.squeeze.$(SECTION)";
195 ExtraOverride "override.squeeze.extra.$(SECTION)";
196 SrcOverride "override.squeeze.$(SECTION).src";
201 apt_trees["testing"]="""
204 FakeDI "dists/unstable";
205 FileList "/srv/ftp-master.debian.org/database/dists/testing_$(SECTION)_binary-$(ARCH).list";
206 SourceFileList "/srv/ftp-master.debian.org/database/dists/testing_$(SECTION)_source.list";
207 Sections "main contrib non-free";
208 Architectures "%(arch)s";
209 BinOverride "override.wheezy.$(SECTION)";
210 ExtraOverride "override.wheezy.extra.$(SECTION)";
211 SrcOverride "override.wheezy.$(SECTION).src";
215 apt_trees["di"]["testing"]="""
216 tree "dists/testing/main"
218 FileList "/srv/ftp-master.debian.org/database/dists/testing_main_$(SECTION)_binary-$(ARCH).list";
219 Sections "debian-installer";
220 Architectures "%(arch)s";
221 BinOverride "override.wheezy.main.$(SECTION)";
222 SrcOverride "override.wheezy.main.src";
223 BinCacheDB "packages-debian-installer-$(ARCH).db";
224 Packages::Extensions ".udeb";
228 tree "dists/testing/non-free"
230 FileList "/srv/ftp-master.debian.org/database/dists/testing_non-free_$(SECTION)_binary-$(ARCH).list";
231 Sections "debian-installer";
232 Architectures "%(arch)s";
233 BinOverride "override.wheezy.main.$(SECTION)";
234 SrcOverride "override.wheezy.main.src";
235 BinCacheDB "packages-debian-installer-$(ARCH).db";
236 Packages::Extensions ".udeb";
241 apt_trees["unstable"]="""
242 tree "dists/unstable"
244 FileList "/srv/ftp-master.debian.org/database/dists/unstable_$(SECTION)_binary-$(ARCH).list";
245 SourceFileList "/srv/ftp-master.debian.org/database/dists/unstable_$(SECTION)_source.list";
246 Sections "main contrib non-free";
247 Architectures "%(arch)s";
248 BinOverride "override.sid.$(SECTION)";
249 ExtraOverride "override.sid.extra.$(SECTION)";
250 SrcOverride "override.sid.$(SECTION).src";
253 apt_trees["di"]["unstable"]="""
254 tree "dists/unstable/main"
256 FileList "/srv/ftp-master.debian.org/database/dists/unstable_main_$(SECTION)_binary-$(ARCH).list";
257 Sections "debian-installer";
258 Architectures "%(arch)s";
259 BinOverride "override.sid.main.$(SECTION)";
260 SrcOverride "override.sid.main.src";
261 BinCacheDB "packages-debian-installer-$(ARCH).db";
262 Packages::Extensions ".udeb";
266 tree "dists/unstable/non-free"
268 FileList "/srv/ftp-master.debian.org/database/dists/unstable_non-free_$(SECTION)_binary-$(ARCH).list";
269 Sections "debian-installer";
270 Architectures "%(arch)s";
271 BinOverride "override.sid.main.$(SECTION)";
272 SrcOverride "override.sid.main.src";
273 BinCacheDB "packages-debian-installer-$(ARCH).db";
274 Packages::Extensions ".udeb";
279 apt_trees["experimental"]="""
280 tree "dists/experimental"
282 FileList "/srv/ftp-master.debian.org/database/dists/experimental_$(SECTION)_binary-$(ARCH).list";
283 SourceFileList "/srv/ftp-master.debian.org/database/dists/experimental_$(SECTION)_source.list";
284 Sections "main contrib non-free";
285 Architectures "%(arch)s";
286 BinOverride "override.sid.$(SECTION)";
287 SrcOverride "override.sid.$(SECTION).src";
290 apt_trees["di"]["experimental"]="""
291 tree "dists/experimental/main"
293 FileList "/srv/ftp-master.debian.org/database/dists/experimental_main_$(SECTION)_binary-$(ARCH).list";
294 Sections "debian-installer";
295 Architectures "%(arch)s";
296 BinOverride "override.sid.main.$(SECTION)";
297 SrcOverride "override.sid.main.src";
298 BinCacheDB "packages-debian-installer-$(ARCH).db";
299 Packages::Extensions ".udeb";
303 tree "dists/experimental/non-free"
305 FileList "/srv/ftp-master.debian.org/database/dists/experimental_non-free_$(SECTION)_binary-$(ARCH).list";
306 Sections "debian-installer";
307 Architectures "%(arch)s";
308 BinOverride "override.sid.main.$(SECTION)";
309 SrcOverride "override.sid.main.src";
310 BinCacheDB "packages-debian-installer-$(ARCH).db";
311 Packages::Extensions ".udeb";
316 apt_trees["testing-proposed-updates"]="""
317 tree "dists/testing-proposed-updates"
319 FileList "/srv/ftp-master.debian.org/database/dists/testing-proposed-updates_$(SECTION)_binary-$(ARCH).list";
320 SourceFileList "/srv/ftp-master.debian.org/database/dists/testing-proposed-updates_$(SECTION)_source.list";
321 Sections "main contrib non-free";
322 Architectures "%(arch)s";
323 BinOverride "override.wheezy.$(SECTION)";
324 ExtraOverride "override.wheezy.extra.$(SECTION)";
325 SrcOverride "override.wheezy.$(SECTION).src";
329 apt_trees["di"]["testing-proposed-updates"]="""
330 tree "dists/testing-proposed-updates/main"
332 FileList "/srv/ftp-master.debian.org/database/dists/testing-proposed-updates_main_$(SECTION)_binary-$(ARCH).list";
333 Sections "debian-installer";
334 Architectures "%(arch)s";
335 BinOverride "override.wheezy.main.$(SECTION)";
336 SrcOverride "override.wheezy.main.src";
337 BinCacheDB "packages-debian-installer-$(ARCH).db";
338 Packages::Extensions ".udeb";
343 apt_trees["proposed-updates"]="""
344 tree "dists/proposed-updates"
346 FileList "/srv/ftp-master.debian.org/database/dists/proposed-updates_$(SECTION)_binary-$(ARCH).list";
347 SourceFileList "/srv/ftp-master.debian.org/database/dists/proposed-updates_$(SECTION)_source.list";
348 Sections "main contrib non-free";
349 Architectures "%(arch)s";
350 BinOverride "override.squeeze.$(SECTION)";
351 ExtraOverride "override.squeeze.extra.$(SECTION)";
352 SrcOverride "override.squeeze.$(SECTION).src";
356 apt_trees["di"]["proposed-updates"]="""
357 tree "dists/proposed-updates/main"
359 FileList "/srv/ftp-master.debian.org/database/dists/proposed-updates_main_$(SECTION)_binary-$(ARCH).list";
360 Sections "debian-installer";
361 Architectures "%(arch)s";
362 BinOverride "override.squeeze.main.$(SECTION)";
363 SrcOverride "override.squeeze.main.src";
364 BinCacheDB "packages-debian-installer-$(ARCH).db";
365 Packages::Extensions ".udeb";
369 apt_trees["oldstable-proposed-updates"]="""
370 tree "dists/oldstable-proposed-updates"
372 FileList "/srv/ftp-master.debian.org/database/dists/oldstable-proposed-updates_$(SECTION)_binary-$(ARCH).list";
373 SourceFileList "/srv/ftp-master.debian.org/database/dists/oldstable-proposed-updates_$(SECTION)_source.list";
374 Sections "main contrib non-free";
375 Architectures "%(arch)s";
376 BinOverride "override.lenny.$(SECTION)";
377 ExtraOverride "override.lenny.extra.$(SECTION)";
378 SrcOverride "override.lenny.$(SECTION).src";
382 apt_trees["di"]["oldstable-proposed-updates"]="""
383 tree "dists/oldstable-proposed-updates/main"
385 FileList "/srv/ftp-master.debian.org/database/dists/oldstable-proposed-updates_main_$(SECTION)_binary-$(ARCH).list";
386 Sections "debian-installer";
387 Architectures "%(arch)s";
388 BinOverride "override.lenny.main.$(SECTION)";
389 SrcOverride "override.lenny.main.src";
390 BinCacheDB "packages-debian-installer-$(ARCH).db";
391 Packages::Extensions ".udeb";
399 (ac_fd, ac_name) = mkstemp(dir=tmppath, suffix=suite, prefix=arch)
400 os.write(ac_fd, DAILY_APT_CONF)
401 # here we want to generate the tree entries
402 os.write(ac_fd, apt_trees[suite] % {'arch': arch})
403 # this special casing needs to go away, but this whole thing may just want an
404 # aptconfig class anyways
406 if arch == 'hurd-i386' and suite == 'experimental':
408 elif apt_trees["di"].has_key(suite):
410 os.write(ac_fd, apt_trees["di"][suite] %
411 {'arch': arch, 'contentsline': 'Contents "$(DIST)/../Contents-udeb";'})
413 os.write(ac_fd, apt_trees["di"][suite] % {'arch': arch, 'contentsline': ''})
416 print "Going to run apt-ftparchive for %s/%s" % (arch, suite)
417 # Run apt-ftparchive generate
418 # We dont want to add a -q or -qq here, this output should go into our logs, sometimes
419 # it has errormessages we like to see
420 os.environ['GZIP'] = '--rsyncable'
422 (result, output) = commands.getstatusoutput('apt-ftparchive -o APT::FTPArchive::Contents=off generate %s' % os.path.basename(ac_name))
423 sn="a-f %s,%s: " % (suite, arch)
424 print sn + output.replace('\n', '\n%s' % (sn))
427 # Clean up any left behind files
442 return arch.arch_string
449 ########################################################################
450 ########################################################################
453 global Options, Logger, results
457 for i in ["Help", "Suite", "Force"]:
458 if not cnf.has_key("Generate-Packages-Sources::Options::%s" % (i)):
459 cnf["Generate-Packages-Sources::Options::%s" % (i)] = ""
461 Arguments = [('h',"help","Generate-Packages-Sources::Options::Help"),
462 ('s',"suite","Generate-Packages-Sources::Options::Suite"),
463 ('f',"force","Generate-Packages-Sources::Options::Force")]
465 suite_names = apt_pkg.ParseCommandLine(cnf.Cnf, Arguments, sys.argv)
466 Options = cnf.SubTree("Generate-Packages-Sources::Options")
471 Logger = daklog.Logger('generate-packages-sources')
473 session = DBConn().session()
478 for s in suite_names:
479 suite = get_suite(s.lower(), session)
483 print "cannot find suite %s" % s
484 Logger.log(['cannot find suite %s' % s])
486 suites=session.query(Suite).filter(Suite.untouchable == False).all()
488 startdir = os.getcwd()
489 os.chdir(cnf["Dir::TempPath"])
492 # For each given suite, each architecture, run one apt-ftparchive
495 # Setup a multiprocessing Pool. As many workers as we have CPU cores.
497 arch_list=get_suite_architectures(s.suite_name, skipsrc=False, skipall=False, session=session)
498 Logger.log(['generating output for Suite %s, Architectures %s' % (s.suite_name, map(sname, arch_list))])
500 pool.apply_async(generate_packages_sources, (a.arch_string, s.suite_name, cnf["Dir::TempPath"]), callback=get_result)
502 # No more work will be added to our pool, close it and then wait for all to finish
507 Logger.log(['Trouble, something with a-f broke, resultcodes: %s' % (results)])
508 print "Trouble, something with a-f broke, resultcodes: %s" % (results)
512 # this script doesn't change the database
516 #######################################################################################
518 if __name__ == '__main__':