Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 99162 Details for
Bug 150251
sys-devel/binutils: USE=multislot conflicts with new portage-2.1.2_pre2-r4 slotted behavior
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
don't pull unavailable slots in with system and world
less_greedy.patch (text/plain), 812 bytes, created by
Zac Medico
on 2006-10-08 14:02:05 UTC
(
hide
)
Description:
don't pull unavailable slots in with system and world
Filename:
MIME Type:
Creator:
Zac Medico
Created:
2006-10-08 14:02:05 UTC
Size:
812 bytes
patch
obsolete
>Index: bin/emerge >=================================================================== >--- bin/emerge (revision 4618) >+++ bin/emerge (revision 4619) >@@ -1392,7 +1392,18 @@ > myslots.add(vardb.aux_get(cpv, ["SLOT"])[0]) > if len(myslots) > 1: > for myslot in myslots: >- newlist.append("%s:%s" % (mykey, myslot)) >+ myslot_atom = "%s:%s" % (mykey, myslot) >+ available = False >+ if "--usepkgonly" not in self.myopts and \ >+ self.trees[self.target_root][ >+ "porttree"].dbapi.match(myslot_atom): >+ available = True >+ elif "--usepkg" in self.myopts and \ >+ self.trees[self.target_root][ >+ "bintree"].dbapi.match(myslot_atom): >+ available = True >+ if available: >+ newlist.append(myslot_atom) > mylist = newlist > > missing_atoms = []
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 150251
:
98929
| 99162