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 ################################################################################
56 from shutil import rmtree
57 from daklib.dbconn import *
58 from daklib import utils
59 from daklib.config import Config
60 from daklib.contents import UnpackedSource
61 from daklib.regexes import re_no_epoch
63 ################################################################################
65 def usage (exit_code=0):
66 print """Generate changelog between two suites
69 make-changelog -s <suite> -b <base_suite> [OPTION]...
74 -h, --help show this help and exit
75 -s, --suite suite providing packages to compare
76 -b, --base-suite suite to be taken as reference for comparison
77 -n, --binnmu display binNMUs uploads instead of source ones
79 -e, --export export interesting files from source packages"""
83 def get_source_uploads(suite, base_suite, session):
85 Returns changelogs for source uploads where version is newer than base.
88 query = """WITH base AS (
89 SELECT source, max(version) AS version
91 WHERE suite_name = :base_suite
93 UNION (SELECT source, CAST(0 AS debversion) AS version
95 WHERE suite_name = :suite
96 EXCEPT SELECT source, CAST(0 AS debversion) AS version
98 WHERE suite_name = :base_suite
101 SELECT source, max(version) AS version
103 WHERE suite_name = :suite
105 SELECT DISTINCT c.source, c.version, c.changelog
107 JOIN base b ON b.source = c.source
108 JOIN cur_suite cs ON cs.source = c.source
109 WHERE c.version > b.version
110 AND c.version <= cs.version
111 AND c.architecture LIKE '%source%'
112 ORDER BY c.source, c.version DESC"""
114 return session.execute(query, {'suite': suite, 'base_suite': base_suite})
116 def get_binary_uploads(suite, base_suite, session):
118 Returns changelogs for binary uploads where version is newer than base.
121 query = """WITH base as (
122 SELECT s.source, max(b.version) AS version, a.arch_string
124 JOIN binaries b ON b.source = s.id
125 JOIN bin_associations ba ON ba.bin = b.id
126 JOIN architecture a ON a.id = b.architecture
130 WHERE suite_name = :base_suite)
131 GROUP BY s.source, a.arch_string),
133 SELECT s.source, max(b.version) AS version, a.arch_string
135 JOIN binaries b ON b.source = s.id
136 JOIN bin_associations ba ON ba.bin = b.id
137 JOIN architecture a ON a.id = b.architecture
141 WHERE suite_name = :suite)
142 GROUP BY s.source, a.arch_string)
143 SELECT DISTINCT c.source, c.version, c.architecture, c.changelog
145 JOIN base b on b.source = c.source
146 JOIN cur_suite cs ON cs.source = c.source
147 WHERE c.version > b.version
148 AND c.version <= cs.version
149 AND c.architecture = b.arch_string
150 AND c.architecture = cs.arch_string
151 ORDER BY c.source, c.version DESC, c.architecture"""
153 return session.execute(query, {'suite': suite, 'base_suite': base_suite})
155 def display_changes(uploads, index):
157 for upload in uploads:
158 if prev_upload and prev_upload != upload[0]:
161 prev_upload = upload[0]
163 def export_files(session, pool, clpool):
165 Export interesting files from source packages.
170 files = ('changelog', 'copyright', 'NEWS.Debian', 'README.Debian')
171 stats = {'unpack': 0, 'created': 0, 'removed': 0, 'errors': 0, 'files': 0}
172 query = """SELECT DISTINCT s.source, su.suite_name AS suite, s.version, f.filename
174 JOIN newest_source n ON n.source = s.source AND n.version = s.version
175 JOIN src_associations sa ON sa.source = s.id
176 JOIN suite su ON su.id = sa.suite
177 JOIN files f ON f.id = s.file
178 ORDER BY s.source, suite"""
180 for p in session.execute(query):
181 if not sources.has_key(p[0]):
183 sources[p[0]][p[1]] = (re_no_epoch.sub('', p[2]), p[3])
185 for p in sources.keys():
186 for s in sources[p].keys():
187 path = os.path.join(clpool, '/'.join(sources[p][s][1].split('/')[:-1]))
188 if not os.path.exists(path):
190 if not os.path.exists(os.path.join(path, \
191 '%s_%s.changelog' % (p, sources[p][s][0]))):
192 if not unpack.has_key(os.path.join(pool, sources[p][s][1])):
193 unpack[os.path.join(pool, sources[p][s][1])] = (path, set())
194 unpack[os.path.join(pool, sources[p][s][1])][1].add(s)
196 for file in glob('%s/%s_%s*' % (path, p, sources[p][s][0])):
197 link = '%s%s' % (s, file.split('%s_%s' \
198 % (p, sources[p][s][0]))[1])
200 os.unlink(os.path.join(path, link))
203 os.link(os.path.join(path, file), os.path.join(path, link))
205 for p in unpack.keys():
206 package = os.path.splitext(os.path.basename(p))[0].split('_')
208 unpacked = UnpackedSource(p)
209 tempdir = unpacked.get_root_directory()
212 for f in glob(os.path.join(tempdir, 'debian', '*%s' % file)):
213 for s in unpack[p][1]:
214 suite = os.path.join(unpack[p][0], '%s.%s' \
215 % (s, os.path.basename(f)))
216 version = os.path.join(unpack[p][0], '%s_%s.%s' % \
217 (package[0], package[1], os.path.basename(f)))
218 if not os.path.exists(version):
220 stats['created'] += 1
225 os.link(version, suite)
226 stats['created'] += 1
229 print 'make-changelog: unable to unpack %s\n%s' % (p, e)
232 for root, dirs, files in os.walk(clpool):
234 if root.split('/')[-1] not in sources.keys():
235 if os.path.exists(root):
237 stats['removed'] += 1
239 if os.path.exists(os.path.join(root, file)):
240 if os.stat(os.path.join(root, file)).st_nlink == 1:
241 os.unlink(os.path.join(root, file))
242 stats['removed'] += 1
244 for root, dirs, files in os.walk(clpool):
245 stats['files'] += len(files)
246 print 'make-changelog: file exporting finished'
247 print ' * New packages unpacked: %d' % stats['unpack']
248 print ' * New files created: %d' % stats['created']
249 print ' * New files removed: %d' % stats['removed']
250 print ' * Unpack errors: %d' % stats['errors']
251 print ' * Files available into changelog pool: %d' % stats['files']
254 Cnf = utils.get_conf()
256 Arguments = [('h','help','Make-Changelog::Options::Help'),
257 ('s','suite','Make-Changelog::Options::Suite','HasArg'),
258 ('b','base-suite','Make-Changelog::Options::Base-Suite','HasArg'),
259 ('n','binnmu','Make-Changelog::Options::binNMU'),
260 ('e','export','Make-Changelog::Options::export')]
262 for i in ['help', 'suite', 'base-suite', 'binnmu', 'export']:
263 if not Cnf.has_key('Make-Changelog::Options::%s' % (i)):
264 Cnf['Make-Changelog::Options::%s' % (i)] = ''
266 apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv)
267 Options = Cnf.SubTree('Make-Changelog::Options')
268 suite = Cnf['Make-Changelog::Options::Suite']
269 base_suite = Cnf['Make-Changelog::Options::Base-Suite']
270 binnmu = Cnf['Make-Changelog::Options::binNMU']
271 export = Cnf['Make-Changelog::Options::export']
273 if Options['help'] or not (suite and base_suite) and not export:
276 for s in suite, base_suite:
277 if not export and not get_suite(s):
278 utils.fubar('Invalid suite "%s"' % s)
280 session = DBConn().session()
284 exportpath = os.path.join(Cnf['Dir::Export'], cnf.exportpath)
285 export_files(session, Cnf['Dir::Pool'], exportpath)
287 utils.fubar('No changelog export path defined')
289 display_changes(get_binary_uploads(suite, base_suite, session), 3)
291 display_changes(get_source_uploads(suite, base_suite, session), 2)
295 if __name__ == '__main__':