]> git.decadent.org.uk Git - dak.git/commitdiff
Merge remote branch 'ftpmaster/master' into override-cs-db
authorMark Hymers <mhy@debian.org>
Sun, 4 Sep 2011 18:17:03 +0000 (19:17 +0100)
committerMark Hymers <mhy@debian.org>
Sun, 4 Sep 2011 18:17:03 +0000 (19:17 +0100)
Conflicts:
dak/dakdb/update69.py

Signed-off-by: Mark Hymers <mhy@debian.org>
1  2 
dak/control_suite.py
dak/dakdb/update70.py

Simple merge
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..333c5d6b5ec16d66b5516a4eb3e137d67dc538d7
new file mode 100755 (executable)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,71 @@@
++#!/usr/bin/env python
++# coding=utf8
++
++"""
++Add suite options for overrides and control-suite to DB
++
++@contact: Debian FTP Master <ftpmaster@debian.org>
++@copyright: 2011 Mark Hymers <mhy@debian.org>
++@license: GNU General Public License version 2 or later
++"""
++
++# 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 psycopg2
++from daklib.dak_exceptions import DBUpdateError
++from daklib.config import Config
++
++################################################################################
++def do_update(self):
++    """
++    Add suite options for overrides and control-suite to DB
++    """
++    print __doc__
++    try:
++        cnf = Config()
++
++        c = self.db.cursor()
++
++        c.execute("ALTER TABLE suite ADD COLUMN overrideprocess BOOLEAN NOT NULL DEFAULT FALSE")
++        c.execute("COMMENT ON COLUMN suite.overrideprocess IS %s", ['If true, check-overrides will process the suite by default'])
++        c.execute("ALTER TABLE suite ADD COLUMN overrideorigin TEXT DEFAULT NULL")
++        c.execute("COMMENT ON COLUMN suite.overrideprocess IS %s", ['If NOT NULL, check-overrides will take missing overrides from the named suite'])
++
++        # Migrate config file values into database
++        if cnf.has_key("Check-Overrides::OverrideSuites"):
++            for suitename in cnf.SubTree("Check-Overrides::OverrideSuites").List():
++                if cnf.get("Check-Overrides::OverrideSuites::%s::Process" % suitename, "0") == "1":
++                    print "Marking %s to have overrides processed automatically" % suitename.lower()
++                    c.execute("UPDATE suite SET overrideprocess = TRUE WHERE suite_name = %s", [suitename.lower()])
++
++                originsuite = cnf.get("Check-Overrides::OverrideSuites::%s::OriginSuite" % suitename, '')
++                if originsuite != '':
++                    print "Setting %s to use %s as origin for overrides" % (suitename.lower(), originsuite.lower())
++                    c.execute("UPDATE suite SET overrideorigin = %s WHERE suite_name = %s", [originsuite.lower(), suitename.lower()])
++
++        c.execute("ALTER TABLE suite ADD COLUMN allowcsset BOOLEAN NOT NULL DEFAULT FALSE")
++        c.execute("COMMENT ON COLUMN suite.allowcsset IS %s", ['Allow control-suite to be used with the --set option without forcing'])
++
++        # Import historical hard-coded values
++        c.execute("UPDATE suite SET allowcsset = TRUE WHERE suite_name IN ('testing', 'squeeze-updates')")
++
++        c.execute("UPDATE config SET value = '70' WHERE name = 'db_revision'")
++        self.db.commit()
++
++    except psycopg2.ProgrammingError as msg:
++        self.db.rollback()
++        raise DBUpdateError('Unable to apply sick update 70, rollback issued. Error message : %s' % (str(msg)))