Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Log source and version when source not found
· 831cadf3
Ivo De Decker
authored
Aug 12, 2019
831cadf3
Merge remote-tracking branch 'ivodd/missing-source-log'
· 88130c9d
Ansgar
authored
Aug 20, 2019
See merge request [
!153
] [
!153
]:
!153
88130c9d
external signatures: sign for proposed-updates, not stable
· 2416e75a
Ansgar
authored
Aug 22, 2019
2416e75a
Merge branch 'master' into deploy
· b53b07c9
Ansgar
authored
Aug 22, 2019
b53b07c9
Show whitespace changes
Inline
Side-by-side
config/debian/dak.conf
View file @
b53b07c9
...
...
@@ -307,7 +307,7 @@ External-Signature-Requests {
"experimental"
;
"unstable"
;
"testing-proposed-updates"
;
"
stable
"
;
"
proposed-updates
"
;
"buster-backports"
;
"stretch-backports-sloppy"
;
"stretch-backports"
;
...
...
daklib/archive.py
View file @
b53b07c9
...
...
@@ -165,7 +165,8 @@ class ArchiveTransaction(object):
.
filter
(
Suite
.
suite_id
==
source_suites
.
c
.
id
)
source
=
source_query
.
first
()
if
source
is
None
:
raise
ArchiveException
(
'
{0}: trying to install to {1}, but could not find source
'
.
format
(
binary
.
hashed_file
.
filename
,
suite
.
suite_name
))
raise
ArchiveException
(
'
{0}: trying to install to {1}, but could not find source ({2} {3})
'
.
format
(
binary
.
hashed_file
.
filename
,
suite
.
suite_name
,
source_name
,
source_version
))
self
.
copy_source
(
source
,
suite
,
source
.
poolfile
.
component
)
db_file
=
self
.
_install_file
(
directory
,
binary
.
hashed_file
,
suite
.
archive
,
component
,
source_name
)
...
...