1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
#!/usr/bin/python
#vim:set fileencoding=utf-8:
#
# apt-listchanges - Show changelog entries between the installed versions
# of a set of packages and the versions contained in
# corresponding .deb files
#
# Copyright (C) 2000-2006 Matt Zimmerman <mdz@debian.org>
# Copyright (C) 2006 Pierre Habouzit <madcoder@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
#
import sys
import apt_pkg
import locale
import gettext
import anydbm
import commands
sys.path += ['./apt-listchanges', '/usr/share/apt-listchanges']
import apt_listchanges, DebianFiles, ALCConfig
locale.setlocale(locale.LC_ALL, '')
def _(x):
try:
return gettext.translation('apt-listchanges').lgettext(x)
except:
return x
def main():
config = ALCConfig.ALCConfig()
config.read('/etc/apt/listchanges.conf')
debs = config.getopt(sys.argv)
if (debs == None or len(debs) == 0) and not config.apt_mode:
config.usage(1);
apt_pkg.InitSystem()
if config.apt_mode:
debs = apt_listchanges.read_apt_pipeline(config)
if config.frontend == 'none':
sys.exit(0)
# If apt is in quiet (loggable) mode, we should make our output
# loggable too
if config.quiet == 1:
config.frontend = 'text'
elif config.quiet >= 2:
config.frontend = 'mail'
if not config.show_all:
status = DebianFiles.ControlParser()
status.readfile('/var/lib/dpkg/status')
status.makeindex('Package')
if config.save_seen:
seen = anydbm.open(config.save_seen, 'c')
# Will replace seen after changes have actually been seen
seen_new = {}
all_news = []
all_changelogs = []
notes = []
# Mapping of source->binary packages
source_packages = {}
# Flag for each source package, only set if changelogs were actually found
found = {}
frontend = apt_listchanges.make_frontend(config.frontend, len(debs), config)
if frontend == None:
sys.stderr.write(_("Unknown frontend: %s\n") % config.frontend)
sys.exit(1)
# Main loop
for deb in debs:
pkg = DebianFiles.Package(deb)
binpackage = pkg.binary
srcpackage = pkg.source
srcversion = pkg.source_version
frontend.update_progress()
# Show changes later than fromversion
fromversion = None
#print "Processing %s (%s)" % (binpackage, srcpackage)
if not config.show_all:
if config.save_seen and seen.has_key(srcpackage):
fromversion = seen[srcpackage]
else:
statusentry = status.find('Package', binpackage)
if statusentry and statusentry.installed():
fromversion = statusentry.sourceversion()
else:
# Package not installed or seen
notes.append(_("%s: will be newly installed") % binpackage)
continue
source_packages.setdefault(srcpackage, []).append(binpackage)
if found.has_key(srcpackage):
continue
if not config.show_all and apt_pkg.VersionCompare(fromversion, srcversion) >= 0:
notes.append(_("%s: Version %s has already been seen") % (binpackage,
srcversion))
continue
(news, changelog) = pkg.extract_changes(config.which, fromversion)
if news or changelog:
found[srcpackage] = 1
if news:
all_news.append(news)
if changelog:
all_changelogs.append(changelog)
if config.save_seen:
seen_new[srcpackage] = srcversion
frontend.progress_done()
if config.save_seen:
seen.close()
for batch in (all_news, all_changelogs):
batch.sort(lambda a, b: -cmp(a.urgency, b.urgency) or
cmp(a.package, b.package))
if config.headers:
changes = ''
news = ''
for rec in all_news:
if not rec.changes:
continue
package = rec.package
header = _('News for %s') % package
if len(filter(lambda x: x != package, source_packages[package])) > 0:
# Differing source and binary packages
header += ' (' + ' '.join(source_packages[package]) + ')'
news += '--- ' + header + ' ---\n' + rec.changes
for rec in all_changelogs:
if not rec.changes:
continue
package = rec.package
header = _('Changes for %s') % package
if len(filter(lambda x: x != package, source_packages[package])) > 0:
# Differing source and binary packages
header += ' (' + ' '.join(source_packages[package]) + ')'
changes += '--- ' + header + ' ---\n' + rec.changes
else:
news = ''.join([x.changes for x in all_news if x.changes])
changes = ''.join([x.changes for x in all_changelogs if x.changes])
if config.verbose and len(notes) > 0:
changes += _("Informational notes") + ":\n\n" + '\n'.join(notes)
if news:
frontend.display_output(news)
if changes:
frontend.display_output(changes)
if news or changes:
if config.confirm:
ans = frontend.confirm()
if not ans:
sys.stderr.write(_('Aborting')+'.\n')
sys.exit(10)
elif ans < 0:
sys.stderr.write(_("Confirmation failed, don't save seen state")+'.\n')
sys.exit(0)
hostname = commands.getoutput('hostname')
if config.email_address and changes:
subject = _("apt-listchanges: changelogs for %s") % hostname
apt_listchanges.mail_changes(config.email_address, changes, subject)
if config.email_address and news:
subject = _("apt-listchanges: news for %s") % hostname
apt_listchanges.mail_changes(config.email_address, news, subject)
# Write out seen db
if config.save_seen:
seen = anydbm.open(config.save_seen, 'c')
for (key, value) in seen_new.items():
seen[key] = value
seen.close()
elif not config.apt_mode and not source_packages.keys():
sys.stderr.write("apt-listchanges: "
+ _("didn't find any valid .deb archives") + "\n")
sys.exit(1)
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
sys.exit(10)
|