extras-repoclosure rc-report.py,1.68,1.69

Michael Schwendt mschwendt at fedoraproject.org
Mon Sep 13 12:14:24 UTC 2010


Author: mschwendt

Update of /cvs/fedora/extras-repoclosure
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv19450

Modified Files:
	rc-report.py 
Log Message:
diff mode: a broken dep is considered fixed, if the binary rpm pkgid AND the src.rpm name are not found in the newest broken deps list anymore


Index: rc-report.py
===================================================================
RCS file: /cvs/fedora/extras-repoclosure/rc-report.py,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- rc-report.py	13 Sep 2010 12:04:29 -0000	1.68
+++ rc-report.py	13 Sep 2010 12:14:24 -0000	1.69
@@ -235,7 +235,8 @@
     # The reverse check: What is fixed?
     for b in list(prevbrokendeps):
         b2 = BrokenDeps.FindByPkgId(b,brokendeps)
-        if not b2:  # fixed broken dep
+        b3 = BrokenDeps.FindBySourceName(b,brokendeps)
+        if not b2 and not b3:  # fixed broken dep
             if b.srpm_name not in fixed_srpms:
                 fixed_srpms.append(b.srpm_name)
 



More information about the scm-commits mailing list