3 """ Create all the Release files
5 @contact: Debian FTPMaster <ftpmaster@debian.org>
6 @Copyright: 2001, 2002, 2006 Anthony Towns <ajt@debian.org>
7 @copyright: 2009 Joerg Jaspert <joerg@debian.org>
8 @license: GNU General Public License version 2 or later
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 ################################################################################
36 from daklib import utils
37 from daklib.dak_exceptions import *
38 from daklib.dbconn import *
39 from daklib.config import Config
41 ################################################################################
47 ################################################################################
49 def usage (exit_code=0):
50 print """Usage: dak generate-releases [OPTION]... [SUITE]...
51 Generate Release files (for SUITE).
53 -h, --help show this help and exit
54 -a, --apt-conf FILE use FILE instead of default apt.conf
55 -f, --force-touch ignore Untouchable directives in dak.conf
57 If no SUITE is given Release files are generated for all suites."""
61 ################################################################################
63 def add_tiffani (files, path, indexstem):
64 index = "%s.diff/Index" % (indexstem)
65 filepath = "%s/%s" % (path, index)
66 if os.path.exists(filepath):
67 #print "ALERT: there was a tiffani file %s" % (filepath)
70 def gen_i18n_index (files, tree, sec):
71 path = Cnf["Dir::Root"] + tree + "/"
72 i18n_path = "%s/i18n" % (sec)
73 if os.path.exists("%s/%s" % (path, i18n_path)):
74 index = "%s/Index" % (i18n_path)
75 out = open("%s/%s" % (path, index), "w")
77 for x in os.listdir("%s/%s" % (path, i18n_path)):
78 if x.startswith('Translation-'):
79 f = open("%s/%s/%s" % (path, i18n_path, x), "r")
80 size = os.fstat(f.fileno())[6]
82 sha1sum = apt_pkg.sha1sum(f)
84 out.write(" %s %7d %s\n" % (sha1sum, size, x))
88 def compressnames (tree,type,file):
89 compress = AptCnf.get("%s::%s::Compress" % (tree,type), AptCnf.get("Default::%s::Compress" % (type), ". gzip"))
92 uncompress = ("." not in cl)
93 for mode in compress.split():
98 result.append("<zcat/.gz>" + file)
100 result.append(file + ".gz")
101 elif mode == "bzip2":
103 result.append("<bzcat/.bz2>" + file)
105 result.append(file + ".bz2")
108 decompressors = { 'zcat' : gzip.GzipFile,
109 'bzip2' : bz2.BZ2File }
111 def print_md5sha_files (tree, files, hashop):
112 path = Cnf["Dir::Root"] + tree + "/"
120 (cat, ext, name) = (name[1:j], name[j+1:k], name[k+1:])
121 file_handle = decompressors[ cat ]( "%s%s%s" % (path, name, ext) )
122 contents = file_handle.read()
123 hashvalue = hashop(contents)
124 hashlen = len(contents)
127 file_handle = utils.open_file(path + name)
128 hashvalue = hashop(file_handle)
129 hashlen = os.stat(path + name).st_size
136 except CantOpenError:
137 print "ALERT: Couldn't open " + path + name
139 out.write(" %s %8d %s\n" % (hashvalue, hashlen, name))
141 def print_md5_files (tree, files):
142 print_md5sha_files (tree, files, apt_pkg.md5sum)
144 def print_sha1_files (tree, files):
145 print_md5sha_files (tree, files, apt_pkg.sha1sum)
147 def print_sha256_files (tree, files):
148 print_md5sha_files (tree, files, apt_pkg.sha256sum)
150 def write_release_file (relpath, suite, component, origin, label, arch, version="", suite_suffix="", notautomatic=""):
152 if os.access(relpath, os.F_OK):
153 if os.stat(relpath).st_nlink > 1:
155 release = open(relpath, "w")
157 utils.fubar("Couldn't write to " + relpath)
159 release.write("Archive: %s\n" % (suite))
161 release.write("Version: %s\n" % (version))
164 release.write("Component: %s/%s\n" % (suite_suffix,component))
166 release.write("Component: %s\n" % (component))
168 release.write("Origin: %s\n" % (origin))
169 release.write("Label: %s\n" % (label))
170 if notautomatic != "":
171 release.write("NotAutomatic: %s\n" % (notautomatic))
172 release.write("Architecture: %s\n" % (arch))
175 ################################################################################
178 global Cnf, AptCnf, out
181 Cnf = utils.get_conf()
184 Arguments = [('h',"help","Generate-Releases::Options::Help"),
185 ('a',"apt-conf","Generate-Releases::Options::Apt-Conf", "HasArg"),
186 ('f',"force-touch","Generate-Releases::Options::Force-Touch"),
188 for i in [ "help", "apt-conf", "force-touch" ]:
189 if not Cnf.has_key("Generate-Releases::Options::%s" % (i)):
190 Cnf["Generate-Releases::Options::%s" % (i)] = ""
192 suites = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
193 Options = Cnf.SubTree("Generate-Releases::Options")
198 if not Options["Apt-Conf"]:
199 Options["Apt-Conf"] = utils.which_apt_conf_file()
201 AptCnf = apt_pkg.newConfiguration()
202 apt_pkg.ReadConfigFileISC(AptCnf, Options["Apt-Conf"])
205 suites = Cnf.SubTree("Suite").List()
207 for suitename in suites:
208 print "Processing: " + suitename
209 SuiteBlock = Cnf.SubTree("Suite::" + suitename)
210 suiteobj = get_suite(suitename.lower())
212 print "ALERT: Cannot find suite %s!" % (suitename.lower())
215 # Use the canonical name
216 suite = suiteobj.suite_name.lower()
218 if suiteobj.untouchable and not Options["Force-Touch"]:
219 print "Skipping: " + suite + " (untouchable)"
222 origin = suiteobj.origin
223 label = suiteobj.label or suiteobj.origin
224 codename = suiteobj.codename or ""
226 if suiteobj.version and suiteobj.version != '-':
227 version = suiteobj.version
228 description = suiteobj.description or ""
230 architectures = get_suite_architectures(suite, skipall=True, skipsrc=True)
232 if suiteobj.notautomatic:
237 if SuiteBlock.has_key("Components"):
238 components = SuiteBlock.ValueList("Components")
242 suite_suffix = Cnf.Find("Dinstall::SuiteSuffix")
243 if components and suite_suffix:
244 longsuite = suite + "/" + suite_suffix
248 tree = SuiteBlock.get("Tree", "dists/%s" % (longsuite))
250 if AptCnf.has_key("tree::%s" % (tree)):
252 elif AptCnf.has_key("bindirectory::%s" % (tree)):
255 aptcnf_filename = os.path.basename(utils.which_apt_conf_file())
256 print "ALERT: suite %s not in %s, nor untouchable!" % (suite, aptcnf_filename)
259 print Cnf["Dir::Root"] + tree + "/Release"
260 out = open(Cnf["Dir::Root"] + tree + "/Release", "w")
262 out.write("Origin: %s\n" % (suiteobj.origin))
263 out.write("Label: %s\n" % (label))
264 out.write("Suite: %s\n" % (suite))
266 out.write("Version: %s\n" % (version))
268 out.write("Codename: %s\n" % (codename))
269 out.write("Date: %s\n" % (time.strftime("%a, %d %b %Y %H:%M:%S UTC", time.gmtime(time.time()))))
271 if suiteobj.validtime:
272 validtime=float(suiteobj.validtime)
273 out.write("Valid-Until: %s\n" % (time.strftime("%a, %d %b %Y %H:%M:%S UTC", time.gmtime(time.time()+validtime))))
275 if notautomatic != "":
276 out.write("NotAutomatic: %s\n" % (notautomatic))
277 out.write("Architectures: %s\n" % (" ".join([a.arch_string for a in architectures])))
279 out.write("Components: %s\n" % (" ".join(components)))
282 out.write("Description: %s\n" % (description))
286 if AptCnf.has_key("tree::%s" % (tree)):
287 if AptCnf.has_key("tree::%s::Contents" % (tree)):
290 for x in os.listdir("%s/%s" % (Cnf["Dir::Root"], tree)):
291 if x.startswith('Contents-'):
292 if x.endswith('.diff'):
293 files.append("%s/Index" % (x))
297 for sec in AptCnf["tree::%s::Sections" % (tree)].split():
298 for arch in AptCnf["tree::%s::Architectures" % (tree)].split():
300 filepath = "%s/%s/Sources" % (sec, arch)
301 for cfile in compressnames("tree::%s" % (tree), "Sources", filepath):
303 add_tiffani(files, Cnf["Dir::Root"] + tree, filepath)
305 disks = "%s/disks-%s" % (sec, arch)
306 diskspath = Cnf["Dir::Root"]+tree+"/"+disks
307 if os.path.exists(diskspath):
308 for dir in os.listdir(diskspath):
309 if os.path.exists("%s/%s/md5sum.txt" % (diskspath, dir)):
310 files.append("%s/%s/md5sum.txt" % (disks, dir))
312 filepath = "%s/binary-%s/Packages" % (sec, arch)
313 for cfile in compressnames("tree::%s" % (tree), "Packages", filepath):
315 add_tiffani(files, Cnf["Dir::Root"] + tree, filepath)
318 rel = "%s/%s/Release" % (sec, arch)
320 rel = "%s/binary-%s/Release" % (sec, arch)
321 relpath = Cnf["Dir::Root"]+tree+"/"+rel
322 write_release_file(relpath, suite, sec, origin, label, arch, version, suite_suffix, notautomatic)
324 gen_i18n_index(files, tree, sec)
326 if AptCnf.has_key("tree::%s/main" % (tree)):
327 for dis in ["main", "contrib", "non-free"]:
328 if not AptCnf.has_key("tree::%s/%s" % (tree, dis)): continue
329 sec = AptCnf["tree::%s/%s::Sections" % (tree,dis)].split()[0]
330 if sec != "debian-installer":
331 print "ALERT: weird non debian-installer section in %s" % (tree)
333 for arch in AptCnf["tree::%s/%s::Architectures" % (tree,dis)].split():
334 if arch != "source": # always true
335 rel = "%s/%s/binary-%s/Release" % (dis, sec, arch)
336 relpath = Cnf["Dir::Root"]+tree+"/"+rel
337 write_release_file(relpath, suite, dis, origin, label, arch, version, suite_suffix, notautomatic)
339 for cfile in compressnames("tree::%s/%s" % (tree,dis),
341 "%s/%s/binary-%s/Packages" % (dis, sec, arch)):
343 elif AptCnf.has_key("tree::%s::FakeDI" % (tree)):
344 usetree = AptCnf["tree::%s::FakeDI" % (tree)]
345 sec = AptCnf["tree::%s/main::Sections" % (usetree)].split()[0]
346 if sec != "debian-installer":
347 print "ALERT: weird non debian-installer section in %s" % (usetree)
349 for arch in AptCnf["tree::%s/main::Architectures" % (usetree)].split():
350 if arch != "source": # always true
351 for cfile in compressnames("tree::%s/main" % (usetree), "Packages", "main/%s/binary-%s/Packages" % (sec, arch)):
354 elif AptCnf.has_key("bindirectory::%s" % (tree)):
355 for cfile in compressnames("bindirectory::%s" % (tree), "Packages", AptCnf["bindirectory::%s::Packages" % (tree)]):
356 files.append(cfile.replace(tree+"/","",1))
357 for cfile in compressnames("bindirectory::%s" % (tree), "Sources", AptCnf["bindirectory::%s::Sources" % (tree)]):
358 files.append(cfile.replace(tree+"/","",1))
360 print "ALERT: no tree/bindirectory for %s" % (tree)
362 out.write("MD5Sum:\n")
363 print_md5_files(tree, files)
365 print_sha1_files(tree, files)
366 out.write("SHA256:\n")
367 print_sha256_files(tree, files)
370 if Cnf.has_key("Dinstall::SigningKeyring"):
371 keyring = "--secret-keyring \"%s\"" % Cnf["Dinstall::SigningKeyring"]
372 if Cnf.has_key("Dinstall::SigningPubKeyring"):
373 keyring += " --keyring \"%s\"" % Cnf["Dinstall::SigningPubKeyring"]
375 arguments = "--no-options --batch --no-tty --armour"
376 signkeyids=cnf.signingkeyids.split()
378 dest = Cnf["Dir::Root"] + tree + "/Release.gpg"
379 if os.path.exists(dest):
381 inlinedest = Cnf["Dir::Root"] + tree + "/InRelease"
382 if os.path.exists(inlinedest):
383 os.unlink(inlinedest)
385 for keyid in signkeyids:
387 defkeyid = "--default-key %s" % keyid
390 os.system("gpg %s %s %s --detach-sign <%s >>%s" %
391 (keyring, defkeyid, arguments,
392 Cnf["Dir::Root"] + tree + "/Release", dest))
393 os.system("gpg %s %s %s --clearsign <%s >>%s" %
394 (keyring, defkeyid, arguments,
395 Cnf["Dir::Root"] + tree + "/Release", inlinedest))
397 #######################################################################################
399 if __name__ == '__main__':