Signed-off-by: Mark Hymers <mhy@debian.org>
DefaultSuite "lenny-backports";
Reject
{
- NoSourceOnly "true";
ReleaseTransitions "/srv/backports-master.debian.org/hints/transitions.yaml";
};
// If set, only send mails to addresses listed there.
SuiteSuffix "updates/";
OverrideMaintainer "dak@security.debian.org";
LegacyStableHasNoSections "false";
+ AllowSourceOnlyUploads "true";
};
Process-New
LintianTags "/srv/ftp-master.debian.org/dak/config/debian/lintian.tags";
Reject
{
- NoSourceOnly "true";
ReleaseTransitions "/srv/ftp.debian.org/web/transitions.yaml";
};
// if you setup an own dak repository and want to upload Debian packages you most possibly want
if not has_source:
self.rejects.append("no source found and Architecture line in changes mention source.")
- if not has_binaries and cnf.FindB("Dinstall::Reject::NoSourceOnly"):
+ if (not has_binaries) and (not cnf.FindB("Dinstall::AllowSourceOnlyUploads")):
self.rejects.append("source only uploads are not supported.")
###########################################################################