From: Joshua G Lock <joshua.g.lock@linux.intel.com>
To: Bill Randle <william.c.randle@intel.com>, yocto@yoctoproject.org
Subject: Re: [PATCH] keep platform_extra and default_platform_extra lists ordered
Date: Mon, 27 Jun 2016 13:12:11 +0100 [thread overview]
Message-ID: <1467029531.2892.9.camel@linux.intel.com> (raw)
In-Reply-To: <1466828551-11784-1-git-send-email-william.c.randle@intel.com>
Hi Bill,
This patch is for OE-Core so should go to
openembedded-core@lists.openembedded.org
Thanks,
Joshua
On Fri, 2016-06-24 at 21:22 -0700, Bill Randle wrote:
> In RpmPM:insert_feeds_uris, the paths are kept in sets, which are
> unordered,
> but they are later used to set the priority for the Smart channels,
> so
> unexpected results could occur. Change the sets to lists and use the
> same
> code as in create_configs() to add items to the list, reather than
> the set
> operators.
>
> [YOCTO #9717]
>
> Signed-off-by: Bill Randle <william.c.randle@intel.com>
> ---
> meta/lib/oe/package_manager.py | 13 +++++++------
> 1 file changed, 7 insertions(+), 6 deletions(-)
>
> diff --git a/meta/lib/oe/package_manager.py
> b/meta/lib/oe/package_manager.py
> index 717246d..2004a42 100644
> --- a/meta/lib/oe/package_manager.py
> +++ b/meta/lib/oe/package_manager.py
> @@ -700,18 +700,19 @@ class RpmPM(PackageManager):
> arch_list = self.feed_archs.split()
> else:
> # List must be prefered to least preferred order
> - default_platform_extra = set()
> - platform_extra = set()
> + default_platform_extra = list()
> + platform_extra = list()
> bbextendvariant = self.d.getVar('BBEXTENDVARIANT', True)
> or ""
> for mlib in self.ml_os_list:
> for arch in self.ml_prefix_list[mlib]:
> plt = arch.replace('-', '_') + '-.*-' +
> self.ml_os_list[mlib]
> if mlib == bbextendvariant:
> - default_platform_extra.add(plt)
> + if plt not in default_platform_extra:
> + default_platform_extra.append(plt)
> else:
> - platform_extra.add(plt)
> -
> - platform_extra =
> platform_extra.union(default_platform_extra)
> + if plt not in platform_extra:
> + platform_extra.append(plt)
> + platform_extra = default_platform_extra + platform_extra
>
> for canonical_arch in platform_extra:
> arch = canonical_arch.split('-')[0]
> --
> 2.5.5
>
next prev parent reply other threads:[~2016-06-27 12:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-25 4:22 [PATCH] keep platform_extra and default_platform_extra lists ordered Bill Randle
2016-06-27 12:12 ` Joshua G Lock [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-06-27 15:56 Bill Randle
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1467029531.2892.9.camel@linux.intel.com \
--to=joshua.g.lock@linux.intel.com \
--cc=william.c.randle@intel.com \
--cc=yocto@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.