All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-security][PATCH 1/3] sssd: Fix new QA warning
@ 2016-05-07 14:15 Armin Kuster
  2016-05-07 14:15 ` [meta-security][PATCH 2/3] trousers: " Armin Kuster
  2016-05-07 14:15 ` [meta-security][PATCH 3/3] clamav: " Armin Kuster
  0 siblings, 2 replies; 4+ messages in thread
From: Armin Kuster @ 2016-05-07 14:15 UTC (permalink / raw)
  To: yocto

NOTE:meta-security/recipes-security/sssd/sssd_1.13.3.bb: base_contains is deprecated, please use bb.utils.contains instead.

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 recipes-security/sssd/sssd_1.13.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-security/sssd/sssd_1.13.3.bb b/recipes-security/sssd/sssd_1.13.3.bb
index d538af3..fd4f2a2 100644
--- a/recipes-security/sssd/sssd_1.13.3.bb
+++ b/recipes-security/sssd/sssd_1.13.3.bb
@@ -24,7 +24,7 @@ CACHED_CONFIGUREVARS = "ac_cv_member_struct_ldap_conncb_lc_arg=no \
     "
 
 PACKAGECONFIG ?="nss"
-PACKAGECONFIG += "${@base_contains('DISTRO_FEATURES', 'selinux', 'selinux', '', d)}"
+PACKAGECONFIG += "${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'selinux', '', d)}"
 
 PACKAGECONFIG[ssh] = "--with-ssh, --with-ssh=no, "
 PACKAGECONFIG[samba] = "--with-samba, --with-samba=no, samba"
-- 
2.3.5



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

* [meta-security][PATCH 2/3] trousers: Fix new QA warning
  2016-05-07 14:15 [meta-security][PATCH 1/3] sssd: Fix new QA warning Armin Kuster
@ 2016-05-07 14:15 ` Armin Kuster
  2016-05-07 14:15 ` [meta-security][PATCH 3/3] clamav: " Armin Kuster
  1 sibling, 0 replies; 4+ messages in thread
From: Armin Kuster @ 2016-05-07 14:15 UTC (permalink / raw)
  To: yocto

NOTE: meta-security/recipes-tpm/trousers/trousers_0.3.13.bb: base_contains is deprecated, please use bb.utils.contains instead.

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 recipes-tpm/trousers/trousers_0.3.13.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-tpm/trousers/trousers_0.3.13.bb b/recipes-tpm/trousers/trousers_0.3.13.bb
index 7001788..e274972 100644
--- a/recipes-tpm/trousers/trousers_0.3.13.bb
+++ b/recipes-tpm/trousers/trousers_0.3.13.bb
@@ -17,7 +17,7 @@ SRC_URI[md5sum] = "ad508f97b406f6e48cd90e85d78e7ca8"
 SRC_URI[sha256sum] = "bb908e4a3c88a17b247a4fc8e0fff3419d8a13170fe7bdfbe0e2c5c082a276d3"
 
 inherit autotools pkgconfig useradd update-rc.d
-inherit ${@base_contains('VIRTUAL-RUNTIME_init_manager','systemd','systemd','', d)}
+inherit ${@bb.utils.contains('VIRTUAL-RUNTIME_init_manager','systemd','systemd','', d)}
 
 PACKAGECONFIG ?= "gmp "
 PACKAGECONFIG[gmp] = "--with-gmp, --with-gmp=no, gmp"
@@ -33,7 +33,7 @@ do_install_append() {
     install -d ${D}${sysconfdir}/udev/rules.d
     install -m 0644 ${WORKDIR}/trousers-udev.rules ${D}${sysconfdir}/udev/rules.d/45-trousers.rules
 
-    if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
+    if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
         install -d ${D}${systemd_unitdir}/system
         install -m 0644 ${WORKDIR}/tcsd.service ${D}${systemd_unitdir}/system/
         sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/tcsd.service
-- 
2.3.5



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

* [meta-security][PATCH 3/3] clamav: Fix new QA warning
  2016-05-07 14:15 [meta-security][PATCH 1/3] sssd: Fix new QA warning Armin Kuster
  2016-05-07 14:15 ` [meta-security][PATCH 2/3] trousers: " Armin Kuster
@ 2016-05-07 14:15 ` Armin Kuster
  2016-05-07 16:17   ` Randle, William C
  1 sibling, 1 reply; 4+ messages in thread
From: Armin Kuster @ 2016-05-07 14:15 UTC (permalink / raw)
  To: yocto

NOTE:meta-security/recipes-security/clamav/clamav_0.99.1.bb: base_contains is deprecated, please use bb.utils.contains instead.

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 recipes-security/clamav/clamav_0.99.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-security/clamav/clamav_0.99.1.bb b/recipes-security/clamav/clamav_0.99.1.bb
index edccc78..461015f 100644
--- a/recipes-security/clamav/clamav_0.99.1.bb
+++ b/recipes-security/clamav/clamav_0.99.1.bb
@@ -30,7 +30,7 @@ GID = "clamav"
 
 PACKAGECONFIG ?= "ncurses openssl bz2 zlib "
 PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}"
-PACKAGECONFIG += "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
+PACKAGECONFIG += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
 PACKAGECONFIG[pcre] = "--with-pcre=${STAGING_LIBDIR},  --without-pcre, libpcre"
 PACKAGECONFIG[xml] = "--with-xml=${STAGING_LIBDIR}/.., --with-xml=no, libxml2,"
 PACKAGECONFIG[json] = "--with-libjson=${STAGING_LIBDIR}, --without-libjson, json,"
-- 
2.3.5



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

* Re: [meta-security][PATCH 3/3] clamav: Fix new QA warning
  2016-05-07 14:15 ` [meta-security][PATCH 3/3] clamav: " Armin Kuster
@ 2016-05-07 16:17   ` Randle, William C
  0 siblings, 0 replies; 4+ messages in thread
From: Randle, William C @ 2016-05-07 16:17 UTC (permalink / raw)
  To: yocto

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

On a related note, ClamAV 0.99.2 has been released.

On Sat, 2016-05-07 at 07:15 -0700, Armin Kuster wrote:

NOTE:meta-security/recipes-security/clamav/clamav_0.99.1.bb: base_contains is deprecated, please use bb.utils.contains instead.

Signed-off-by: Armin Kuster <akuster808@gmail.com<mailto:akuster808@gmail.com>>
---
 recipes-security/clamav/clamav_0.99.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-security/clamav/clamav_0.99.1.bb b/recipes-security/clamav/clamav_0.99.1.bb
index edccc78..461015f 100644
--- a/recipes-security/clamav/clamav_0.99.1.bb
+++ b/recipes-security/clamav/clamav_0.99.1.bb
@@ -30,7 +30,7 @@ GID = "clamav"

 PACKAGECONFIG ?= "ncurses openssl bz2 zlib "
 PACKAGECONFIG += " ${@bb.utils.contains<mailto:${@bb.utils.contains>("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}"
-PACKAGECONFIG += "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
+PACKAGECONFIG += "${@bb.utils.contains<mailto:${@bb.utils.contains>('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
 PACKAGECONFIG[pcre] = "--with-pcre=${STAGING_LIBDIR},  --without-pcre, libpcre"
 PACKAGECONFIG[xml] = "--with-xml=${STAGING_LIBDIR}/.., --with-xml=no, libxml2,"
 PACKAGECONFIG[json] = "--with-libjson=${STAGING_LIBDIR}, --without-libjson, json,"
--
2.3.5



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

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

end of thread, other threads:[~2016-05-07 16:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-07 14:15 [meta-security][PATCH 1/3] sssd: Fix new QA warning Armin Kuster
2016-05-07 14:15 ` [meta-security][PATCH 2/3] trousers: " Armin Kuster
2016-05-07 14:15 ` [meta-security][PATCH 3/3] clamav: " Armin Kuster
2016-05-07 16:17   ` Randle, William C

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.