]> git.decadent.org.uk Git - dak.git/commitdiff
Remove unused columns
authorJoerg Jaspert <joerg@debian.org>
Sun, 19 Sep 2010 13:57:26 +0000 (15:57 +0200)
committerJoerg Jaspert <joerg@debian.org>
Sun, 19 Sep 2010 13:57:26 +0000 (15:57 +0200)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
config/debian/dak.conf
dak/dakdb/update37.py [new file with mode: 0755]
dak/update_db.py
daklib/dbconn.py
docs/README.quotes

index 718bdc248fe1a246e39e786da143b980264d76ce..0ba61e394800bf559c7b218fc8e028a50c3f60f8 100644 (file)
@@ -195,7 +195,6 @@ Suite
          contrib;
          non-free;
        };
-       ChangeLogBase "dists/stable/";
   };
 
   Proposed-Updates
@@ -207,7 +206,6 @@ Suite
          non-free;
        };
        CopyChanges "dists/proposed-updates/";
-       CopyDotDak "/srv/ftp-master.debian.org/queue/proposed-updates/";
        CommentsDir "/srv/ftp-master.debian.org/queue/p-u-new/COMMENTS/";
        OverrideSuite "stable";
        ValidTime 604800; // 7 days
diff --git a/dak/dakdb/update37.py b/dak/dakdb/update37.py
new file mode 100755 (executable)
index 0000000..5a6714b
--- /dev/null
@@ -0,0 +1,57 @@
+#!/usr/bin/env python
+# coding=utf8
+
+"""
+Remove unused table columns
+
+@contact: Debian FTP Master <ftpmaster@debian.org>
+@copyright: 2010 Joerg Jaspert <joerg@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
+
+################################################################################
+
+
+# <Ganneff> everyone - send your condolences to twerner, a new ftpmaster
+# <mhy> twerner: you poor, poor bastard
+# <mhy> twerner: look what it's done to me and Ganneff
+# <mhy> he used to be only 1.3m tall and I used to be female
+# <Tolimar> twerner: Congratulations... Uhm... Thorsta?
+# <Tolimar> Thorstine?
+# <DktrKranz> Thorstine seems the name of a candy we eat in Italy
+
+################################################################################
+
+import psycopg2
+from daklib.dak_exceptions import DBUpdateError
+
+################################################################################
+def do_update(self):
+    """
+    Remove unused table columns
+    """
+    print __doc__
+    try:
+        c = self.db.cursor()
+        c.execute('ALTER TABLE suite DROP COLUMN copydotdak')
+        c.execute('ALTER TABLE suite DROP COLUMN changelogbase')
+        c.execute("UPDATE config SET value = '37' WHERE name = 'db_revision'")
+        self.db.commit()
+
+    except psycopg2.ProgrammingError, msg:
+        self.db.rollback()
+        raise DBUpdateError, 'Unable to apply table-colum update 37, rollback issued. Error message : %s' % (str(msg))
index bfd05fe7b0150cf9bebef0438ffab2eef9b872ab..1046607016090a0b274b4e7654ee9b144b40d889 100755 (executable)
@@ -45,7 +45,7 @@ from daklib.dak_exceptions import DBUpdateError
 ################################################################################
 
 Cnf = None
-required_database_schema = 36
+required_database_schema = 37
 
 ################################################################################
 
index fab0870e9d1e1a9b8e10d271826fa3a9c77d48d5..817afb26ef15aaa7ca71bc5247c80c0fbaaa701e 100755 (executable)
@@ -2483,10 +2483,8 @@ SUITE_FIELDS = [ ('SuiteName', 'suite_name'),
                  ('Priority', 'priority'),
                  ('NotAutomatic', 'notautomatic'),
                  ('CopyChanges', 'copychanges'),
-                 ('CopyDotDak', 'copydotdak'),
                  ('CommentsDir', 'commentsdir'),
-                 ('OverrideSuite', 'overridesuite'),
-                 ('ChangelogBase', 'changelogbase')]
+                 ('OverrideSuite', 'overridesuite')]
 
 class Suite(object):
     def __init__(self, *args, **kwargs):
index 411ff8dbcf3595637543cacc39259841ed44d758..3568ae7ad519cbf90ea165cc9fd4705568fa0de0 100644 (file)
@@ -344,11 +344,3 @@ Canadians: This is a lighthouse. Your call.
 <helix> elmo: I can't believe people pay you to fix computers
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-<Ganneff> everyone - send your condolences to twerner, a new ftpmaster
-<mhy> twerner: you poor, poor bastard
-<mhy> twerner: look what it's done to me and Ganneff
-<mhy> he used to be only 1.3m tall and I used to be female
-<Tolimar> twerner: Congratulations... Uhm... Thorsta?
-<Tolimar> Thorstine?
-<DktrKranz> Thorstine seems the name of a candy we eat in Italy