All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [zeus][PATCH] core: recipes: fix some native tools dependencies
@ 2020-01-21  8:26 Sumit Garg
  2020-01-29 16:15 ` akuster808
  0 siblings, 1 reply; 4+ messages in thread
From: Sumit Garg @ 2020-01-21  8:26 UTC (permalink / raw
  To: openembedded-core

Some native tools dependency issues were seen while building with
external GCC tool-set rather than source GCC tool-set. While building
with source tool-set these dependencies were implicitly met which is not
the case with external tool-set. So explicitly state these native tools
dependencies.

Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
---
 meta/recipes-extended/man-db/man-db_2.8.7.bb       | 2 +-
 meta/recipes-extended/psmisc/psmisc.inc            | 2 +-
 meta/recipes-graphics/xorg-app/xorg-app-common.inc | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-extended/man-db/man-db_2.8.7.bb b/meta/recipes-extended/man-db/man-db_2.8.7.bb
index 083b237..0d73b03 100644
--- a/meta/recipes-extended/man-db/man-db_2.8.7.bb
+++ b/meta/recipes-extended/man-db/man-db_2.8.7.bb
@@ -10,7 +10,7 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/man-db/man-db-${PV}.tar.xz \
 SRC_URI[md5sum] = "ec0b23c8314a1654c4d059b2c18ce43d"
 SRC_URI[sha256sum] = "b9cd5bb996305d08bfe9e1114edc30b4c97be807093b88af8033ed1cf9beb326"
 
-DEPENDS = "libpipeline gdbm groff-native base-passwd"
+DEPENDS = "libpipeline gdbm groff-native base-passwd flex-native"
 RDEPENDS_${PN} += "base-passwd"
 
 # | /usr/src/debug/man-db/2.8.0-r0/man-db-2.8.0/src/whatis.c:939: undefined reference to `_nl_msg_cat_cntr'
diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc
index 594a10c..6de5acb 100644
--- a/meta/recipes-extended/psmisc/psmisc.inc
+++ b/meta/recipes-extended/psmisc/psmisc.inc
@@ -7,7 +7,7 @@ command sends a specified signal (SIGTERM if nothing is specified) to \
 processes identified by name.  The fuser command identifies the PIDs \
 of processes that are using specified files or filesystems."
 SECTION = "base"
-DEPENDS = "ncurses virtual/libintl gettext-native"
+DEPENDS = "ncurses virtual/libintl gettext-native xz-native"
 LICENSE = "GPLv2"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz"
diff --git a/meta/recipes-graphics/xorg-app/xorg-app-common.inc b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
index 3529cb2..211e399 100644
--- a/meta/recipes-graphics/xorg-app/xorg-app-common.inc
+++ b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
@@ -12,6 +12,6 @@ INC_PR = "r8"
 
 SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.bz2"
 
-inherit autotools pkgconfig distro_features_check
+inherit autotools pkgconfig distro_features_check gettext
 
 FILES_${PN} += " ${libdir}/X11/${BPN} ${datadir}/X11/app-defaults/"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [zeus][PATCH] core: recipes: fix some native tools dependencies
  2020-01-21  8:26 [zeus][PATCH] core: recipes: fix some native tools dependencies Sumit Garg
@ 2020-01-29 16:15 ` akuster808
  2020-01-29 16:30   ` Alexander Kanavin
  0 siblings, 1 reply; 4+ messages in thread
From: akuster808 @ 2020-01-29 16:15 UTC (permalink / raw
  To: Sumit Garg, openembedded-core



On 1/21/20 12:26 AM, Sumit Garg wrote:
> Some native tools dependency issues were seen while building with
> external GCC tool-set rather than source GCC tool-set. While building
> with source tool-set these dependencies were implicitly met which is not
> the case with external tool-set. So explicitly state these native tools
> dependencies.
Do these changes need to be in master?

- armin
> Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
> ---
>  meta/recipes-extended/man-db/man-db_2.8.7.bb       | 2 +-
>  meta/recipes-extended/psmisc/psmisc.inc            | 2 +-
>  meta/recipes-graphics/xorg-app/xorg-app-common.inc | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-extended/man-db/man-db_2.8.7.bb b/meta/recipes-extended/man-db/man-db_2.8.7.bb
> index 083b237..0d73b03 100644
> --- a/meta/recipes-extended/man-db/man-db_2.8.7.bb
> +++ b/meta/recipes-extended/man-db/man-db_2.8.7.bb
> @@ -10,7 +10,7 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/man-db/man-db-${PV}.tar.xz \
>  SRC_URI[md5sum] = "ec0b23c8314a1654c4d059b2c18ce43d"
>  SRC_URI[sha256sum] = "b9cd5bb996305d08bfe9e1114edc30b4c97be807093b88af8033ed1cf9beb326"
>  
> -DEPENDS = "libpipeline gdbm groff-native base-passwd"
> +DEPENDS = "libpipeline gdbm groff-native base-passwd flex-native"
>  RDEPENDS_${PN} += "base-passwd"
>  
>  # | /usr/src/debug/man-db/2.8.0-r0/man-db-2.8.0/src/whatis.c:939: undefined reference to `_nl_msg_cat_cntr'
> diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc
> index 594a10c..6de5acb 100644
> --- a/meta/recipes-extended/psmisc/psmisc.inc
> +++ b/meta/recipes-extended/psmisc/psmisc.inc
> @@ -7,7 +7,7 @@ command sends a specified signal (SIGTERM if nothing is specified) to \
>  processes identified by name.  The fuser command identifies the PIDs \
>  of processes that are using specified files or filesystems."
>  SECTION = "base"
> -DEPENDS = "ncurses virtual/libintl gettext-native"
> +DEPENDS = "ncurses virtual/libintl gettext-native xz-native"
>  LICENSE = "GPLv2"
>  
>  SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz"
> diff --git a/meta/recipes-graphics/xorg-app/xorg-app-common.inc b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
> index 3529cb2..211e399 100644
> --- a/meta/recipes-graphics/xorg-app/xorg-app-common.inc
> +++ b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
> @@ -12,6 +12,6 @@ INC_PR = "r8"
>  
>  SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.bz2"
>  
> -inherit autotools pkgconfig distro_features_check
> +inherit autotools pkgconfig distro_features_check gettext
>  
>  FILES_${PN} += " ${libdir}/X11/${BPN} ${datadir}/X11/app-defaults/"



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [zeus][PATCH] core: recipes: fix some native tools dependencies
  2020-01-29 16:15 ` akuster808
@ 2020-01-29 16:30   ` Alexander Kanavin
  2020-01-30  9:30     ` Sumit Garg
  0 siblings, 1 reply; 4+ messages in thread
From: Alexander Kanavin @ 2020-01-29 16:30 UTC (permalink / raw
  To: akuster808; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 3024 bytes --]

I think a separate, somewhat different patch was sent for master?

Alex

On Wed, 29 Jan 2020 at 17:15, akuster808 <akuster808@gmail.com> wrote:

>
>
> On 1/21/20 12:26 AM, Sumit Garg wrote:
> > Some native tools dependency issues were seen while building with
> > external GCC tool-set rather than source GCC tool-set. While building
> > with source tool-set these dependencies were implicitly met which is not
> > the case with external tool-set. So explicitly state these native tools
> > dependencies.
> Do these changes need to be in master?
>
> - armin
> > Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
> > ---
> >  meta/recipes-extended/man-db/man-db_2.8.7.bb       | 2 +-
> >  meta/recipes-extended/psmisc/psmisc.inc            | 2 +-
> >  meta/recipes-graphics/xorg-app/xorg-app-common.inc | 2 +-
> >  3 files changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/meta/recipes-extended/man-db/man-db_2.8.7.bb
> b/meta/recipes-extended/man-db/man-db_2.8.7.bb
> > index 083b237..0d73b03 100644
> > --- a/meta/recipes-extended/man-db/man-db_2.8.7.bb
> > +++ b/meta/recipes-extended/man-db/man-db_2.8.7.bb
> > @@ -10,7 +10,7 @@ SRC_URI =
> "${SAVANNAH_NONGNU_MIRROR}/man-db/man-db-${PV}.tar.xz \
> >  SRC_URI[md5sum] = "ec0b23c8314a1654c4d059b2c18ce43d"
> >  SRC_URI[sha256sum] =
> "b9cd5bb996305d08bfe9e1114edc30b4c97be807093b88af8033ed1cf9beb326"
> >
> > -DEPENDS = "libpipeline gdbm groff-native base-passwd"
> > +DEPENDS = "libpipeline gdbm groff-native base-passwd flex-native"
> >  RDEPENDS_${PN} += "base-passwd"
> >
> >  # | /usr/src/debug/man-db/2.8.0-r0/man-db-2.8.0/src/whatis.c:939:
> undefined reference to `_nl_msg_cat_cntr'
> > diff --git a/meta/recipes-extended/psmisc/psmisc.inc
> b/meta/recipes-extended/psmisc/psmisc.inc
> > index 594a10c..6de5acb 100644
> > --- a/meta/recipes-extended/psmisc/psmisc.inc
> > +++ b/meta/recipes-extended/psmisc/psmisc.inc
> > @@ -7,7 +7,7 @@ command sends a specified signal (SIGTERM if nothing is
> specified) to \
> >  processes identified by name.  The fuser command identifies the PIDs \
> >  of processes that are using specified files or filesystems."
> >  SECTION = "base"
> > -DEPENDS = "ncurses virtual/libintl gettext-native"
> > +DEPENDS = "ncurses virtual/libintl gettext-native xz-native"
> >  LICENSE = "GPLv2"
> >
> >  SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz"
> > diff --git a/meta/recipes-graphics/xorg-app/xorg-app-common.inc
> b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
> > index 3529cb2..211e399 100644
> > --- a/meta/recipes-graphics/xorg-app/xorg-app-common.inc
> > +++ b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
> > @@ -12,6 +12,6 @@ INC_PR = "r8"
> >
> >  SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.bz2"
> >
> > -inherit autotools pkgconfig distro_features_check
> > +inherit autotools pkgconfig distro_features_check gettext
> >
> >  FILES_${PN} += " ${libdir}/X11/${BPN} ${datadir}/X11/app-defaults/"
>
>

[-- Attachment #2: Type: text/html, Size: 4184 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [zeus][PATCH] core: recipes: fix some native tools dependencies
  2020-01-29 16:30   ` Alexander Kanavin
@ 2020-01-30  9:30     ` Sumit Garg
  0 siblings, 0 replies; 4+ messages in thread
From: Sumit Garg @ 2020-01-30  9:30 UTC (permalink / raw
  To: Alexander Kanavin, akuster808; +Cc: OE-core

On Wed, 29 Jan 2020 at 22:00, Alexander Kanavin <alex.kanavin@gmail.com> wrote:
>
> I think a separate, somewhat different patch was sent for master?
>

Correct.

Patch for master: https://patchwork.openembedded.org/patch/169288/
Patch for zeus: https://patchwork.openembedded.org/patch/169289/

-Sumit

> Alex
>
> On Wed, 29 Jan 2020 at 17:15, akuster808 <akuster808@gmail.com> wrote:
>>
>>
>>
>> On 1/21/20 12:26 AM, Sumit Garg wrote:
>> > Some native tools dependency issues were seen while building with
>> > external GCC tool-set rather than source GCC tool-set. While building
>> > with source tool-set these dependencies were implicitly met which is not
>> > the case with external tool-set. So explicitly state these native tools
>> > dependencies.
>> Do these changes need to be in master?
>>
>> - armin
>> > Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
>> > ---
>> >  meta/recipes-extended/man-db/man-db_2.8.7.bb       | 2 +-
>> >  meta/recipes-extended/psmisc/psmisc.inc            | 2 +-
>> >  meta/recipes-graphics/xorg-app/xorg-app-common.inc | 2 +-
>> >  3 files changed, 3 insertions(+), 3 deletions(-)
>> >
>> > diff --git a/meta/recipes-extended/man-db/man-db_2.8.7.bb b/meta/recipes-extended/man-db/man-db_2.8.7.bb
>> > index 083b237..0d73b03 100644
>> > --- a/meta/recipes-extended/man-db/man-db_2.8.7.bb
>> > +++ b/meta/recipes-extended/man-db/man-db_2.8.7.bb
>> > @@ -10,7 +10,7 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/man-db/man-db-${PV}.tar.xz \
>> >  SRC_URI[md5sum] = "ec0b23c8314a1654c4d059b2c18ce43d"
>> >  SRC_URI[sha256sum] = "b9cd5bb996305d08bfe9e1114edc30b4c97be807093b88af8033ed1cf9beb326"
>> >
>> > -DEPENDS = "libpipeline gdbm groff-native base-passwd"
>> > +DEPENDS = "libpipeline gdbm groff-native base-passwd flex-native"
>> >  RDEPENDS_${PN} += "base-passwd"
>> >
>> >  # | /usr/src/debug/man-db/2.8.0-r0/man-db-2.8.0/src/whatis.c:939: undefined reference to `_nl_msg_cat_cntr'
>> > diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc
>> > index 594a10c..6de5acb 100644
>> > --- a/meta/recipes-extended/psmisc/psmisc.inc
>> > +++ b/meta/recipes-extended/psmisc/psmisc.inc
>> > @@ -7,7 +7,7 @@ command sends a specified signal (SIGTERM if nothing is specified) to \
>> >  processes identified by name.  The fuser command identifies the PIDs \
>> >  of processes that are using specified files or filesystems."
>> >  SECTION = "base"
>> > -DEPENDS = "ncurses virtual/libintl gettext-native"
>> > +DEPENDS = "ncurses virtual/libintl gettext-native xz-native"
>> >  LICENSE = "GPLv2"
>> >
>> >  SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz"
>> > diff --git a/meta/recipes-graphics/xorg-app/xorg-app-common.inc b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
>> > index 3529cb2..211e399 100644
>> > --- a/meta/recipes-graphics/xorg-app/xorg-app-common.inc
>> > +++ b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
>> > @@ -12,6 +12,6 @@ INC_PR = "r8"
>> >
>> >  SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.bz2"
>> >
>> > -inherit autotools pkgconfig distro_features_check
>> > +inherit autotools pkgconfig distro_features_check gettext
>> >
>> >  FILES_${PN} += " ${libdir}/X11/${BPN} ${datadir}/X11/app-defaults/"
>>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-01-30 15:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-21  8:26 [zeus][PATCH] core: recipes: fix some native tools dependencies Sumit Garg
2020-01-29 16:15 ` akuster808
2020-01-29 16:30   ` Alexander Kanavin
2020-01-30  9:30     ` Sumit Garg

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.