summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_scheduler.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-05-15 17:04:01 +0200
committerHolger Levsen <holger@layer-acht.org>2017-05-15 17:04:07 +0200
commit18426456fddabd962cc4e72fe4cfa3ee786f9bb5 (patch)
treef51ce6d6e45f67b6dd9416322b011bdc7950a8ea /bin/reproducible_scheduler.py
parent87b3b74a107c616992ae9f66b52efbe8bbe567c4 (diff)
downloadjenkins.debian.net-18426456fddabd962cc4e72fe4cfa3ee786f9bb5.tar.xz
Revert "reproducible debian: scheduler: ignore packages with Extra-Source-Only:yes"
This reverts commit 87b3b74a107c616992ae9f66b52efbe8bbe567c4. Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_scheduler.py')
-rwxr-xr-xbin/reproducible_scheduler.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index 6ef28ab9..e3819cb9 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -250,10 +250,6 @@ 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: