[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][ftp-team/dak][deploy] 3 commits: README.release: add note about d-i; remove TODO



Title: GitLab

Ansgar pushed to branch deploy at Debian FTP Team / dak

Commits:

2 changed files:

Changes:

  • dak/dakdb/update122.py
    1
    +# coding=utf8
    
    2
    +"""
    
    3
    +Update default settings for suites
    
    4
    +
    
    5
    +@contact: Debian FTP Master <ftpmaster@debian.org>
    
    6
    +@copyright: 2019, Ansgar Burchardt <ansgar@debian.org>
    
    7
    +@license: GNU General Public License version 2 or later
    
    8
    +"""
    
    9
    +
    
    10
    +# This program is free software; you can redistribute it and/or modify
    
    11
    +# it under the terms of the GNU General Public License as published by
    
    12
    +# the Free Software Foundation; either version 2 of the License, or
    
    13
    +# (at your option) any later version.
    
    14
    +
    
    15
    +# This program is distributed in the hope that it will be useful,
    
    16
    +# but WITHOUT ANY WARRANTY; without even the implied warranty of
    
    17
    +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    
    18
    +# GNU General Public License for more details.
    
    19
    +
    
    20
    +# You should have received a copy of the GNU General Public License
    
    21
    +# along with this program; if not, write to the Free Software
    
    22
    +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    
    23
    +
    
    24
    +################################################################################
    
    25
    +
    
    26
    +from __future__ import print_function
    
    27
    +
    
    28
    +import psycopg2
    
    29
    +from daklib.dak_exceptions import DBUpdateError
    
    30
    +
    
    31
    +################################################################################
    
    32
    +
    
    33
    +
    
    34
    +def do_update(self):
    
    35
    +    """
    
    36
    +    Update default settings for suites
    
    37
    +    """
    
    38
    +    print(__doc__)
    
    39
    +    try:
    
    40
    +        c = self.db.cursor()
    
    41
    +
    
    42
    +        c.execute("""
    
    43
    +          ALTER TABLE suite
    
    44
    +            ALTER COLUMN indices_compression SET DEFAULT ARRAY['xz'],
    
    45
    +            ALTER COLUMN i18n_compression SET DEFAULT ARRAY['xz'],
    
    46
    +            ALTER COLUMN byhash SET DEFAULT TRUE
    
    47
    +        """)
    
    48
    +
    
    49
    +        c.execute("UPDATE config SET value = '122' WHERE name = 'db_revision'")
    
    50
    +        self.db.commit()
    
    51
    +
    
    52
    +    except psycopg2.ProgrammingError as msg:
    
    53
    +        self.db.rollback()
    
    54
    +        raise DBUpdateError('Unable to apply sick update 122, rollback issued. Error message : %s' % (str(msg)))

  • docs/README.release
    ... ... @@ -303,6 +303,7 @@ dak admin v-c add testing-updates MustBeNewerThan oldoldstable
    303 303
     dak admin v-c add unstable MustBeNewerThan testing
    
    304 304
     dak admin v-c add experimental MustBeNewerThan testing
    
    305 305
     
    
    306
    +# copy d-i to new testing (so same d-i in stable, testing, unstable)
    
    306 307
     
    
    307 308
     # backports
    
    308 309
     dak admin suite add ${new_oldstable}-backports-sloppy '' origin="Debian Backports" label='Debian Backports' codename=${new_oldstable}-backports-sloppy description='Debian 9 - Sloppy Backports' notautomatic=true butautomaticupgrades=true close_bugs=false archive=ftp-master
    
    ... ... @@ -432,10 +433,3 @@ for suite in testing-security buildd-testing-security; do
    432 433
       dak generate-packages-sources2 -s ${suite}
    
    433 434
       dak generate-releases -s ${suite}
    
    434 435
     done
    435
    -
    
    436
    -########################################################################
    
    437
    -
    
    438
    -TODO:
    
    439
    -buster-backports-debug
    
    440
    -buildd-buster-backports?
    
    441
    -bullseye-backports


  • Reply to: