diff options
-rwxr-xr-x | bin/reproducible_scheduler.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index e3819cb9..6ef28ab9 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -250,6 +250,10 @@ def update_sources_db(suite, arch, sources): for src in deb822.Sources.iter_paragraphs(sources.split('\n')): pkg = (src['Package'], src['Version'], suite, arch) + if 'Extra-Source-Only' in src and src['Extra-Source-Only'] == 'yes': + log.debug('Ignoring {} due to Extra-Source-Only'.format(pkg)) + continue + # only keep the most recent version of a src for each package/suite/arch key = src['Package'] + suite + arch if key in newest_version: |