Move the "commit" mode manifest generation earlier in order
authorZac Medico <zmedico@gentoo.org>
Sun, 7 Oct 2007 21:25:02 +0000 (21:25 -0000)
committerZac Medico <zmedico@gentoo.org>
Sun, 7 Oct 2007 21:25:02 +0000 (21:25 -0000)
to avoid digest verification issues when FEATURES="strict"
is enabled.

svn path=/main/trunk/; revision=7995

bin/repoman

index d3b0b598d7ae1fdb604721f4a8ec2e5b307cbe9a..76cc8ac51d1ea230f67d0d00bbc804bd2e933c29 100755 (executable)
@@ -829,12 +829,23 @@ for x in scanlist:
        catdir,pkgdir=x.split("/")
        checkdir=repodir+"/"+x
 
-       if mymode == "manifest":
+       if mymode == "manifest" or \
+               mymode in ("commit", "fix") and "--pretend" not in myoptions:
                repoman_settings["O"] = checkdir
                if not portage.digestgen([], repoman_settings, myportdb=portdb):
                        print "Unable to generate manifest."
                        dofail = 1
-               continue
+               if mymode == "manifest":
+                       continue
+               elif dofail:
+                       sys.exit(1)
+
+       if mymode in ("fix", "commit") and \
+               "--pretend" not in myoptions:
+               repoman_settings["O"] = checkdir
+               if not portage.digestgen([], repoman_settings, myportdb=portdb):
+                       print "Unable to generate manifest."
+                       sys.exit(1)
 
        checkdirlist=os.listdir(checkdir)
        ebuildlist=[]
@@ -938,13 +949,6 @@ for x in scanlist:
                                fails["CVS/Entries.IO_error"].append(checkdir+"/files/CVS/Entries")
                        continue
 
-       if mymode in ("fix", "commit") and \
-               "--pretend" not in myoptions:
-               repoman_settings["O"] = checkdir
-               if not portage.digestgen([], repoman_settings, myportdb=portdb):
-                       print "Unable to generate manifest."
-                       sys.exit(1)
-
        mf = Manifest(checkdir, repoman_settings["DISTDIR"])
        mydigests=mf.getTypeDigests("DIST")