[Reproducible-commits] [misc] 01/01: clean-notes: don't complain about notes with timestamps_in_png when checking for fixed-magically and now-fixed

Mattia Rizzolo mattia at mapreri.org
Sun Jul 26 10:30:33 UTC 2015


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

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

commit e29c42ed20b834c1cf659085f983e51d550c6bb1
Author: Mattia Rizzolo <mattia at mapreri.org>
Date:   Sun Jul 26 10:29:30 2015 +0000

    clean-notes: don't complain about notes with timestamps_in_png when checking for fixed-magically and now-fixed
    
    That's because the issue is workarounded in strip-nondeterminsm, but it would
    be nice to fix the root cause
---
 clean-notes | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/clean-notes b/clean-notes
index da4a796..480899d 100755
--- a/clean-notes
+++ b/clean-notes
@@ -269,12 +269,16 @@ def find_old_notes(testedpkgs, notes):
             continue
         if item['version'] == notes[pkg].get('version') and \
            item['status'] == 'reproducible' and \
+           (notes[pkg].get('issues') and
+            'timestamps_in_png' not in notes[pkg]['issues']) and \
            'fixed-magically' not in args.disable:
             log.info("The package " + pkg + " has a note for the version " +
                      item['version'] + " but that version is reproducible")
         if item['status'] == 'reproducible' and \
             notes[pkg].get('version') and \
             'now-fixed' not in args.disable and \
+           (notes[pkg].get('issues') and
+            'timestamps_in_png' not in notes[pkg]['issues']) and \
             version_compare(str(item['version']),
                             str(notes[pkg]['version'])) > 0:
             log.info("The package " + pkg +

-- 
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