X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fmake_changelog.py;h=8fa172f63299b8ecdb6d7bfdb26e228e5531ca12;hb=310e68d162db3006294b9df3d4d715bb9ceac822;hp=7f251175de2e178c93528c625f4e8cc6da95f322;hpb=2e631b92af5c891a6f489973ae5386dc66b3cb49;p=dak.git diff --git a/dak/make_changelog.py b/dak/make_changelog.py index 7f251175..8fa172f6 100755 --- a/dak/make_changelog.py +++ b/dak/make_changelog.py @@ -58,6 +58,7 @@ from re import split from shutil import rmtree from daklib.dbconn import * from daklib import utils +from daklib.config import Config ################################################################################ @@ -67,7 +68,6 @@ def usage (exit_code=0): Usage: make-changelog -s -b [OPTION]... make-changelog -e - make-changelog -T Options: @@ -76,9 +76,7 @@ Options: -b, --base-suite suite to be taken as reference for comparison -n, --binnmu display binNMUs uploads instead of source ones - -e, --export export interesting files from source packages - - -T, --testing display changes entering testing""" + -e, --export export interesting files from source packages""" sys.exit(exit_code) @@ -154,26 +152,6 @@ def get_binary_uploads(suite, base_suite, session): return session.execute(query, {'suite': suite, 'base_suite': base_suite}) -def testing_summary(summary, session): - """ - Returns changes introduced in packages entering testing. - """ - - query = 'SELECT source, changelog FROM changelogs WHERE' - fd = open(summary, 'r') - for package in fd.read().splitlines(): - package = package.split() - if package[1] != package[2]: - if package[1] == '(not_in_testing)': - package[1] = 0 - query += " source = '%s' AND version > '%s' AND version <= '%s'" \ - % (package[0], package[1], package[2]) - query += " AND architecture LIKE '%source%' OR" - fd.close() - query += ' False ORDER BY source, version DESC;' - - return session.execute(query) - def display_changes(uploads, index): prev_upload = None for upload in uploads: @@ -182,7 +160,7 @@ def display_changes(uploads, index): print upload[index] prev_upload = upload[0] -def export_files(session, pool, clpool): +def export_files(session, pool, clpool, temppath): """ Export interesting files from source packages. """ @@ -200,7 +178,7 @@ def export_files(session, pool, clpool): sources[p[0]] = {} sources[p[0]][p[1]] = (p[2], p[3]) - tempdir = utils.temp_dirname(parent=clpool) + tempdir = utils.temp_dirname(parent=temppath) os.rmdir(tempdir) for p in sources.keys(): @@ -260,14 +238,14 @@ def export_files(session, pool, clpool): def main(): Cnf = utils.get_conf() + cnf = Config() Arguments = [('h','help','Make-Changelog::Options::Help'), ('s','suite','Make-Changelog::Options::Suite','HasArg'), ('b','base-suite','Make-Changelog::Options::Base-Suite','HasArg'), ('n','binnmu','Make-Changelog::Options::binNMU'), - ('e','export','Make-Changelog::Options::export'), - ('T', 'testing','Make-Changelog::Options::Testing')] + ('e','export','Make-Changelog::Options::export')] - for i in ['help', 'suite', 'base-suite', 'binnmu', 'export', 'testing']: + for i in ['help', 'suite', 'base-suite', 'binnmu', 'export']: if not Cnf.has_key('Make-Changelog::Options::%s' % (i)): Cnf['Make-Changelog::Options::%s' % (i)] = '' @@ -277,21 +255,22 @@ def main(): base_suite = Cnf['Make-Changelog::Options::Base-Suite'] binnmu = Cnf['Make-Changelog::Options::binNMU'] export = Cnf['Make-Changelog::Options::export'] - testing = Cnf['Make-Changelog::Options::Testing'] - if Options['help'] or not (suite and base_suite) and not testing and not export: + if Options['help'] or not (suite and base_suite) and not export: usage() for s in suite, base_suite: - if not testing and not export and not get_suite(s): + if not export and not get_suite(s): utils.fubar('Invalid suite "%s"' % s) session = DBConn().session() - if testing: - display_changes(testing_summary(Cnf['Changelogs::Testing'], session), 1) - elif export: - export_files(session, Cnf['Dir::Pool'], Cnf['Changelogs::Export']) + if export: + if cnf.exportpath: + exportpath = os.path.join(Cnf['Dir::Export'], cnf.exportpath) + export_files(session, Cnf['Dir::Pool'], exportpath, Cnf['Dir::TempPath']) + else: + utils.fubar('No changelog export path defined') elif binnmu: display_changes(get_binary_uploads(suite, base_suite, session), 3) else: