Invert some vcs conditionals that are specific to cvs and svn.
authorZac Medico <zmedico@gentoo.org>
Mon, 18 Jan 2010 23:31:03 +0000 (23:31 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 18 Jan 2010 23:31:03 +0000 (23:31 -0000)
svn path=/main/trunk/; revision=15204

bin/repoman

index c9936013516adbb11e44829ba8e4d3a631fe8423..0c8335f6de5bf42978726b5c79926d73a73c9360 100755 (executable)
@@ -492,7 +492,7 @@ elif os.path.isdir(os.path.join(portdir_overlay, ".hg")):
 vcs_local_opts = repoman_settings.get("REPOMAN_VCS_LOCAL_OPTS", "").split()
 vcs_global_opts = repoman_settings.get("REPOMAN_VCS_GLOBAL_OPTS")
 if vcs_global_opts is None:
-       if vcs not in ("git", "bzr", "hg"):
+       if vcs in ('cvs', 'svn'):
                vcs_global_opts = "-q"
        else:
                vcs_global_opts = ""
@@ -2223,7 +2223,7 @@ else:
                commitmessage += ", RepoMan options: --force"
        commitmessage += ")"
 
-       if vcs not in ['git', 'bzr', 'hg'] and (myupdates or myremoved):
+       if vcs in ('cvs', 'svn') and (myupdates or myremoved):
                myfiles = myupdates + myremoved
                if not myheaders and "sign" not in repoman_settings.features:
                        myfiles += mymanifests
@@ -2316,7 +2316,7 @@ else:
                        write_atomic(x, "".join(mylines))
 
        manifest_commit_required = True
-       if vcs not in ['git', 'bzr', 'hg'] and (myupdates or myremoved):
+       if vcs in ('cvs', 'svn') and (myupdates or myremoved):
                myfiles = myupdates + myremoved
                for x in range(len(myfiles)-1, -1, -1):
                        if myfiles[x].count("/") < 4-repolevel: