* [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS
@ 2012-08-14 22:44 Andy Ross
2012-08-15 7:38 ` Koen Kooi
2012-08-15 13:51 ` Richard Purdie
0 siblings, 2 replies; 7+ messages in thread
From: Andy Ross @ 2012-08-14 22:44 UTC (permalink / raw)
To: openembedded-core
The task-core-lsb-runtime-add subpackage includes eglibc-pic as an
RDEPEND. That's incorrect, eglibc-pic is nothing but 22MB of static
libraries and should never appear as a runtime dependency.
Signed-off-by: Andy Ross <andy.ross@windriver.com>
---
meta/recipes-extended/tasks/task-core-lsb.bb | 1 -
1 file changed, 1 deletion(-)
diff --git a/meta/recipes-extended/tasks/task-core-lsb.bb b/meta/recipes-extended/tasks/task-core-lsb.bb
index 553b89e..be9eac2 100644
--- a/meta/recipes-extended/tasks/task-core-lsb.bb
+++ b/meta/recipes-extended/tasks/task-core-lsb.bb
@@ -194,7 +194,6 @@ RDEPENDS_task-core-lsb-runtime-add = "\
eglibc-localedata-posix \
eglibc-extra-nss \
eglibc-pcprofile \
- eglibc-pic \
eglibc-utils \
"
--
1.7.11.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS
2012-08-14 22:44 [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS Andy Ross
@ 2012-08-15 7:38 ` Koen Kooi
2012-08-15 15:58 ` Andy Ross
2012-08-15 13:51 ` Richard Purdie
1 sibling, 1 reply; 7+ messages in thread
From: Koen Kooi @ 2012-08-15 7:38 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
Op 15 aug. 2012, om 00:44 heeft Andy Ross <andy.ross@windriver.com> het volgende geschreven:
> The task-core-lsb-runtime-add subpackage includes eglibc-pic as an
> RDEPEND. That's incorrect, eglibc-pic is nothing but 22MB of static
> libraries and should never appear as a runtime dependency.
>
> Signed-off-by: Andy Ross <andy.ross@windriver.com>
> ---
> meta/recipes-extended/tasks/task-core-lsb.bb | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/meta/recipes-extended/tasks/task-core-lsb.bb b/meta/recipes-extended/tasks/task-core-lsb.bb
> index 553b89e..be9eac2 100644
> --- a/meta/recipes-extended/tasks/task-core-lsb.bb
> +++ b/meta/recipes-extended/tasks/task-core-lsb.bb
> @@ -194,7 +194,6 @@ RDEPENDS_task-core-lsb-runtime-add = "\
> eglibc-localedata-posix \
> eglibc-extra-nss \
> eglibc-pcprofile \
> - eglibc-pic \
> eglibc-utils \
> "
MIssing PR bump
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS
2012-08-14 22:44 [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS Andy Ross
2012-08-15 7:38 ` Koen Kooi
@ 2012-08-15 13:51 ` Richard Purdie
2012-08-15 15:37 ` Andy Ross
1 sibling, 1 reply; 7+ messages in thread
From: Richard Purdie @ 2012-08-15 13:51 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, 2012-08-14 at 15:44 -0700, Andy Ross wrote:
> The task-core-lsb-runtime-add subpackage includes eglibc-pic as an
> RDEPEND. That's incorrect, eglibc-pic is nothing but 22MB of static
> libraries and should never appear as a runtime dependency.
>
> Signed-off-by: Andy Ross <andy.ross@windriver.com>
> ---
> meta/recipes-extended/tasks/task-core-lsb.bb | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/meta/recipes-extended/tasks/task-core-lsb.bb b/meta/recipes-extended/tasks/task-core-lsb.bb
> index 553b89e..be9eac2 100644
> --- a/meta/recipes-extended/tasks/task-core-lsb.bb
> +++ b/meta/recipes-extended/tasks/task-core-lsb.bb
> @@ -194,7 +194,6 @@ RDEPENDS_task-core-lsb-runtime-add = "\
> eglibc-localedata-posix \
> eglibc-extra-nss \
> eglibc-pcprofile \
> - eglibc-pic \
> eglibc-utils \
> "
Are files in that package required in order to pass LSB tests?
I'm fine with removing it if it isn't required but I would like that
confirmation before we merge this.
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS
2012-08-15 13:51 ` Richard Purdie
@ 2012-08-15 15:37 ` Andy Ross
2012-08-15 15:41 ` Phil Blundell
0 siblings, 1 reply; 7+ messages in thread
From: Andy Ross @ 2012-08-15 15:37 UTC (permalink / raw)
To: openembedded-core
On 08/15/2012 06:51 AM, Richard Purdie wrote:
> Are files in that package required in order to pass LSB tests?
>
> I'm fine with removing it if it isn't required but I would like that
> confirmation before we merge this.
I can't speak to the test suites, but these files are eglibc-specific, so
it's hard to imagine them being required by the LSB.
Doing some checking, it arrived in commit 472f89de ("task-poky-lsb:
Add packges needed by LSB Test Suite") along with a bunch of other
eglibc subpackages. My guess, noting that the development packages
were *not* added, is it got added by mistake. I'll dig around.
Andy
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS
2012-08-15 15:37 ` Andy Ross
@ 2012-08-15 15:41 ` Phil Blundell
0 siblings, 0 replies; 7+ messages in thread
From: Phil Blundell @ 2012-08-15 15:41 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Wed, 2012-08-15 at 08:37 -0700, Andy Ross wrote:
> On 08/15/2012 06:51 AM, Richard Purdie wrote:
> > Are files in that package required in order to pass LSB tests?
> >
> > I'm fine with removing it if it isn't required but I would like that
> > confirmation before we merge this.
>
> I can't speak to the test suites, but these files are eglibc-specific, so
> it's hard to imagine them being required by the LSB.
Agreed, libc-pic is a pretty fringe requirement and, bizarre though the
LSB demands can be at times, I would be startled if they called for
it.
To be honest I'm not convinced we ought to be even building that package
by default -- afaik, the only thing that uses it is mklibs.
p.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS
2012-08-15 7:38 ` Koen Kooi
@ 2012-08-15 15:58 ` Andy Ross
2012-08-15 15:58 ` Andy Ross
0 siblings, 1 reply; 7+ messages in thread
From: Andy Ross @ 2012-08-15 15:58 UTC (permalink / raw)
To: openembedded-core
On 08/15/2012 12:38 AM, Koen Kooi wrote:
> MIssing PR bump
Oops, fixed.
Andy
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS
2012-08-15 15:58 ` Andy Ross
@ 2012-08-15 15:58 ` Andy Ross
0 siblings, 0 replies; 7+ messages in thread
From: Andy Ross @ 2012-08-15 15:58 UTC (permalink / raw)
To: openembedded-core
The task-core-lsb-runtime-add subpackage includes eglibc-pic as an
RDEPEND. That's incorrect, eglibc-pic is nothing but 22MB of static
libraries and should never appear as a runtime dependency.
Signed-off-by: Andy Ross <andy.ross@windriver.com>
---
meta/recipes-extended/tasks/task-core-lsb.bb | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/meta/recipes-extended/tasks/task-core-lsb.bb b/meta/recipes-extended/tasks/task-core-lsb.bb
index 553b89e..19e2129 100644
--- a/meta/recipes-extended/tasks/task-core-lsb.bb
+++ b/meta/recipes-extended/tasks/task-core-lsb.bb
@@ -3,7 +3,7 @@
#
DESCRIPTION = "Create Small Image Tasks"
-PR = "r9"
+PR = "r10"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
@@ -194,7 +194,6 @@ RDEPENDS_task-core-lsb-runtime-add = "\
eglibc-localedata-posix \
eglibc-extra-nss \
eglibc-pcprofile \
- eglibc-pic \
eglibc-utils \
"
--
1.7.11.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2012-08-15 16:19 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-14 22:44 [PATCH] task-core-lsb: Don't pull in eglibc-pic via RDEPENDS Andy Ross
2012-08-15 7:38 ` Koen Kooi
2012-08-15 15:58 ` Andy Ross
2012-08-15 15:58 ` Andy Ross
2012-08-15 13:51 ` Richard Purdie
2012-08-15 15:37 ` Andy Ross
2012-08-15 15:41 ` Phil Blundell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox