[Reproducible-commits] [misc] 01/01: unreproducible-installed: Ignore suites that are not unstable.

Valentin Lorentz progval-guest at moszumanska.debian.org
Thu Jul 30 15:31:23 UTC 2015


This is an automated email from the git hooks/post-receive script.

progval-guest pushed a commit to branch master
in repository misc.

commit 62f68180214a4cca787a5dead10ee598ccfd6aba
Author: Valentin Lorentz <progval at progval.net>
Date:   Thu Jul 30 17:29:59 2015 +0200

    unreproducible-installed: Ignore suites that are not unstable.
---
 unreproducible-installed | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/unreproducible-installed b/unreproducible-installed
index be2fcef..01b85fd 100755
--- a/unreproducible-installed
+++ b/unreproducible-installed
@@ -42,7 +42,10 @@ else: # If no recent file has been found, download the data
         fd.write(response)
     data = json.loads(response)
 
-unreproducible = {x['package'] for x in data if x['status'] != 'reproducible'}
+unreproducible = {x['package']
+                  for x in data
+                  if x['status'] != 'reproducible'
+                  and x['suite'] == 'unstable'} # we only care about unstable
 
 dpkg_output = subprocess.check_output(['dpkg', '-l'], universal_newlines=True)
 dpkg_list = dpkg_output.split('\n')

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/misc.git



More information about the Reproducible-commits mailing list