summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2010-03-24 08:22:58 +0100
committerZac Medico <zmedico@gentoo.org>2010-08-13 20:16:40 -0700
commit5e39119d80433d9333fac70d12cf7c6b6ca61afe (patch)
tree7383c8fd7b5d0089a6565b2c6cef0017d512bcc9 /bin
parent12e38fd2fe321c64c90a8f8863f271994d4e235d (diff)
downloadportage-5e39119d80433d9333fac70d12cf7c6b6ca61afe.tar.gz
portage-5e39119d80433d9333fac70d12cf7c6b6ca61afe.tar.bz2
portage-5e39119d80433d9333fac70d12cf7c6b6ca61afe.zip
Implement use dependency defaults
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/repoman b/bin/repoman
index 71fb58ac3..97566d3f1 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1619,6 +1619,8 @@ for x in scanlist:
myteststr = mydepstr[len(token):]
else:
myteststr = mydepstr
+ myteststr = myteststr.replace("(+)", "")
+ myteststr = myteststr.replace("(-)", "")
if myteststr.endswith(" "+token):
myteststr = myteststr[:-len(token)]
while myteststr.find(" "+token+" ") != -1: