]> git.decadent.org.uk Git - dak.git/blob - dak/rm.py
dak rm: warn when working on oldstable as on stable
[dak.git] / dak / rm.py
1 #!/usr/bin/env python
2
3 """ General purpose package removal tool for ftpmaster """
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006  James Troup <james@nocrew.org>
5 # Copyright (C) 2010 Alexander Reichle-Schmehl <tolimar@debian.org>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
21 ################################################################################
22
23 # o OpenBSD team wants to get changes incorporated into IPF. Darren no
24 #    respond.
25 # o Ask again -> No respond. Darren coder supreme.
26 # o OpenBSD decide to make changes, but only in OpenBSD source
27 #    tree. Darren hears, gets angry! Decides: "LICENSE NO ALLOW!"
28 # o Insert Flame War.
29 # o OpenBSD team decide to switch to different packet filter under BSD
30 #    license. Because Project Goal: Every user should be able to make
31 #    changes to source tree. IPF license bad!!
32 # o Darren try get back: says, NetBSD, FreeBSD allowed! MUAHAHAHAH!!!
33 # o Theo say: no care, pf much better than ipf!
34 # o Darren changes mind: changes license. But OpenBSD will not change
35 #    back to ipf. Darren even much more bitter.
36 # o Darren so bitterbitter. Decides: I'LL GET BACK BY FORKING OPENBSD AND
37 #    RELEASING MY OWN VERSION. HEHEHEHEHE.
38
39 #                        http://slashdot.org/comments.pl?sid=26697&cid=2883271
40
41 ################################################################################
42
43 import commands
44 import os
45 import sys
46 import apt_pkg
47 import apt_inst
48 from re import sub
49
50 from daklib.config import Config
51 from daklib.dbconn import *
52 from daklib import utils
53 from daklib.dak_exceptions import *
54 from daklib.regexes import re_strip_source_version, re_build_dep_arch
55 import debianbts as bts
56
57 ################################################################################
58
59 Options = None
60
61 ################################################################################
62
63 def usage (exit_code=0):
64     print """Usage: dak rm [OPTIONS] PACKAGE[...]
65 Remove PACKAGE(s) from suite(s).
66
67   -a, --architecture=ARCH    only act on this architecture
68   -b, --binary               remove binaries only
69   -c, --component=COMPONENT  act on this component
70   -C, --carbon-copy=EMAIL    send a CC of removal message to EMAIL
71   -d, --done=BUG#            send removal message as closure to bug#
72   -D, --do-close             also close all bugs associated to that package
73   -h, --help                 show this help and exit
74   -m, --reason=MSG           reason for removal
75   -n, --no-action            don't do anything
76   -p, --partial              don't affect override files
77   -R, --rdep-check           check reverse dependencies
78   -s, --suite=SUITE          act on this suite
79   -S, --source-only          remove source only
80
81 ARCH, BUG#, COMPONENT and SUITE can be comma (or space) separated lists, e.g.
82     --architecture=amd64,i386"""
83
84     sys.exit(exit_code)
85
86 ################################################################################
87
88 # "Hudson: What that's great, that's just fucking great man, now what
89 #  the fuck are we supposed to do? We're in some real pretty shit now
90 #  man...That's it man, game over man, game over, man! Game over! What
91 #  the fuck are we gonna do now? What are we gonna do?"
92
93 def game_over():
94     answer = utils.our_raw_input("Continue (y/N)? ").lower()
95     if answer != "y":
96         print "Aborted."
97         sys.exit(1)
98
99 ################################################################################
100
101 def reverse_depends_check(removals, suites, arches=None):
102     cnf = Config()
103
104     print "Checking reverse dependencies..."
105     components = get_component_names()
106     dep_problem = 0
107     p2c = {}
108     all_broken = {}
109     if arches:
110         all_arches = set(arches)
111     else:
112         all_arches = set([x.arch_string for x in get_suite_architectures(suites[0])])
113     all_arches -= set(["source", "all"])
114     for architecture in all_arches:
115         deps = {}
116         sources = {}
117         virtual_packages = {}
118         for component in components:
119             filename = "%s/dists/%s/%s/binary-%s/Packages.gz" % (cnf["Dir::Root"], suites[0], component, architecture)
120             # apt_pkg.ParseTagFile needs a real file handle and can't handle a GzipFile instance...
121             (fd, temp_filename) = utils.temp_filename()
122             (result, output) = commands.getstatusoutput("gunzip -c %s > %s" % (filename, temp_filename))
123             if (result != 0):
124                 utils.fubar("Gunzip invocation failed!\n%s\n" % (output), result)
125             # Also check for udebs
126             filename = "%s/dists/%s/%s/debian-installer/binary-%s/Packages.gz" % (cnf["Dir::Root"], suites[0], component, architecture)
127             if os.path.exists(filename):
128                 (result, output) = commands.getstatusoutput("gunzip -c %s >> %s" % (filename, temp_filename))
129                 if (result != 0):
130                     utils.fubar("Gunzip invocation failed!\n%s\n" % (output), result)
131             packages = utils.open_file(temp_filename)
132             Packages = apt_pkg.ParseTagFile(packages)
133             while Packages.Step():
134                 package = Packages.Section.Find("Package")
135                 source = Packages.Section.Find("Source")
136                 if not source:
137                     source = package
138                 elif ' ' in source:
139                     source = source.split(' ', 1)[0]
140                 sources[package] = source
141                 depends = Packages.Section.Find("Depends")
142                 if depends:
143                     deps[package] = depends
144                 provides = Packages.Section.Find("Provides")
145                 # Maintain a counter for each virtual package.  If a
146                 # Provides: exists, set the counter to 0 and count all
147                 # provides by a package not in the list for removal.
148                 # If the counter stays 0 at the end, we know that only
149                 # the to-be-removed packages provided this virtual
150                 # package.
151                 if provides:
152                     for virtual_pkg in provides.split(","):
153                         virtual_pkg = virtual_pkg.strip()
154                         if virtual_pkg == package: continue
155                         if not virtual_packages.has_key(virtual_pkg):
156                             virtual_packages[virtual_pkg] = 0
157                         if package not in removals:
158                             virtual_packages[virtual_pkg] += 1
159                 p2c[package] = component
160             packages.close()
161             os.unlink(temp_filename)
162
163         # If a virtual package is only provided by the to-be-removed
164         # packages, treat the virtual package as to-be-removed too.
165         for virtual_pkg in virtual_packages.keys():
166             if virtual_packages[virtual_pkg] == 0:
167                 removals.append(virtual_pkg)
168
169         # Check binary dependencies (Depends)
170         for package in deps.keys():
171             if package in removals: continue
172             parsed_dep = []
173             try:
174                 parsed_dep += apt_pkg.ParseDepends(deps[package])
175             except ValueError, e:
176                 print "Error for package %s: %s" % (package, e)
177             for dep in parsed_dep:
178                 # Check for partial breakage.  If a package has a ORed
179                 # dependency, there is only a dependency problem if all
180                 # packages in the ORed depends will be removed.
181                 unsat = 0
182                 for dep_package, _, _ in dep:
183                     if dep_package in removals:
184                         unsat += 1
185                 if unsat == len(dep):
186                     component = p2c[package]
187                     source = sources[package]
188                     if component != "main":
189                         source = "%s/%s" % (source, component)
190                     all_broken.setdefault(source, {}).setdefault(package, set()).add(architecture)
191                     dep_problem = 1
192
193     if all_broken:
194         print "# Broken Depends:"
195         for source, bindict in sorted(all_broken.items()):
196             lines = []
197             for binary, arches in sorted(bindict.items()):
198                 if arches == all_arches:
199                     lines.append(binary)
200                 else:
201                     lines.append('%s [%s]' % (binary, ' '.join(sorted(arches))))
202             print '%s: %s' % (source, lines[0])
203             for line in lines[1:]:
204                 print ' ' * (len(source) + 2) + line
205         print
206
207     # Check source dependencies (Build-Depends and Build-Depends-Indep)
208     all_broken.clear()
209     for component in components:
210         filename = "%s/dists/%s/%s/source/Sources.gz" % (cnf["Dir::Root"], suites[0], component)
211         # apt_pkg.ParseTagFile needs a real file handle and can't handle a GzipFile instance...
212         (fd, temp_filename) = utils.temp_filename()
213         result, output = commands.getstatusoutput("gunzip -c %s > %s" % (filename, temp_filename))
214         if result != 0:
215             sys.stderr.write("Gunzip invocation failed!\n%s\n" % (output))
216             sys.exit(result)
217         sources = utils.open_file(temp_filename, "r")
218         Sources = apt_pkg.ParseTagFile(sources)
219         while Sources.Step():
220             source = Sources.Section.Find("Package")
221             if source in removals: continue
222             parsed_dep = []
223             for build_dep_type in ["Build-Depends", "Build-Depends-Indep"]:
224                 build_dep = Sources.Section.get(build_dep_type)
225                 if build_dep:
226                     # Remove [arch] information since we want to see breakage on all arches
227                     build_dep = re_build_dep_arch.sub("", build_dep)
228                     try:
229                         parsed_dep += apt_pkg.ParseDepends(build_dep)
230                     except ValueError, e:
231                         print "Error for source %s: %s" % (source, e)
232             for dep in parsed_dep:
233                 unsat = 0
234                 for dep_package, _, _ in dep:
235                     if dep_package in removals:
236                         unsat += 1
237                 if unsat == len(dep):
238                     if component != "main":
239                         source = "%s/%s" % (source, component)
240                     all_broken.setdefault(source, set()).add(utils.pp_deps(dep))
241                     dep_problem = 1
242         sources.close()
243         os.unlink(temp_filename)
244
245     if all_broken:
246         print "# Broken Build-Depends:"
247         for source, bdeps in sorted(all_broken.items()):
248             bdeps = sorted(bdeps)
249             print '%s: %s' % (source, bdeps[0])
250             for bdep in bdeps[1:]:
251                 print ' ' * (len(source) + 2) + bdep
252         print
253
254     if dep_problem:
255         print "Dependency problem found."
256         if not Options["No-Action"]:
257             game_over()
258     else:
259         print "No dependency problem found."
260     print
261
262 ################################################################################
263
264 def main ():
265     global Options
266
267     cnf = Config()
268
269     Arguments = [('h',"help","Rm::Options::Help"),
270                  ('a',"architecture","Rm::Options::Architecture", "HasArg"),
271                  ('b',"binary", "Rm::Options::Binary-Only"),
272                  ('c',"component", "Rm::Options::Component", "HasArg"),
273                  ('C',"carbon-copy", "Rm::Options::Carbon-Copy", "HasArg"), # Bugs to Cc
274                  ('d',"done","Rm::Options::Done", "HasArg"), # Bugs fixed
275                  ('D',"do-close","Rm::Options::Do-Close"),
276                  ('R',"rdep-check", "Rm::Options::Rdep-Check"),
277                  ('m',"reason", "Rm::Options::Reason", "HasArg"), # Hysterical raisins; -m is old-dinstall option for rejection reason
278                  ('n',"no-action","Rm::Options::No-Action"),
279                  ('p',"partial", "Rm::Options::Partial"),
280                  ('s',"suite","Rm::Options::Suite", "HasArg"),
281                  ('S',"source-only", "Rm::Options::Source-Only"),
282                  ]
283
284     for i in [ "architecture", "binary-only", "carbon-copy", "component",
285                "done", "help", "no-action", "partial", "rdep-check", "reason",
286                "source-only", "Do-Close" ]:
287         if not cnf.has_key("Rm::Options::%s" % (i)):
288             cnf["Rm::Options::%s" % (i)] = ""
289     if not cnf.has_key("Rm::Options::Suite"):
290         cnf["Rm::Options::Suite"] = "unstable"
291
292     arguments = apt_pkg.ParseCommandLine(cnf.Cnf, Arguments, sys.argv)
293     Options = cnf.SubTree("Rm::Options")
294
295     if Options["Help"]:
296         usage()
297
298     session = DBConn().session()
299
300     # Sanity check options
301     if not arguments:
302         utils.fubar("need at least one package name as an argument.")
303     if Options["Architecture"] and Options["Source-Only"]:
304         utils.fubar("can't use -a/--architecture and -S/--source-only options simultaneously.")
305     if Options["Binary-Only"] and Options["Source-Only"]:
306         utils.fubar("can't use -b/--binary-only and -S/--source-only options simultaneously.")
307     if Options.has_key("Carbon-Copy") and not Options.has_key("Done"):
308         utils.fubar("can't use -C/--carbon-copy without also using -d/--done option.")
309     if Options["Architecture"] and not Options["Partial"]:
310         utils.warn("-a/--architecture implies -p/--partial.")
311         Options["Partial"] = "true"
312     if Options["Do-Close"] and not Options["Done"]:
313         utils.fubar("No.")
314     if Options["Do-Close"] and Options["Binary-Only"]:
315         utils.fubar("No.")
316     if Options["Do-Close"] and Options["Source-Only"]:
317         utils.fubar("No.")
318     if Options["Do-Close"] and Options["Suite"] != 'unstable':
319         utils.fubar("No.")
320
321     # Force the admin to tell someone if we're not doing a 'dak
322     # cruft-report' inspired removal (or closing a bug, which counts
323     # as telling someone).
324     if not Options["No-Action"] and not Options["Carbon-Copy"] \
325            and not Options["Done"] and Options["Reason"].find("[auto-cruft]") == -1:
326         utils.fubar("Need a -C/--carbon-copy if not closing a bug and not doing a cruft removal.")
327
328     # Process -C/--carbon-copy
329     #
330     # Accept 3 types of arguments (space separated):
331     #  1) a number - assumed to be a bug number, i.e. nnnnn@bugs.debian.org
332     #  2) the keyword 'package' - cc's $package@packages.debian.org for every argument
333     #  3) contains a '@' - assumed to be an email address, used unmofidied
334     #
335     carbon_copy = []
336     for copy_to in utils.split_args(Options.get("Carbon-Copy")):
337         if copy_to.isdigit():
338             if cnf.has_key("Dinstall::BugServer"):
339                 carbon_copy.append(copy_to + "@" + cnf["Dinstall::BugServer"])
340             else:
341                 utils.fubar("Asked to send mail to #%s in BTS but Dinstall::BugServer is not configured" % copy_to)
342         elif copy_to == 'package':
343             for package in arguments:
344                 if cnf.has_key("Dinstall::PackagesServer"):
345                     carbon_copy.append(package + "@" + cnf["Dinstall::PackagesServer"])
346                 if cnf.has_key("Dinstall::TrackingServer"):
347                     carbon_copy.append(package + "@" + cnf["Dinstall::TrackingServer"])
348         elif '@' in copy_to:
349             carbon_copy.append(copy_to)
350         else:
351             utils.fubar("Invalid -C/--carbon-copy argument '%s'; not a bug number, 'package' or email address." % (copy_to))
352
353     if Options["Binary-Only"]:
354         field = "b.package"
355     else:
356         field = "s.source"
357     con_packages = "AND %s IN (%s)" % (field, ", ".join([ repr(i) for i in arguments ]))
358
359     (con_suites, con_architectures, con_components, check_source) = \
360                  utils.parse_args(Options)
361
362     # Additional suite checks
363     suite_ids_list = []
364     suites = utils.split_args(Options["Suite"])
365     suites_list = utils.join_with_commas_and(suites)
366     if not Options["No-Action"]:
367         for suite in suites:
368             s = get_suite(suite, session=session)
369             if s is not None:
370                 suite_ids_list.append(s.suite_id)
371             if suite in ("oldstable", "stable"):
372                 print "**WARNING** About to remove from the (old)stable suite!"
373                 print "This should only be done just prior to a (point) release and not at"
374                 print "any other time."
375                 game_over()
376             elif suite == "testing":
377                 print "**WARNING About to remove from the testing suite!"
378                 print "There's no need to do this normally as removals from unstable will"
379                 print "propogate to testing automagically."
380                 game_over()
381
382     # Additional architecture checks
383     if Options["Architecture"] and check_source:
384         utils.warn("'source' in -a/--argument makes no sense and is ignored.")
385
386     # Additional component processing
387     over_con_components = con_components.replace("c.id", "component")
388
389     print "Working...",
390     sys.stdout.flush()
391     to_remove = []
392     maintainers = {}
393
394     # We have 3 modes of package selection: binary-only, source-only
395     # and source+binary.  The first two are trivial and obvious; the
396     # latter is a nasty mess, but very nice from a UI perspective so
397     # we try to support it.
398
399     # XXX: TODO: This all needs converting to use placeholders or the object
400     #            API. It's an SQL injection dream at the moment
401
402     if Options["Binary-Only"]:
403         # Binary-only
404         q = session.execute("SELECT b.package, b.version, a.arch_string, b.id, b.maintainer FROM binaries b, bin_associations ba, architecture a, suite su, files f, location l, component c WHERE ba.bin = b.id AND ba.suite = su.id AND b.architecture = a.id AND b.file = f.id AND f.location = l.id AND l.component = c.id %s %s %s %s" % (con_packages, con_suites, con_components, con_architectures))
405         for i in q.fetchall():
406             to_remove.append(i)
407     else:
408         # Source-only
409         source_packages = {}
410         q = session.execute("SELECT l.path, f.filename, s.source, s.version, 'source', s.id, s.maintainer FROM source s, src_associations sa, suite su, files f, location l, component c WHERE sa.source = s.id AND sa.suite = su.id AND s.file = f.id AND f.location = l.id AND l.component = c.id %s %s %s" % (con_packages, con_suites, con_components))
411         for i in q.fetchall():
412             source_packages[i[2]] = i[:2]
413             to_remove.append(i[2:])
414         if not Options["Source-Only"]:
415             # Source + Binary
416             binary_packages = {}
417             # First get a list of binary package names we suspect are linked to the source
418             q = session.execute("SELECT DISTINCT b.package FROM binaries b, source s, src_associations sa, suite su, files f, location l, component c WHERE b.source = s.id AND sa.source = s.id AND sa.suite = su.id AND s.file = f.id AND f.location = l.id AND l.component = c.id %s %s %s" % (con_packages, con_suites, con_components))
419             for i in q.fetchall():
420                 binary_packages[i[0]] = ""
421             # Then parse each .dsc that we found earlier to see what binary packages it thinks it produces
422             for i in source_packages.keys():
423                 filename = "/".join(source_packages[i])
424                 try:
425                     dsc = utils.parse_changes(filename, dsc_file=1)
426                 except CantOpenError:
427                     utils.warn("couldn't open '%s'." % (filename))
428                     continue
429                 for package in dsc.get("binary").split(','):
430                     package = package.strip()
431                     binary_packages[package] = ""
432             # Then for each binary package: find any version in
433             # unstable, check the Source: field in the deb matches our
434             # source package and if so add it to the list of packages
435             # to be removed.
436             for package in binary_packages.keys():
437                 q = session.execute("SELECT l.path, f.filename, b.package, b.version, a.arch_string, b.id, b.maintainer FROM binaries b, bin_associations ba, architecture a, suite su, files f, location l, component c WHERE ba.bin = b.id AND ba.suite = su.id AND b.architecture = a.id AND b.file = f.id AND f.location = l.id AND l.component = c.id %s %s %s AND b.package = '%s'" % (con_suites, con_components, con_architectures, package))
438                 for i in q.fetchall():
439                     filename = "/".join(i[:2])
440                     control = apt_pkg.ParseSection(apt_inst.debExtractControl(utils.open_file(filename)))
441                     source = control.Find("Source", control.Find("Package"))
442                     source = re_strip_source_version.sub('', source)
443                     if source_packages.has_key(source):
444                         to_remove.append(i[2:])
445     print "done."
446
447     if not to_remove:
448         print "Nothing to do."
449         sys.exit(0)
450
451     # If we don't have a reason; spawn an editor so the user can add one
452     # Write the rejection email out as the <foo>.reason file
453     if not Options["Reason"] and not Options["No-Action"]:
454         (fd, temp_filename) = utils.temp_filename()
455         editor = os.environ.get("EDITOR","vi")
456         result = os.system("%s %s" % (editor, temp_filename))
457         if result != 0:
458             utils.fubar ("vi invocation failed for `%s'!" % (temp_filename), result)
459         temp_file = utils.open_file(temp_filename)
460         for line in temp_file.readlines():
461             Options["Reason"] += line
462         temp_file.close()
463         os.unlink(temp_filename)
464
465     # Generate the summary of what's to be removed
466     d = {}
467     for i in to_remove:
468         package = i[0]
469         version = i[1]
470         architecture = i[2]
471         maintainer = i[4]
472         maintainers[maintainer] = ""
473         if not d.has_key(package):
474             d[package] = {}
475         if not d[package].has_key(version):
476             d[package][version] = []
477         if architecture not in d[package][version]:
478             d[package][version].append(architecture)
479
480     maintainer_list = []
481     for maintainer_id in maintainers.keys():
482         maintainer_list.append(get_maintainer(maintainer_id).name)
483     summary = ""
484     removals = d.keys()
485     removals.sort()
486     versions = []
487     for package in removals:
488         versions = d[package].keys()
489         versions.sort(apt_pkg.VersionCompare)
490         for version in versions:
491             d[package][version].sort(utils.arch_compare_sw)
492             summary += "%10s | %10s | %s\n" % (package, version, ", ".join(d[package][version]))
493     print "Will remove the following packages from %s:" % (suites_list)
494     print
495     print summary
496     print "Maintainer: %s" % ", ".join(maintainer_list)
497     if Options["Done"]:
498         print "Will also close bugs: "+Options["Done"]
499     if carbon_copy:
500         print "Will also send CCs to: " + ", ".join(carbon_copy)
501     if Options["Do-Close"]:
502         print "Will also close associated bug reports."
503     print
504     print "------------------- Reason -------------------"
505     print Options["Reason"]
506     print "----------------------------------------------"
507     print
508
509     if Options["Rdep-Check"]:
510         arches = utils.split_args(Options["Architecture"])
511         reverse_depends_check(removals, suites, arches)
512
513     # If -n/--no-action, drop out here
514     if Options["No-Action"]:
515         sys.exit(0)
516
517     print "Going to remove the packages now."
518     game_over()
519
520     whoami = utils.whoami()
521     date = commands.getoutput('date -R')
522
523     # Log first; if it all falls apart I want a record that we at least tried.
524     logfile = utils.open_file(cnf["Rm::LogFile"], 'a')
525     logfile.write("=========================================================================\n")
526     logfile.write("[Date: %s] [ftpmaster: %s]\n" % (date, whoami))
527     logfile.write("Removed the following packages from %s:\n\n%s" % (suites_list, summary))
528     if Options["Done"]:
529         logfile.write("Closed bugs: %s\n" % (Options["Done"]))
530     logfile.write("\n------------------- Reason -------------------\n%s\n" % (Options["Reason"]))
531     logfile.write("----------------------------------------------\n")
532
533     # Do the same in rfc822 format
534     logfile822 = utils.open_file(cnf["Rm::LogFile822"], 'a')
535     logfile822.write("Date: %s\n" % date)
536     logfile822.write("Ftpmaster: %s\n" % whoami)
537     logfile822.write("Suite: %s\n" % suites_list)
538     sources = []
539     binaries = []
540     for package in summary.split("\n"):
541         for row in package.split("\n"):
542             element = row.split("|")
543             if len(element) == 3:
544                 if element[2].find("source") > 0:
545                     sources.append("%s_%s" % tuple(elem.strip(" ") for elem in element[:2]))
546                     element[2] = sub("source\s?,?", "", element[2]).strip(" ")
547                 if element[2]:
548                     binaries.append("%s_%s [%s]" % tuple(elem.strip(" ") for elem in element))
549     if sources:
550         logfile822.write("Sources:\n")
551         for source in sources:
552             logfile822.write(" %s\n" % source)
553     if binaries:
554         logfile822.write("Binaries:\n")
555         for binary in binaries:
556             logfile822.write(" %s\n" % binary)
557     logfile822.write("Reason: %s\n" % Options["Reason"].replace('\n', '\n '))
558     if Options["Done"]:
559         logfile822.write("Bug: %s\n" % Options["Done"])
560
561     dsc_type_id = get_override_type('dsc', session).overridetype_id
562     deb_type_id = get_override_type('deb', session).overridetype_id
563
564     # Do the actual deletion
565     print "Deleting...",
566     sys.stdout.flush()
567
568     for i in to_remove:
569         package = i[0]
570         architecture = i[2]
571         package_id = i[3]
572         for suite_id in suite_ids_list:
573             if architecture == "source":
574                 session.execute("DELETE FROM src_associations WHERE source = :packageid AND suite = :suiteid",
575                                 {'packageid': package_id, 'suiteid': suite_id})
576                 #print "DELETE FROM src_associations WHERE source = %s AND suite = %s" % (package_id, suite_id)
577             else:
578                 session.execute("DELETE FROM bin_associations WHERE bin = :packageid AND suite = :suiteid",
579                                 {'packageid': package_id, 'suiteid': suite_id})
580                 #print "DELETE FROM bin_associations WHERE bin = %s AND suite = %s" % (package_id, suite_id)
581             # Delete from the override file
582             if not Options["Partial"]:
583                 if architecture == "source":
584                     type_id = dsc_type_id
585                 else:
586                     type_id = deb_type_id
587                 # TODO: Again, fix this properly to remove the remaining non-bind argument
588                 session.execute("DELETE FROM override WHERE package = :package AND type = :typeid AND suite = :suiteid %s" % (over_con_components), {'package': package, 'typeid': type_id, 'suiteid': suite_id})
589     session.commit()
590     print "done."
591
592     # If we don't have a Bug server configured, we're done
593     if not cnf.has_key("Dinstall::BugServer"):
594         if Options["Done"] or Options["Do-Close"]:
595             print "Cannot send mail to BugServer as Dinstall::BugServer is not configured"
596
597         logfile.write("=========================================================================\n")
598         logfile.close()
599
600         logfile822.write("\n")
601         logfile822.close()
602
603         return
604
605     # read common subst variables for all bug closure mails
606     Subst_common = {}
607     Subst_common["__RM_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
608     Subst_common["__BUG_SERVER__"] = cnf["Dinstall::BugServer"]
609     Subst_common["__CC__"] = "X-DAK: dak rm"
610     if carbon_copy:
611         Subst_common["__CC__"] += "\nCc: " + ", ".join(carbon_copy)
612     Subst_common["__SUITE_LIST__"] = suites_list
613     Subst_common["__SUBJECT__"] = "Removed package(s) from %s" % (suites_list)
614     Subst_common["__ADMIN_ADDRESS__"] = cnf["Dinstall::MyAdminAddress"]
615     Subst_common["__DISTRO__"] = cnf["Dinstall::MyDistribution"]
616     Subst_common["__WHOAMI__"] = whoami
617
618     # Send the bug closing messages
619     if Options["Done"]:
620         Subst_close_rm = Subst_common
621         bcc = []
622         if cnf.Find("Dinstall::Bcc") != "":
623             bcc.append(cnf["Dinstall::Bcc"])
624         if cnf.Find("Rm::Bcc") != "":
625             bcc.append(cnf["Rm::Bcc"])
626         if bcc:
627             Subst_close_rm["__BCC__"] = "Bcc: " + ", ".join(bcc)
628         else:
629             Subst_close_rm["__BCC__"] = "X-Filler: 42"
630         summarymail = "%s\n------------------- Reason -------------------\n%s\n" % (summary, Options["Reason"])
631         summarymail += "----------------------------------------------\n"
632         Subst_close_rm["__SUMMARY__"] = summarymail
633
634         whereami = utils.where_am_i()
635         Archive = get_archive(whereami, session)
636         if Archive is None:
637             utils.warn("Cannot find archive %s.  Setting blank values for origin" % whereami)
638             Subst_close_rm["__MASTER_ARCHIVE__"] = ""
639             Subst_close_rm["__PRIMARY_MIRROR__"] = ""
640         else:
641             Subst_close_rm["__MASTER_ARCHIVE__"] = Archive.origin_server
642             Subst_close_rm["__PRIMARY_MIRROR__"] = Archive.primary_mirror
643
644         for bug in utils.split_args(Options["Done"]):
645             Subst_close_rm["__BUG_NUMBER__"] = bug
646             if Options["Do-Close"]:
647                 mail_message = utils.TemplateSubst(Subst_close_rm,cnf["Dir::Templates"]+"/rm.bug-close-with-related")
648             else:
649                 mail_message = utils.TemplateSubst(Subst_close_rm,cnf["Dir::Templates"]+"/rm.bug-close")
650             utils.send_mail(mail_message)
651
652     # close associated bug reports
653     if Options["Do-Close"]:
654         Subst_close_other = Subst_common
655         bcc = []
656         wnpp = utils.parse_wnpp_bug_file()
657         if len(versions) == 1:
658             Subst_close_other["__VERSION__"] = versions[0]
659         else:
660             utils.fubar("Closing bugs with multiple package versions is not supported.  Do it yourself.")
661         if bcc:
662             Subst_close_other["__BCC__"] = "Bcc: " + ", ".join(bcc)
663         else:
664             Subst_close_other["__BCC__"] = "X-Filler: 42"
665         # at this point, I just assume, that the first closed bug gives
666         # some useful information on why the package got removed
667         Subst_close_other["__BUG_NUMBER__"] = utils.split_args(Options["Done"])[0]
668         if len(sources) == 1:
669             source_pkg = source.split("_", 1)[0]
670         else:
671             utils.fubar("Closing bugs for multiple source pakcages is not supported.  Do it yourself.")
672         Subst_close_other["__BUG_NUMBER_ALSO__"] = ""
673         Subst_close_other["__SOURCE__"] = source_pkg
674         other_bugs = bts.get_bugs('src', source_pkg, 'status', 'open')
675         if other_bugs:
676             logfile.write("Also closing bug(s):")
677             logfile822.write("Also-Bugs:")
678             for bug in other_bugs:
679                 Subst_close_other["__BUG_NUMBER_ALSO__"] += str(bug) + "-done@" + cnf["Dinstall::BugServer"] + ","
680                 logfile.write(" " + str(bug))
681                 logfile822.write(" " + str(bug))
682             logfile.write("\n")
683             logfile822.write("\n")
684         if source_pkg in wnpp.keys():
685             logfile.write("Also closing WNPP bug(s):")
686             logfile822.write("Also-WNPP:")
687             for bug in wnpp[source_pkg]:
688                 # the wnpp-rm file we parse also contains our removal
689                 # bugs, filtering that out
690                 if bug != Subst_close_other["__BUG_NUMBER__"]:
691                     Subst_close_other["__BUG_NUMBER_ALSO__"] += str(bug) + "-done@" + cnf["Dinstall::BugServer"] + ","
692                     logfile.write(" " + str(bug))
693                     logfile822.write(" " + str(bug))
694             logfile.write("\n")
695             logfile822.write("\n")
696
697         mail_message = utils.TemplateSubst(Subst_close_other,cnf["Dir::Templates"]+"/rm.bug-close-related")
698         if Subst_close_other["__BUG_NUMBER_ALSO__"]:
699             utils.send_mail(mail_message)
700
701
702     logfile.write("=========================================================================\n")
703     logfile.close()
704
705     logfile822.write("\n")
706     logfile822.close()
707
708 #######################################################################################
709
710 if __name__ == '__main__':
711     main()