From: Phil Blundell <philb@gnu.org>
To: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH 1/2] libc-package bbclass: fix binary localedata dependency code
Date: Fri, 26 Aug 2011 15:12:17 +0100 [thread overview]
Message-ID: <1314367938.19905.90.camel@phil-desktop> (raw)
In-Reply-To: <1314284316.5939.196.camel@rex>
[-- Attachment #1: Type: text/plain, Size: 1545 bytes --]
On Thu, 2011-08-25 at 07:58 -0700, Richard Purdie wrote:
> On Thu, 2011-08-25 at 10:24 +0100, Phil Blundell wrote:
> > On Wed, 2011-08-24 at 20:32 +0200, Koen Kooi wrote:
> > > diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass
> > > index 0d5ce20..d3b33d6 100644
> > > --- a/meta/classes/libc-package.bbclass
> > > +++ b/meta/classes/libc-package.bbclass
> > > @@ -243,7 +243,7 @@ python package_do_split_gconvs () {
> > > def output_locale_binary_rdepends(name, pkgname, locale, encoding):
> > > m = re.match("(.*)_(.*)", name)
> > > if m:
> > > - libc_name = "%s.%s" % (m.group(1), m.group(2).lower().replace("-",""))
> > > + libc_name = "%s-%s" % (m.group(1), m.group(2).lower().replace("-",""))
> > > else:
> > > libc_name = name
> > > bb.data.setVar('RDEPENDS_%s' % pkgname, legitimize_package_name('%s-binary-localedata-%s' \
> >
> > For what it's worth (probably not much), this is not quite the right
> > fix. Joining with "." was correct; it was the splitting on "_" that was
> > wrong. The right thing would be to put it back how it was before the
> > glibc/eglibc merge commit, i.e. change the re to "(*.)\.(*.)" and leave
> > the output pattern alone. That ought to fix your problem and also allow
> > the encoding to be correctly canonicalised.
>
> Can someone please send me the correct patch against master? :)
I think the attached is what you need. Koen, maybe you could confirm
whether this does indeed fix your original problem.
p.
[-- Attachment #2: 0001-libc-package-restore-correct-mangling-behavior-for-l.patch --]
[-- Type: text/x-patch, Size: 1403 bytes --]
From 1cd91a91802776ddede041cfa222b603da6c8453 Mon Sep 17 00:00:00 2001
From: Phil Blundell <philb@gnu.org>
Date: Fri, 26 Aug 2011 15:05:11 +0100
Subject: [PATCH] libc-package: restore correct mangling behavior for locale names
This reverts 19fb07bf337e1d724798e2eb4479c35fc45b1941 and restores
the behaviour of the code to the way it was prior to 561d875404ef1783f94f37314b6e756766db8411.
See http://lists.linuxtogo.org/pipermail/openembedded-core/2011-August/007407.html and subsequent messages.
Signed-off-by: Phil Blundell <philb@gnu.org>
---
meta/classes/libc-package.bbclass | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass
index d3b33d6..f8df6a4 100644
--- a/meta/classes/libc-package.bbclass
+++ b/meta/classes/libc-package.bbclass
@@ -241,9 +241,9 @@ python package_do_split_gconvs () {
(locale, encoding, locale), d)
def output_locale_binary_rdepends(name, pkgname, locale, encoding):
- m = re.match("(.*)_(.*)", name)
+ m = re.match("(.*).(.*)", name)
if m:
- libc_name = "%s-%s" % (m.group(1), m.group(2).lower().replace("-",""))
+ libc_name = "%s.%s" % (m.group(1), m.group(2).lower().replace("-",""))
else:
libc_name = name
bb.data.setVar('RDEPENDS_%s' % pkgname, legitimize_package_name('%s-binary-localedata-%s' \
--
1.7.4.1
next prev parent reply other threads:[~2011-08-26 14:17 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-24 18:32 [PATCH 1/2] libc-package bbclass: fix binary localedata dependency code Koen Kooi
2011-08-24 18:32 ` [PATCH 2/2] tcl: fix networking breakage Koen Kooi
2011-08-24 18:36 ` Saul Wold
2011-08-24 19:45 ` Koen Kooi
2011-08-25 2:26 ` [PATCH 1/2] libc-package bbclass: fix binary localedata dependency code Richard Purdie
2011-08-25 9:24 ` Phil Blundell
2011-08-25 14:58 ` Richard Purdie
2011-08-26 14:12 ` Phil Blundell [this message]
2011-08-26 14:54 ` Koen Kooi
2011-08-26 15:26 ` Koen Kooi
2011-08-26 15:30 ` Phil Blundell
2011-08-26 16:31 ` Koen Kooi
2011-08-30 9:26 ` Phil Blundell
2011-08-31 13:47 ` Koen Kooi
2011-08-31 17:05 ` Richard Purdie
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=1314367938.19905.90.camel@phil-desktop \
--to=philb@gnu.org \
--cc=openembedded-core@lists.openembedded.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox