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