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

[Git][ftp-team/dak][master] 12 commits: Fixes contributors URL when using a key id. This should close #845217.



Title: GitLab

Ansgar Burchardt pushed to branch master at Debian FTP Team / dak

Commits:

3 changed files:

Changes:

  • config/debian/contributor.source
    ... ... @@ -8,7 +8,7 @@ query:
    8 8
               FROM changes
    
    9 9
              WHERE architecture LIKE '%source%'
    
    10 10
              ORDER BY seen DESC
    
    11
    -url: https://qa.debian.org/developer.php?login={key_id}&comaint=yes
    
    11
    +url: https://qa.debian.org/developer.php?gpg_key={key_id}&comaint=yes
    
    12 12
     
    
    13 13
     contribution: maint
    
    14 14
     method: postgres
    

  • config/debian/lintian.tags
    ... ... @@ -39,6 +39,15 @@ lintian:
    39 39
         - file-name-is-not-valid-UTF-8
    
    40 40
         - pkg-config-bad-directive
    
    41 41
         - quilt-series-without-trailing-newline
    
    42
    +    - distribution-and-changes-mismatch
    
    43
    +    - distribution-and-experimental-mismatch
    
    44
    +    - source-only-upload-to-non-free-without-autobuild
    
    45
    +    - latest-debian-changelog-entry-reuses-existing-version
    
    46
    +    - debhelper-compat-file-contains-multiple-levels
    
    47
    +    - invalid-date-in-debian-changelog
    
    48
    +    - header-has-overly-generic-name
    
    49
    +    - manpage-has-overly-generic-name
    
    50
    +    - python-module-has-overly-generic-name
    
    42 51
       fatal:
    
    43 52
         - debian-control-file-uses-obsolete-national-encoding
    
    44 53
         - malformed-deb-archive
    

  • dak/examine_package.py
    ... ... @@ -713,7 +713,7 @@ def main():
    713 713
     def get_lintian_version():
    
    714 714
         if not hasattr(get_lintian_version, '_version'):
    
    715 715
             # eg. "Lintian v2.5.100"
    
    716
    -        val = do_command(['lintian', '--version'])
    
    716
    +        val = daklib.daksubprocess.check_output(('lintian', '--version'))
    
    717 717
             get_lintian_version._version = val.split(' v')[-1].strip()
    
    718 718
     
    
    719 719
         return get_lintian_version._version
    


  • Reply to: