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

[Git][ftp-team/dak][deploy] 4 commits: Log source and version when source not found



Title: GitLab

Ansgar pushed to branch deploy at Debian FTP Team / dak

Commits:

2 changed files:

Changes:

  • config/debian/dak.conf
    ... ... @@ -307,7 +307,7 @@ External-Signature-Requests {
    307 307
         "experimental";
    
    308 308
         "unstable";
    
    309 309
         "testing-proposed-updates";
    
    310
    -    "stable";
    
    310
    +    "proposed-updates";
    
    311 311
         "buster-backports";
    
    312 312
         "stretch-backports-sloppy";
    
    313 313
         "stretch-backports";
    

  • daklib/archive.py
    ... ... @@ -165,7 +165,8 @@ class ArchiveTransaction(object):
    165 165
                         .filter(Suite.suite_id == source_suites.c.id)
    
    166 166
                 source = source_query.first()
    
    167 167
                 if source is None:
    
    168
    -                raise ArchiveException('{0}: trying to install to {1}, but could not find source'.format(binary.hashed_file.filename, suite.suite_name))
    
    168
    +                raise ArchiveException('{0}: trying to install to {1}, but could not find source ({2} {3})'.
    
    169
    +                    format(binary.hashed_file.filename, suite.suite_name, source_name, source_version))
    
    169 170
                 self.copy_source(source, suite, source.poolfile.component)
    
    170 171
     
    
    171 172
             db_file = self._install_file(directory, binary.hashed_file, suite.archive, component, source_name)
    


  • Reply to: