From: Zac Medico Date: Sun, 27 Jul 2008 10:23:49 +0000 (-0000) Subject: Fix repoman not seeing subversion auto-ignored files (such as patch rejects and edito... X-Git-Tag: v2.2_rc4~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f4cb23cbddb07a12c5e57c7e8c20669857d03e08;p=portage.git Fix repoman not seeing subversion auto-ignored files (such as patch rejects and editor backup copies), thereby causing messed up Manifests. This fix should be merged in the trunk. (branches/prefix r11208) svn path=/main/trunk/; revision=11209 --- diff --git a/bin/repoman b/bin/repoman index e53ae076a..16102b37b 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1681,8 +1681,8 @@ else: if vcs == "svn": try: - svnstatus=os.popen("svn status").readlines() - myunadded = [ "./"+elem.rstrip().split()[1] for elem in svnstatus if elem.startswith("?") ] + svnstatus=os.popen("svn status --no-ignore").readlines() + myunadded = [ "./"+elem.rstrip().split()[1] for elem in svnstatus if elem.startswith("?") or elem.startswith("I") ] except SystemExit, e: raise # TODO propogate this except: