4 Generate changelog entry between two suites
6 @contact: Debian FTP Master <ftpmaster@debian.org>
7 @copyright: 2010 Luca Falavigna <dktrkranz@debian.org>
8 @license: GNU General Public License version 2 or later
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2 of the License, or
14 # (at your option) any later version.
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 ################################################################################
27 # <bdefreese> !dinstall
28 # <dak> bdefreese: I guess the next dinstall will be in 0hr 1min 35sec
29 # <bdefreese> Wow I have great timing
30 # <DktrKranz> dating with dinstall, part II
32 # <Ganneff> dating with that monster? do you have good combat armor?
33 # <bdefreese> +5 Plate :)
34 # <Ganneff> not a good one then
35 # <Ganneff> so you wont even manage to bypass the lesser monster in front, unchecked
36 # <DktrKranz> asbesto belt
37 # <Ganneff> helps only a step
38 # <DktrKranz> the Ultimate Weapon: cron_turned_off
40 # <Ganneff> thats debadmin limited
41 # <Ganneff> no option for you
42 # <DktrKranz> bdefreese: it seems ftp-masters want dinstall to sexual harass us, are you good in running?
43 # <Ganneff> you can run but you can not hide
44 # <bdefreese> No, I'm old and fat :)
45 # <Ganneff> you can roll but you can not hide
48 # <DktrKranz> damn dinstall, you racist bastard
50 ################################################################################
54 from daklib.dbconn import *
55 from daklib import utils
57 ################################################################################
59 def usage (exit_code=0):
60 print """Generate changelog between two suites
63 make-changelog -s <suite> -b <base_suite> [OPTION]...
68 -h, --help show this help and exit
69 -s, --suite suite providing packages to compare
70 -b, --base-suite suite to be taken as reference for comparison
71 -n, --binnmu display binNMUs uploads instead of source ones
72 -T, --testing display changes entering testing"""
76 def get_source_uploads(suite, base_suite, session):
78 Returns changelogs for source uploads where version is newer than base.
81 query = """WITH base AS (
82 SELECT source, max(version) AS version
84 WHERE suite_name = :base_suite
86 UNION (SELECT source, CAST(0 AS debversion) AS version
88 WHERE suite_name = :suite
89 EXCEPT SELECT source, CAST(0 AS debversion) AS version
91 WHERE suite_name = :base_suite
94 SELECT source, max(version) AS version
96 WHERE suite_name = :suite
98 SELECT DISTINCT c.source, c.version, c.changelog
100 JOIN base b ON b.source = c.source
101 JOIN cur_suite cs ON cs.source = c.source
102 WHERE c.version > b.version
103 AND c.version <= cs.version
104 AND c.architecture LIKE '%source%'
105 ORDER BY c.source, c.version DESC"""
107 return session.execute(query, {'suite': suite, 'base_suite': base_suite})
109 def get_binary_uploads(suite, base_suite, session):
111 Returns changelogs for binary uploads where version is newer than base.
114 query = """WITH base as (
115 SELECT s.source, max(b.version) AS version, a.arch_string
117 JOIN binaries b ON b.source = s.id
118 JOIN bin_associations ba ON ba.bin = b.id
119 JOIN architecture a ON a.id = b.architecture
123 WHERE suite_name = :base_suite)
124 GROUP BY s.source, a.arch_string),
126 SELECT s.source, max(b.version) AS version, a.arch_string
128 JOIN binaries b ON b.source = s.id
129 JOIN bin_associations ba ON ba.bin = b.id
130 JOIN architecture a ON a.id = b.architecture
134 WHERE suite_name = :suite)
135 GROUP BY s.source, a.arch_string)
136 SELECT DISTINCT c.source, c.version, c.architecture, c.changelog
138 JOIN base b on b.source = c.source
139 JOIN cur_suite cs ON cs.source = c.source
140 WHERE c.version > b.version
141 AND c.version <= cs.version
142 AND c.architecture = b.arch_string
143 AND c.architecture = cs.arch_string
144 ORDER BY c.source, c.version DESC, c.architecture"""
146 return session.execute(query, {'suite': suite, 'base_suite': base_suite})
148 def testing_summary(summary, session):
150 Returns changes introduced in packages entering testing.
153 query = 'SELECT source, changelog FROM changelogs WHERE'
154 fd = open(summary, 'r')
155 for package in fd.read().splitlines():
156 package = package.split()
157 if package[1] != package[2]:
158 if package[1] == '(not_in_testing)':
160 query += " source = '%s' AND version > '%s' AND version <= '%s'" \
161 % (package[0], package[1], package[2])
162 query += " AND architecture LIKE '%source%' OR"
164 query += ' False ORDER BY source, version DESC;'
166 return session.execute(query)
168 def display_changes(uploads, index):
170 for upload in uploads:
171 if prev_upload and prev_upload != upload[0]:
174 prev_upload = upload[0]
177 Cnf = utils.get_conf()
178 Arguments = [('h','help','Make-Changelog::Options::Help'),
179 ('s','suite','Make-Changelog::Options::Suite','HasArg'),
180 ('b','base-suite','Make-Changelog::Options::Base-Suite','HasArg'),
181 ('n','binnmu','Make-Changelog::Options::binNMU'),
182 ('T', 'testing','Make-Changelog::Options::Testing')]
184 for i in ['help', 'suite', 'base-suite', 'binnmu', 'testing']:
185 if not Cnf.has_key('Make-Changelog::Options::%s' % (i)):
186 Cnf['Make-Changelog::Options::%s' % (i)] = ''
188 apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv)
189 Options = Cnf.SubTree('Make-Changelog::Options')
190 suite = Cnf['Make-Changelog::Options::Suite']
191 base_suite = Cnf['Make-Changelog::Options::Base-Suite']
192 binnmu = Cnf['Make-Changelog::Options::binNMU']
193 testing = Cnf['Make-Changelog::Options::Testing']
195 if Options['help'] or not (suite and base_suite) and not testing:
198 for s in suite, base_suite:
199 if not testing and not get_suite(s):
200 utils.fubar('Invalid suite "%s"' % s)
202 session = DBConn().session()
205 display_changes(testing_summary(Cnf['Changelogs::Testing'], session), 1)
207 display_changes(get_binary_uploads(suite, base_suite, session), 3)
209 display_changes(get_source_uploads(suite, base_suite, session), 2)
213 if __name__ == '__main__':