* [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken @ 2015-07-22 18:54 Joe Slater 2015-07-22 20:31 ` Joe MacDonald 2015-07-27 12:00 ` Martin Jansa 0 siblings, 2 replies; 7+ messages in thread From: Joe Slater @ 2015-07-22 18:54 UTC (permalink / raw) To: openembedded-devel We will need the conditional dependency on systemd. It is not a good idea to use PNBLACKLIST in a recipe, and the version here does not suppress lib32-ypbind-mt. Signed-off-by: Joe Slater <jslater@windriver.com> --- recipes-support/nis/ypbind-mt_2.2.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb index 4f8bf48..359b020 100644 --- a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb +++ b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb @@ -15,10 +15,12 @@ of known secure NIS server (/etc/yp.conf) Binds to \ the server which answered as first. \ " HOMEPAGE = "http://www.linux-nis.org/nis/ypbind-mt/index.html" -DEPENDS = "yp-tools" +DEPENDS = "yp-tools ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" PROVIDES += "ypbind" -PNBLACKLIST[ypbind-mt] ?= "BROKEN: Depends on broken yp-tools" +python () { + raise bb.parse.SkipPackage("BROKEN: Depends on broken yp-tools") +} SRC_URI = "http://www.linux-nis.org/download/ypbind-mt/${BP}.tar.bz2 \ file://ypbind-yocto.init \ -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken 2015-07-22 18:54 [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken Joe Slater @ 2015-07-22 20:31 ` Joe MacDonald 2015-07-28 19:39 ` Slater, Joseph 2015-07-27 12:00 ` Martin Jansa 1 sibling, 1 reply; 7+ messages in thread From: Joe MacDonald @ 2015-07-22 20:31 UTC (permalink / raw) To: openembedded-devel [-- Attachment #1: Type: text/plain, Size: 1709 bytes --] [[oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken] On 15.07.22 (Wed 11:54) Joe Slater wrote: > We will need the conditional dependency on systemd. It is > not a good idea to use PNBLACKLIST in a recipe, and the It isn't a good idea to have a recipe that needs to be blacklisted. :-) That said, it's here and there's still an argument for supporting it, so why remove PNBLACKLIST and replace it with something less obvious? No objection to a conditional dependency on systemd. -J. > version here does not suppress lib32-ypbind-mt. > > Signed-off-by: Joe Slater <jslater@windriver.com> > --- > recipes-support/nis/ypbind-mt_2.2.bb | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > index 4f8bf48..359b020 100644 > --- a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > +++ b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > @@ -15,10 +15,12 @@ of known secure NIS server (/etc/yp.conf) Binds to \ > the server which answered as first. \ > " > HOMEPAGE = "http://www.linux-nis.org/nis/ypbind-mt/index.html" > -DEPENDS = "yp-tools" > +DEPENDS = "yp-tools ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" > PROVIDES += "ypbind" > > -PNBLACKLIST[ypbind-mt] ?= "BROKEN: Depends on broken yp-tools" > +python () { > + raise bb.parse.SkipPackage("BROKEN: Depends on broken yp-tools") > +} > > SRC_URI = "http://www.linux-nis.org/download/ypbind-mt/${BP}.tar.bz2 \ > file://ypbind-yocto.init \ > -- > 1.7.9.5 > -- -Joe MacDonald. :wq [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 484 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken 2015-07-22 20:31 ` Joe MacDonald @ 2015-07-28 19:39 ` Slater, Joseph 2015-07-30 15:41 ` Joe MacDonald 0 siblings, 1 reply; 7+ messages in thread From: Slater, Joseph @ 2015-07-28 19:39 UTC (permalink / raw) To: openembedded-devel@lists.openembedded.org > -----Original Message----- > From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel- > bounces@lists.openembedded.org] On Behalf Of Joe MacDonald > Sent: Wednesday, July 22, 2015 1:31 PM > To: openembedded-devel@lists.openembedded.org > Subject: Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as > broken > > [[oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken] On > 15.07.22 (Wed 11:54) Joe Slater wrote: > > > We will need the conditional dependency on systemd. It is > > not a good idea to use PNBLACKLIST in a recipe, and the > > It isn't a good idea to have a recipe that needs to be blacklisted. :-) > > That said, it's here and there's still an argument for supporting it, so > why remove PNBLACKLIST and replace it with something less obvious? Blacklisting oneself is esthetically unpleasing. But, beyond that, it doesn't work for multilib variants, and for some reason PNBLACKLIST[${PN}] does not parse. Joe > > No objection to a conditional dependency on systemd. > > -J. > > > version here does not suppress lib32-ypbind-mt. > > > > Signed-off-by: Joe Slater <jslater@windriver.com> > > --- > > recipes-support/nis/ypbind-mt_2.2.bb | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb b/meta- > networking/recipes-support/nis/ypbind-mt_2.2.bb > > index 4f8bf48..359b020 100644 > > --- a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > > +++ b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > > @@ -15,10 +15,12 @@ of known secure NIS server (/etc/yp.conf) Binds to \ > > the server which answered as first. \ > > " > > HOMEPAGE = "http://www.linux-nis.org/nis/ypbind-mt/index.html" > > -DEPENDS = "yp-tools" > > +DEPENDS = "yp-tools ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" > > PROVIDES += "ypbind" > > > > -PNBLACKLIST[ypbind-mt] ?= "BROKEN: Depends on broken yp-tools" > > +python () { > > + raise bb.parse.SkipPackage("BROKEN: Depends on broken yp-tools") > > +} > > > > SRC_URI = "http://www.linux-nis.org/download/ypbind-mt/${BP}.tar.bz2 \ > > file://ypbind-yocto.init \ > > -- > > 1.7.9.5 > > > -- > -Joe MacDonald. > :wq ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken 2015-07-28 19:39 ` Slater, Joseph @ 2015-07-30 15:41 ` Joe MacDonald 2015-07-30 18:19 ` Slater, Joseph 0 siblings, 1 reply; 7+ messages in thread From: Joe MacDonald @ 2015-07-30 15:41 UTC (permalink / raw) To: Slater, Joseph; +Cc: openembedded-devel@lists.openembedded.org [-- Attachment #1: Type: text/plain, Size: 3417 bytes --] [Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken] On 15.07.28 (Tue 19:39) Slater, Joseph wrote: > > > -----Original Message----- > > From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel- > > bounces@lists.openembedded.org] On Behalf Of Joe MacDonald > > Sent: Wednesday, July 22, 2015 1:31 PM > > To: openembedded-devel@lists.openembedded.org > > Subject: Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as > > broken > > > > [[oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken] On > > 15.07.22 (Wed 11:54) Joe Slater wrote: > > > > > We will need the conditional dependency on systemd. It is > > > not a good idea to use PNBLACKLIST in a recipe, and the > > > > It isn't a good idea to have a recipe that needs to be blacklisted. :-) > > > > That said, it's here and there's still an argument for supporting it, so > > why remove PNBLACKLIST and replace it with something less obvious? > > Blacklisting oneself is esthetically unpleasing. I won't argue there. But it happens because it's a less violent option than kicking the recipe to the curb and waiting for pick-up day. It does allow someone using the recipe to come along and still use it for their scenario if they need it and they know the reason for the blacklisting doesn't apply to them. > But, beyond that, it doesn't work for multilib variants, and for some > reason PNBLACKLIST[${PN}] does not parse. I don't know about that, but maybe a patch to poky is appropriate instead. It's nothing to be proud of, but there are dozens of recipes in meta-openembedded/ right now that are blacklisted, unless you're planning on submitting the same construct to replace all of them, I don't think there's much more to discuss on it. I'm marking this 'changes requested'. Do you think you could re-submit with just the dependency change? Thanks, -J. > > Joe > > > > > > No objection to a conditional dependency on systemd. > > > > -J. > > > > > version here does not suppress lib32-ypbind-mt. > > > > > > Signed-off-by: Joe Slater <jslater@windriver.com> > > > --- > > > recipes-support/nis/ypbind-mt_2.2.bb | 6 ++++-- > > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > > > diff --git a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb b/meta- > > networking/recipes-support/nis/ypbind-mt_2.2.bb > > > index 4f8bf48..359b020 100644 > > > --- a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > > > +++ b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > > > @@ -15,10 +15,12 @@ of known secure NIS server (/etc/yp.conf) Binds to \ > > > the server which answered as first. \ > > > " > > > HOMEPAGE = "http://www.linux-nis.org/nis/ypbind-mt/index.html" > > > -DEPENDS = "yp-tools" > > > +DEPENDS = "yp-tools ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" > > > PROVIDES += "ypbind" > > > > > > -PNBLACKLIST[ypbind-mt] ?= "BROKEN: Depends on broken yp-tools" > > > +python () { > > > + raise bb.parse.SkipPackage("BROKEN: Depends on broken yp-tools") > > > +} > > > > > > SRC_URI = "http://www.linux-nis.org/download/ypbind-mt/${BP}.tar.bz2 \ > > > file://ypbind-yocto.init \ > > > -- > > > 1.7.9.5 > > > > > -- > > -Joe MacDonald. > > :wq -- -Joe MacDonald. :wq [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 484 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken 2015-07-30 15:41 ` Joe MacDonald @ 2015-07-30 18:19 ` Slater, Joseph 2015-07-30 18:55 ` Martin Jansa 0 siblings, 1 reply; 7+ messages in thread From: Slater, Joseph @ 2015-07-30 18:19 UTC (permalink / raw) To: Joe MacDonald; +Cc: openembedded-devel@lists.openembedded.org > -----Original Message----- > From: Joe MacDonald [mailto:Joe_MacDonald@mentor.com] > Sent: Thursday, July 30, 2015 8:41 AM > To: Slater, Joseph > Cc: openembedded-devel@lists.openembedded.org > Subject: Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as > broken > > [Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken] On > 15.07.28 (Tue 19:39) Slater, Joseph wrote: > > > > > > -----Original Message----- > > > From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel- > > > bounces@lists.openembedded.org] On Behalf Of Joe MacDonald > > > Sent: Wednesday, July 22, 2015 1:31 PM > > > To: openembedded-devel@lists.openembedded.org > > > Subject: Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as > > > broken > > > > > > [[oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken] On > > > 15.07.22 (Wed 11:54) Joe Slater wrote: > > > > > > > We will need the conditional dependency on systemd. It is > > > > not a good idea to use PNBLACKLIST in a recipe, and the > > > > > > It isn't a good idea to have a recipe that needs to be blacklisted. :-) > > > > > > That said, it's here and there's still an argument for supporting it, so > > > why remove PNBLACKLIST and replace it with something less obvious? > > > > Blacklisting oneself is esthetically unpleasing. > > I won't argue there. But it happens because it's a less violent option > than kicking the recipe to the curb and waiting for pick-up day. It > does allow someone using the recipe to come along and still use it for > their scenario if they need it and they know the reason for the > blacklisting doesn't apply to them. > > > But, beyond that, it doesn't work for multilib variants, and for some > > reason PNBLACKLIST[${PN}] does not parse. > > I don't know about that, but maybe a patch to poky is appropriate > instead. It's nothing to be proud of, but there are dozens of recipes > in meta-openembedded/ right now that are blacklisted, unless you're > planning on submitting the same construct to replace all of them, I > don't think there's much more to discuss on it. > > I'm marking this 'changes requested'. Do you think you could re-submit > with just the dependency change? Sure. I'll check, though, if maybe PNBLACKLIST["${PN}"] parses, in which case I'll use that for the blacklisting. Joe > > Thanks, > -J. > > > > > Joe > > > > > > > > > > No objection to a conditional dependency on systemd. > > > > > > -J. > > > > > > > version here does not suppress lib32-ypbind-mt. > > > > > > > > Signed-off-by: Joe Slater <jslater@windriver.com> > > > > --- > > > > recipes-support/nis/ypbind-mt_2.2.bb | 6 ++++-- > > > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > > > > > diff --git a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb b/meta- > > > networking/recipes-support/nis/ypbind-mt_2.2.bb > > > > index 4f8bf48..359b020 100644 > > > > --- a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > > > > +++ b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > > > > @@ -15,10 +15,12 @@ of known secure NIS server (/etc/yp.conf) Binds to \ > > > > the server which answered as first. \ > > > > " > > > > HOMEPAGE = "http://www.linux-nis.org/nis/ypbind-mt/index.html" > > > > -DEPENDS = "yp-tools" > > > > +DEPENDS = "yp-tools ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', > d)}" > > > > PROVIDES += "ypbind" > > > > > > > > -PNBLACKLIST[ypbind-mt] ?= "BROKEN: Depends on broken yp-tools" > > > > +python () { > > > > + raise bb.parse.SkipPackage("BROKEN: Depends on broken yp-tools") > > > > +} > > > > > > > > SRC_URI = "http://www.linux-nis.org/download/ypbind-mt/${BP}.tar.bz2 \ > > > > file://ypbind-yocto.init \ > > > > -- > > > > 1.7.9.5 > > > > > > > -- > > > -Joe MacDonald. > > > :wq > -- > -Joe MacDonald. > :wq ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken 2015-07-30 18:19 ` Slater, Joseph @ 2015-07-30 18:55 ` Martin Jansa 0 siblings, 0 replies; 7+ messages in thread From: Martin Jansa @ 2015-07-30 18:55 UTC (permalink / raw) To: openembedded-devel [-- Attachment #1: Type: text/plain, Size: 4640 bytes --] On Thu, Jul 30, 2015 at 06:19:10PM +0000, Slater, Joseph wrote: > > > > -----Original Message----- > > From: Joe MacDonald [mailto:Joe_MacDonald@mentor.com] > > Sent: Thursday, July 30, 2015 8:41 AM > > To: Slater, Joseph > > Cc: openembedded-devel@lists.openembedded.org > > Subject: Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as > > broken > > > > [Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken] On > > 15.07.28 (Tue 19:39) Slater, Joseph wrote: > > > > > > > > > -----Original Message----- > > > > From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel- > > > > bounces@lists.openembedded.org] On Behalf Of Joe MacDonald > > > > Sent: Wednesday, July 22, 2015 1:31 PM > > > > To: openembedded-devel@lists.openembedded.org > > > > Subject: Re: [oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as > > > > broken > > > > > > > > [[oe] [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken] On > > > > 15.07.22 (Wed 11:54) Joe Slater wrote: > > > > > > > > > We will need the conditional dependency on systemd. It is > > > > > not a good idea to use PNBLACKLIST in a recipe, and the > > > > > > > > It isn't a good idea to have a recipe that needs to be blacklisted. :-) > > > > > > > > That said, it's here and there's still an argument for supporting it, so > > > > why remove PNBLACKLIST and replace it with something less obvious? > > > > > > Blacklisting oneself is esthetically unpleasing. > > > > I won't argue there. But it happens because it's a less violent option > > than kicking the recipe to the curb and waiting for pick-up day. It > > does allow someone using the recipe to come along and still use it for > > their scenario if they need it and they know the reason for the > > blacklisting doesn't apply to them. > > > > > But, beyond that, it doesn't work for multilib variants, and for some > > > reason PNBLACKLIST[${PN}] does not parse. > > > > I don't know about that, but maybe a patch to poky is appropriate > > instead. It's nothing to be proud of, but there are dozens of recipes > > in meta-openembedded/ right now that are blacklisted, unless you're > > planning on submitting the same construct to replace all of them, I > > don't think there's much more to discuss on it. > > > > I'm marking this 'changes requested'. Do you think you could re-submit > > with just the dependency change? > > Sure. I'll check, though, if maybe PNBLACKLIST["${PN}"] parses, in which > case I'll use that for the blacklisting. I still don't see any reason to change "PNBLACKLIST[ypbind-mt]". > Joe > > > > > Thanks, > > -J. > > > > > > > > Joe > > > > > > > > > > > > > > No objection to a conditional dependency on systemd. > > > > > > > > -J. > > > > > > > > > version here does not suppress lib32-ypbind-mt. > > > > > > > > > > Signed-off-by: Joe Slater <jslater@windriver.com> > > > > > --- > > > > > recipes-support/nis/ypbind-mt_2.2.bb | 6 ++++-- > > > > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > > > > > > > diff --git a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb b/meta- > > > > networking/recipes-support/nis/ypbind-mt_2.2.bb > > > > > index 4f8bf48..359b020 100644 > > > > > --- a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > > > > > +++ b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > > > > > @@ -15,10 +15,12 @@ of known secure NIS server (/etc/yp.conf) Binds to \ > > > > > the server which answered as first. \ > > > > > " > > > > > HOMEPAGE = "http://www.linux-nis.org/nis/ypbind-mt/index.html" > > > > > -DEPENDS = "yp-tools" > > > > > +DEPENDS = "yp-tools ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', > > d)}" > > > > > PROVIDES += "ypbind" > > > > > > > > > > -PNBLACKLIST[ypbind-mt] ?= "BROKEN: Depends on broken yp-tools" > > > > > +python () { > > > > > + raise bb.parse.SkipPackage("BROKEN: Depends on broken yp-tools") > > > > > +} > > > > > > > > > > SRC_URI = "http://www.linux-nis.org/download/ypbind-mt/${BP}.tar.bz2 \ > > > > > file://ypbind-yocto.init \ > > > > > -- > > > > > 1.7.9.5 > > > > > > > > > -- > > > > -Joe MacDonald. > > > > :wq > > -- > > -Joe MacDonald. > > :wq > -- > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 188 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken 2015-07-22 18:54 [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken Joe Slater 2015-07-22 20:31 ` Joe MacDonald @ 2015-07-27 12:00 ` Martin Jansa 1 sibling, 0 replies; 7+ messages in thread From: Martin Jansa @ 2015-07-27 12:00 UTC (permalink / raw) To: openembedded-devel [-- Attachment #1: Type: text/plain, Size: 1614 bytes --] On Wed, Jul 22, 2015 at 11:54:10AM -0700, Joe Slater wrote: > We will need the conditional dependency on systemd. It is > not a good idea to use PNBLACKLIST in a recipe, and the Why? > version here does not suppress lib32-ypbind-mt. > > Signed-off-by: Joe Slater <jslater@windriver.com> > --- > recipes-support/nis/ypbind-mt_2.2.bb | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > index 4f8bf48..359b020 100644 > --- a/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > +++ b/meta-networking/recipes-support/nis/ypbind-mt_2.2.bb > @@ -15,10 +15,12 @@ of known secure NIS server (/etc/yp.conf) Binds to \ > the server which answered as first. \ > " > HOMEPAGE = "http://www.linux-nis.org/nis/ypbind-mt/index.html" > -DEPENDS = "yp-tools" > +DEPENDS = "yp-tools ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" > PROVIDES += "ypbind" > > -PNBLACKLIST[ypbind-mt] ?= "BROKEN: Depends on broken yp-tools" > +python () { > + raise bb.parse.SkipPackage("BROKEN: Depends on broken yp-tools") > +} > > SRC_URI = "http://www.linux-nis.org/download/ypbind-mt/${BP}.tar.bz2 \ > file://ypbind-yocto.init \ > -- > 1.7.9.5 > > -- > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 188 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-07-30 18:55 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-07-22 18:54 [meta-networking][PATCH 1/1] ypbind-mt: add dependency but keep as broken Joe Slater 2015-07-22 20:31 ` Joe MacDonald 2015-07-28 19:39 ` Slater, Joseph 2015-07-30 15:41 ` Joe MacDonald 2015-07-30 18:19 ` Slater, Joseph 2015-07-30 18:55 ` Martin Jansa 2015-07-27 12:00 ` Martin Jansa
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.