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

[Git][ftp-team/dak][deploy] 3 commits: Document that s has a rm subcommand



Title: GitLab

Joerg Jaspert pushed to branch deploy at Debian FTP Team / dak

Commits:

5 changed files:

Changes:

  • config/debian/dinstall.tasks
    ... ... @@ -13,7 +13,7 @@ i18n1 none i18n\ 1 fal
    13 13
     dep11                  none                       dep11\ 1                   false     true
    
    14 14
     LOCK                   UNCHECKED                  1200                       exclusive false
    
    15 15
     punew                  stable-new                 p-u-new                    false     false
    
    16
    -opunew                 oldstable-new              o-p-u-new                  false     false
    
    16
    +# opunew                 oldstable-new              o-p-u-new                  false     false
    
    17 17
     backports_policy       none                       backports-policy           false     false
    
    18 18
     cruft                  none                       cruft                      true      false
    
    19 19
     NOSTAGE                state\ indices             none                       false     false
    

  • config/debian/hourly.functions
    ... ... @@ -22,7 +22,8 @@ function do_report() {
    22 22
     
    
    23 23
     function queuereport() {
    
    24 24
         log "Creating queue reports, new/backports-new, 822 format"
    
    25
    -    local queues="new,byhand,stable-new,oldstable-new"
    
    25
    +    #local queues="new,byhand,stable-new,oldstable-new"
    
    26
    +    local queues="new,byhand,stable-new"
    
    26 27
         local bpqueues="backports-new,backports-policy"
    
    27 28
         local gqueues="${queues},${bpqueues},deferred"
    
    28 29
         do_report
    

  • config/debian/unchecked.tasks
    ... ... @@ -4,7 +4,7 @@ LOCK DAILY 600 sha
    4 4
     LOCK                   UNCHECKED                  600                        exclusive false
    
    5 5
     pg_timestamp           preunchecked               none                       true      false
    
    6 6
     punew                  stable-new                 p-u-new                    false     false
    
    7
    -opunew                 oldstable-new              o-p-u-new                  false     false
    
    7
    +# opunew                 oldstable-new              o-p-u-new                  false     false
    
    8 8
     backports_policy       none                       backports-policy           false     false
    
    9 9
     cleanpolicy            none                       cleanpolicy                false     false
    
    10 10
     fetchqueuedpackages    upload-master              fetchqueuedpackages        false     false
    

  • dak/admin.py
    ... ... @@ -105,6 +105,7 @@ Perform administrative work on the dak database.
    105 105
                                 add suite SUITE, version VERSION.
    
    106 106
                                 label, description, origin, codename
    
    107 107
                                 and signingkey are optional.
    
    108
    +     s rm SUITE             remove a suite (will only work if empty)
    
    108 109
     
    
    109 110
          s add-all-arches SUITE VERSION... as "s add" but adds suite-architecture
    
    110 111
                                 relationships for all architectures
    

  • tests/test_parse_changes.py
    ... ... @@ -63,7 +63,7 @@ class ParseDscTestCase(ParseChangesTestCase):
    63 63
         def test_9(self):
    
    64 64
             changes = self.assertParse('dsc/9.dsc', -1, 1)
    
    65 65
             self.assert_(changes['question'] == 'Is this a bug?')
    
    66
    -        self.failIf(changes.get('this'))
    
    66
    +        self.assertFalse(changes.get('this'))
    
    67 67
     
    
    68 68
         def test_10(self):
    
    69 69
             changes = self.assertParse('dsc/10.dsc', -1, 1)
    
    ... ... @@ -92,7 +92,7 @@ class ParseChangesTestCase(ParseChangesTestCase):
    92 92
                         'changes/%s.changes' % filename,
    
    93 93
                         strict_whitespace,
    
    94 94
                     )
    
    95
    -                self.failIf(changes.get('you'))
    
    95
    +                self.assertFalse(changes.get('you'))
    
    96 96
     
    
    97 97
     if __name__ == '__main__':
    
    98 98
         unittest.main()


  • Reply to: