projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d83570f
)
Use vardbapi._excluded_dirs to filter results inside cp_list().
author
Zac Medico
<zmedico@gentoo.org>
Mon, 5 May 2008 19:29:54 +0000
(19:29 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Mon, 5 May 2008 19:29:54 +0000
(19:29 -0000)
svn path=/main/trunk/; revision=10208
pym/portage/dbapi/vartree.py
patch
|
blob
|
history
diff --git
a/pym/portage/dbapi/vartree.py
b/pym/portage/dbapi/vartree.py
index b7ce8b29beb7c895ad4b6277b7d46fafc4cdfcff..145016edce785826377304d843fe8f62f85ceba6 100644
(file)
--- a/
pym/portage/dbapi/vartree.py
+++ b/
pym/portage/dbapi/vartree.py
@@
-433,10
+433,7
@@
class vardbapi(dbapi):
returnme = []
for x in dir_list:
- if x.startswith("."):
- continue
- if x[0] == '-':
- #writemsg(red("INCOMPLETE MERGE:")+str(x[len("-MERGING-"):])+"\n")
+ if self._excluded_dirs.match(x) is not None:
continue
ps = pkgsplit(x)
if not ps: