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

[Git][ftp-team/dak][master] 3 commits: Show hint to build with -sa when orig tarball is missing from upload



Title: GitLab

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

Commits:

1 changed file:

Changes:

  • daklib/checks.py
    ... ... @@ -180,7 +180,8 @@ class SignatureAndHashesCheck(Check):
    180 180
                     f.check(upload.directory)
    
    181 181
             except daklib.upload.FileDoesNotExist as e:
    
    182 182
                 raise Reject('{0}: {1}\n'
    
    183
    -                         'Perhaps you need to include the file in your upload?'
    
    183
    +                         'Perhaps you need to include the file in your upload?\n\n'
    
    184
    +                         'If the orig tarball is missing, the -sa flag for dpkg-buildpackage will be your friend.'
    
    184 185
                              .format(filename, six.text_type(e)))
    
    185 186
             except daklib.upload.UploadException as e:
    
    186 187
                 raise Reject('{0}: {1}'.format(filename, six.text_type(e)))
    


  • Reply to: