* [PATCH] blacklist.bbclass: Avoid blacklist specific handle in base.bbclass
@ 2013-08-03 22:30 Otavio Salvador
2013-08-03 22:44 ` Mario Domenech Goulart
0 siblings, 1 reply; 3+ messages in thread
From: Otavio Salvador @ 2013-08-03 22:30 UTC (permalink / raw)
To: OpenEmbedded Core Mailing List; +Cc: Otavio Salvador
base.bbclass had code which handled the PNBLACKLIST in case of
multilib use. This is better to be done in the blacklist.bbclass so it
has all logic in a single place.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
meta/classes/base.bbclass | 10 ----------
meta/classes/blacklist.bbclass | 25 +++++++++++++++++++++++++
2 files changed, 25 insertions(+), 10 deletions(-)
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index e2c9a7d..bc2b4f6 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -141,7 +141,6 @@ def pkgarch_mapping(d):
def preferred_ml_updates(d):
# If any PREFERRED_PROVIDER or PREFERRED_VERSION are set,
# we need to mirror these variables in the multilib case;
- # likewise the PNBLACKLIST flags.
multilibs = d.getVar('MULTILIBS', True) or ""
if not multilibs:
return
@@ -154,21 +153,12 @@ def preferred_ml_updates(d):
versions = []
providers = []
- blacklists = d.getVarFlags('PNBLACKLIST') or {}
for v in d.keys():
if v.startswith("PREFERRED_VERSION_"):
versions.append(v)
if v.startswith("PREFERRED_PROVIDER_"):
providers.append(v)
- for pkg, reason in blacklists.items():
- if pkg.endswith(("-native", "-crosssdk")) or pkg.startswith(("nativesdk-", "virtual/nativesdk-")) or 'cross-canadian' in pkg:
- continue
- for p in prefixes:
- newpkg = p + "-" + pkg
- if not d.getVarFlag('PNBLACKLIST', newpkg, True):
- d.setVarFlag('PNBLACKLIST', newpkg, reason)
-
for v in versions:
val = d.getVar(v, False)
pkg = v.replace("PREFERRED_VERSION_", "")
diff --git a/meta/classes/blacklist.bbclass b/meta/classes/blacklist.bbclass
index 75abd99..6153cf8 100644
--- a/meta/classes/blacklist.bbclass
+++ b/meta/classes/blacklist.bbclass
@@ -12,6 +12,31 @@
# PNBLACKLIST[pn] = "message"
#
+# Cope with PNBLACKLIST flags for multilib case
+addhandler blacklist_multilib_eventhandler
+blacklist_multilib_eventhandler[eventmask] = "bb.event.ConfigParsed"
+python blacklist_multilib_eventhandler() {
+ multilibs = e.data.getVar('MULTILIBS', True) or ""
+ if not multilibs:
+ return
+
+ # this block has been copied from base.bbclass so keep it in sync
+ prefixes = []
+ for ext in multilibs.split():
+ eext = ext.split(':')
+ if len(eext) > 1 and eext[0] == 'multilib':
+ prefixes.append(eext[1])
+
+ blacklists = e.data.getVarFlags('PNBLACKLIST') or {}
+ for pkg, reason in blacklists.items():
+ if pkg.endswith(("-native", "-crosssdk")) or pkg.startswith(("nativesdk-", "virtual/nativesdk-")) or 'cross-canadian' in pkg:
+ continue
+ for p in prefixes:
+ newpkg = p + "-" + pkg
+ if not e.data.getVarFlag('PNBLACKLIST', newpkg, True):
+ e.data.setVarFlag('PNBLACKLIST', newpkg, reason)
+}
+
python () {
blacklist = d.getVarFlag('PNBLACKLIST', d.getVar('PN', True), True)
--
1.8.3.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] blacklist.bbclass: Avoid blacklist specific handle in base.bbclass
2013-08-03 22:30 [PATCH] blacklist.bbclass: Avoid blacklist specific handle in base.bbclass Otavio Salvador
@ 2013-08-03 22:44 ` Mario Domenech Goulart
2013-08-03 22:58 ` Otavio Salvador
0 siblings, 1 reply; 3+ messages in thread
From: Mario Domenech Goulart @ 2013-08-03 22:44 UTC (permalink / raw)
To: Otavio Salvador; +Cc: OpenEmbedded Core Mailing List
Hi Otavio,
On Sat, 3 Aug 2013 19:30:57 -0300 Otavio Salvador <otavio@ossystems.com.br> wrote:
> base.bbclass had code which handled the PNBLACKLIST in case of
> multilib use. This is better to be done in the blacklist.bbclass so it
> has all logic in a single place.
>
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> ---
> meta/classes/base.bbclass | 10 ----------
> meta/classes/blacklist.bbclass | 25 +++++++++++++++++++++++++
> 2 files changed, 25 insertions(+), 10 deletions(-)
>
> diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
> index e2c9a7d..bc2b4f6 100644
> --- a/meta/classes/base.bbclass
> +++ b/meta/classes/base.bbclass
> @@ -141,7 +141,6 @@ def pkgarch_mapping(d):
> def preferred_ml_updates(d):
> # If any PREFERRED_PROVIDER or PREFERRED_VERSION are set,
> # we need to mirror these variables in the multilib case;
> - # likewise the PNBLACKLIST flags.
> multilibs = d.getVar('MULTILIBS', True) or ""
> if not multilibs:
> return
> @@ -154,21 +153,12 @@ def preferred_ml_updates(d):
>
> versions = []
> providers = []
> - blacklists = d.getVarFlags('PNBLACKLIST') or {}
> for v in d.keys():
> if v.startswith("PREFERRED_VERSION_"):
> versions.append(v)
> if v.startswith("PREFERRED_PROVIDER_"):
> providers.append(v)
>
> - for pkg, reason in blacklists.items():
> - if pkg.endswith(("-native", "-crosssdk")) or pkg.startswith(("nativesdk-", "virtual/nativesdk-")) or 'cross-canadian' in pkg:
> - continue
> - for p in prefixes:
> - newpkg = p + "-" + pkg
> - if not d.getVarFlag('PNBLACKLIST', newpkg, True):
> - d.setVarFlag('PNBLACKLIST', newpkg, reason)
> -
> for v in versions:
> val = d.getVar(v, False)
> pkg = v.replace("PREFERRED_VERSION_", "")
> diff --git a/meta/classes/blacklist.bbclass b/meta/classes/blacklist.bbclass
> index 75abd99..6153cf8 100644
> --- a/meta/classes/blacklist.bbclass
> +++ b/meta/classes/blacklist.bbclass
> @@ -12,6 +12,31 @@
> # PNBLACKLIST[pn] = "message"
> #
>
> +# Cope with PNBLACKLIST flags for multilib case
> +addhandler blacklist_multilib_eventhandler
> +blacklist_multilib_eventhandler[eventmask] = "bb.event.ConfigParsed"
> +python blacklist_multilib_eventhandler() {
> + multilibs = e.data.getVar('MULTILIBS', True) or ""
> + if not multilibs:
> + return
Is the `or ""' part necessary, given that `if not multilibs' would
branch to return in case multilib is bound to a falsy value? It looks
redundant.
> +
> + # this block has been copied from base.bbclass so keep it in sync
> + prefixes = []
> + for ext in multilibs.split():
> + eext = ext.split(':')
> + if len(eext) > 1 and eext[0] == 'multilib':
> + prefixes.append(eext[1])
> +
> + blacklists = e.data.getVarFlags('PNBLACKLIST') or {}
> + for pkg, reason in blacklists.items():
> + if pkg.endswith(("-native", "-crosssdk")) or pkg.startswith(("nativesdk-", "virtual/nativesdk-")) or 'cross-canadian' in pkg:
> + continue
> + for p in prefixes:
> + newpkg = p + "-" + pkg
> + if not e.data.getVarFlag('PNBLACKLIST', newpkg, True):
> + e.data.setVarFlag('PNBLACKLIST', newpkg, reason)
> +}
> +
> python () {
> blacklist = d.getVarFlag('PNBLACKLIST', d.getVar('PN', True), True)
Best wishes.
Mario
--
http://www.ossystems.com.br
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] blacklist.bbclass: Avoid blacklist specific handle in base.bbclass
2013-08-03 22:44 ` Mario Domenech Goulart
@ 2013-08-03 22:58 ` Otavio Salvador
0 siblings, 0 replies; 3+ messages in thread
From: Otavio Salvador @ 2013-08-03 22:58 UTC (permalink / raw)
To: Mario Domenech Goulart; +Cc: OpenEmbedded Core Mailing List
On Sat, Aug 3, 2013 at 7:44 PM, Mario Domenech Goulart
<mario@ossystems.com.br> wrote:
...
>> +# Cope with PNBLACKLIST flags for multilib case
>> +addhandler blacklist_multilib_eventhandler
>> +blacklist_multilib_eventhandler[eventmask] = "bb.event.ConfigParsed"
>> +python blacklist_multilib_eventhandler() {
>> + multilibs = e.data.getVar('MULTILIBS', True) or ""
>> + if not multilibs:
>> + return
>
> Is the `or ""' part necessary, given that `if not multilibs' would
> branch to return in case multilib is bound to a falsy value? It looks
> redundant.
You're right. I just sent a v2 removing this code.
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://projetos.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-08-03 22:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-03 22:30 [PATCH] blacklist.bbclass: Avoid blacklist specific handle in base.bbclass Otavio Salvador
2013-08-03 22:44 ` Mario Domenech Goulart
2013-08-03 22:58 ` Otavio Salvador
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox