Add a --force option that forces commit to proceed. This is useful for cases like...
authorZac Medico <zmedico@gentoo.org>
Mon, 27 Aug 2007 21:02:47 +0000 (21:02 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 27 Aug 2007 21:02:47 +0000 (21:02 -0000)
svn path=/main/trunk/; revision=7709

bin/repoman

index fb6f23eb4a42d0d223ccd3059382eda252aa6031..9842247c6be47a77c96855f8e032acbad9a1e005 100755 (executable)
@@ -106,6 +106,7 @@ repoman_options={
 "--commitmsg"      : "Adds a commit message via the command line",
 "--commitmsgfile"  : "Adds a commit message from the specified file",
 "--help"           : "Show this screen",
+"--force"          : "Force commit to proceed, regardless of QA issues",
 "--ignore-arches"  : "Ignore arch-specific failures (where arch != host)",
 "--ignore-masked"  : "Ignore masked packages (not allowed with commit mode)",
 "--pretend"        : "Don't commit or fix anything; just show what would be done",
@@ -1551,7 +1552,11 @@ if mymode!="commit":
        if quiet < 1:
                print
 else:
-       if dofail:
+       if dofail and "--force" in myoptions and "--pretend" not in myoptions:
+               print green("RepoMan sez:") + \
+                       " \"You want commit even with these QA issues?\n" + \
+                       "              I'll take it this time, but I'm not happy.\"\n"
+       elif dofail:
                print turquoise("Please fix these important QA issues first.")
                print green("RepoMan sez:"),"\"Make your QA payment on time and you'll never see the likes of me.\"\n"
                sys.exit(1)