Lines 1392-1398
Link Here
|
1392 |
myslots.add(vardb.aux_get(cpv, ["SLOT"])[0]) |
1392 |
myslots.add(vardb.aux_get(cpv, ["SLOT"])[0]) |
1393 |
if len(myslots) > 1: |
1393 |
if len(myslots) > 1: |
1394 |
for myslot in myslots: |
1394 |
for myslot in myslots: |
1395 |
newlist.append("%s:%s" % (mykey, myslot)) |
1395 |
myslot_atom = "%s:%s" % (mykey, myslot) |
|
|
1396 |
available = False |
1397 |
if "--usepkgonly" not in self.myopts and \ |
1398 |
self.trees[self.target_root][ |
1399 |
"porttree"].dbapi.match(myslot_atom): |
1400 |
available = True |
1401 |
elif "--usepkg" in self.myopts and \ |
1402 |
self.trees[self.target_root][ |
1403 |
"bintree"].dbapi.match(myslot_atom): |
1404 |
available = True |
1405 |
if available: |
1406 |
newlist.append(myslot_atom) |
1396 |
mylist = newlist |
1407 |
mylist = newlist |
1397 |
|
1408 |
|
1398 |
missing_atoms = [] |
1409 |
missing_atoms = [] |