Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 127921 Details for
Bug 188678
app-portage/gentoolkit: equery reports packages keyword masked if KEYWORDS="-*", even if KEYWORDS="${ARCH}" is also present
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
a patch to the stable amd64 version (based on 0.2.3-r1) with a slightly refactored logic
gentoolkit-0.2.3-r2-equery-keywordmask.patch (text/plain), 784 bytes, created by
Carlo Marcelo Arenas Belon
on 2007-08-13 04:06:03 UTC
(
hide
)
Description:
a patch to the stable amd64 version (based on 0.2.3-r1) with a slightly refactored logic
Filename:
MIME Type:
Creator:
Carlo Marcelo Arenas Belon
Created:
2007-08-13 04:06:03 UTC
Size:
784 bytes
patch
obsolete
>--- src/equery/equery.keworkdmask 2007-08-12 20:47:55.000000000 -0700 >+++ src/equery/equery 2007-08-12 20:46:52.000000000 -0700 >@@ -1370,10 +1370,11 @@ class CmdListPackages(Command): > if pkg.is_masked(): > pkgmask = pkgmask + 3 > keywords = pkg.get_env_var("KEYWORDS").split() >- if "~" + gentoolkit.settings["ARCH"] in keywords: >- pkgmask = pkgmask + 1 >- elif "-*" in keywords or "-" + gentoolkit.settings["ARCH"] in keywords: >- pkgmask = pkgmask + 2 >+ if gentoolkit.settings["ARCH"] not in keywords: >+ if "~" + gentoolkit.settings["ARCH"] in keywords: >+ pkgmask = pkgmask + 1 >+ elif "-" + gentoolkit.settings["ARCH"] in keywords or "-*" in keywords: >+ pkgmask = pkgmask + 2 > return pkgmask > > def _generic_print(self, header, exclude, matches, rx, status):
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 188678
:
127920
| 127921 |
131030