All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [meta-cloud-services][PATCH 1/2] meta-cloud-services: add layer depends on networking-layer
@ 2019-07-01  2:08 mingli.yu
  2019-07-01  2:08 ` [meta-cloud-services][PATCH 2/2] nss-pam-ldapd: add required distro feature check for pam mingli.yu
  2019-07-03 14:05 ` [meta-cloud-services][PATCH 1/2] meta-cloud-services: add layer depends on networking-layer Bruce Ashfield
  0 siblings, 2 replies; 4+ messages in thread
From: mingli.yu @ 2019-07-01  2:08 UTC (permalink / raw
  To: yocto, bruce.ashfield

From: Mingli Yu <Mingli.Yu@windriver.com>

Since spice of meta-cloud-services depends on
cyrus-sasl which comes from networking-layer,
add missing layer depends back.

Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
---
 conf/layer.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 203f9db..2cfb75f 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -8,4 +8,4 @@ BBFILE_COLLECTIONS += "cloud-services-layer"
 BBFILE_PATTERN_cloud-services-layer := "^${LAYERDIR}/"
 BBFILE_PRIORITY_cloud-services-layer = "5"
 LAYERSERIES_COMPAT_cloud-services-layer = "thud warrior"
-LAYERDEPENDS_cloud-services-layer = "core filesystems-layer"
+LAYERDEPENDS_cloud-services-layer = "core filesystems-layer networking-layer"
-- 
2.7.4



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

* [meta-cloud-services][PATCH 2/2] nss-pam-ldapd: add required distro feature check for pam
  2019-07-01  2:08 [meta-cloud-services][PATCH 1/2] meta-cloud-services: add layer depends on networking-layer mingli.yu
@ 2019-07-01  2:08 ` mingli.yu
  2019-07-03 14:05   ` Bruce Ashfield
  2019-07-03 14:05 ` [meta-cloud-services][PATCH 1/2] meta-cloud-services: add layer depends on networking-layer Bruce Ashfield
  1 sibling, 1 reply; 4+ messages in thread
From: mingli.yu @ 2019-07-01  2:08 UTC (permalink / raw
  To: yocto, bruce.ashfield

From: Mingli Yu <Mingli.Yu@windriver.com>

As nss-pam-ldapd depends on libpam, it should do
required distro feature check for pam.

Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
---
 recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb b/recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb
index 404aeca..dfa562f 100644
--- a/recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb
+++ b/recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb
@@ -20,7 +20,8 @@ SRC_URI = "\
 	file://nslcd.service \
 	"
 
-inherit autotools
+inherit autotools distro_features_check
+REQUIRED_DISTRO_FEATURES = "pam"
 
 SRC_URI[md5sum] = "8c99fdc54f4bf9aca8c5f53fdb1403ff"
 SRC_URI[sha256sum] = "ef7362e7f2003da8c7beb7bcc03c30494acf712625aaac8badc6e7eb16f3453f"
-- 
2.7.4



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

* Re: [meta-cloud-services][PATCH 1/2] meta-cloud-services: add layer depends on networking-layer
  2019-07-01  2:08 [meta-cloud-services][PATCH 1/2] meta-cloud-services: add layer depends on networking-layer mingli.yu
  2019-07-01  2:08 ` [meta-cloud-services][PATCH 2/2] nss-pam-ldapd: add required distro feature check for pam mingli.yu
@ 2019-07-03 14:05 ` Bruce Ashfield
  1 sibling, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2019-07-03 14:05 UTC (permalink / raw
  To: Yu, Mingli; +Cc: Yocto Project Discussion

merged

Bruce

On Sun, Jun 30, 2019 at 10:08 PM <mingli.yu@windriver.com> wrote:
>
> From: Mingli Yu <Mingli.Yu@windriver.com>
>
> Since spice of meta-cloud-services depends on
> cyrus-sasl which comes from networking-layer,
> add missing layer depends back.
>
> Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
> ---
>  conf/layer.conf | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/conf/layer.conf b/conf/layer.conf
> index 203f9db..2cfb75f 100644
> --- a/conf/layer.conf
> +++ b/conf/layer.conf
> @@ -8,4 +8,4 @@ BBFILE_COLLECTIONS += "cloud-services-layer"
>  BBFILE_PATTERN_cloud-services-layer := "^${LAYERDIR}/"
>  BBFILE_PRIORITY_cloud-services-layer = "5"
>  LAYERSERIES_COMPAT_cloud-services-layer = "thud warrior"
> -LAYERDEPENDS_cloud-services-layer = "core filesystems-layer"
> +LAYERDEPENDS_cloud-services-layer = "core filesystems-layer networking-layer"
> --
> 2.7.4
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II


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

* Re: [meta-cloud-services][PATCH 2/2] nss-pam-ldapd: add required distro feature check for pam
  2019-07-01  2:08 ` [meta-cloud-services][PATCH 2/2] nss-pam-ldapd: add required distro feature check for pam mingli.yu
@ 2019-07-03 14:05   ` Bruce Ashfield
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2019-07-03 14:05 UTC (permalink / raw
  To: Yu, Mingli; +Cc: Yocto Project Discussion

merged.

Bruce

On Sun, Jun 30, 2019 at 10:09 PM <mingli.yu@windriver.com> wrote:
>
> From: Mingli Yu <Mingli.Yu@windriver.com>
>
> As nss-pam-ldapd depends on libpam, it should do
> required distro feature check for pam.
>
> Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
> ---
>  recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb b/recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb
> index 404aeca..dfa562f 100644
> --- a/recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb
> +++ b/recipes-support/nss-pam-ldapd/nss-pam-ldapd_0.9.8.bb
> @@ -20,7 +20,8 @@ SRC_URI = "\
>         file://nslcd.service \
>         "
>
> -inherit autotools
> +inherit autotools distro_features_check
> +REQUIRED_DISTRO_FEATURES = "pam"
>
>  SRC_URI[md5sum] = "8c99fdc54f4bf9aca8c5f53fdb1403ff"
>  SRC_URI[sha256sum] = "ef7362e7f2003da8c7beb7bcc03c30494acf712625aaac8badc6e7eb16f3453f"
> --
> 2.7.4
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II


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

end of thread, other threads:[~2019-07-03 14:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-01  2:08 [meta-cloud-services][PATCH 1/2] meta-cloud-services: add layer depends on networking-layer mingli.yu
2019-07-01  2:08 ` [meta-cloud-services][PATCH 2/2] nss-pam-ldapd: add required distro feature check for pam mingli.yu
2019-07-03 14:05   ` Bruce Ashfield
2019-07-03 14:05 ` [meta-cloud-services][PATCH 1/2] meta-cloud-services: add layer depends on networking-layer Bruce Ashfield

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.