Ansgar pushed to branch deploy at Debian FTP Team / dak
Commits:
-
831cadf3
by Ivo De Decker at 2019-08-12T11:34:17Z
-
88130c9d
by Ansgar Burchardt at 2019-08-20T19:22:05Z
-
2416e75a
by Ansgar Burchardt at 2019-08-22T05:46:18Z
-
b53b07c9
by Ansgar Burchardt at 2019-08-22T05:46:51Z
2 changed files:
Changes:
| ... | ... | @@ -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";
|
| ... | ... | @@ -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)
|