All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-security][PATCH 1/4] python3-privacyidea: upgrade 3.5.1 -> 3.5.2
@ 2021-03-31  3:51 akuster
  2021-03-31  3:51 ` [meta-security][PATCH 2/4] clamav: fix systemd service install akuster
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: akuster @ 2021-03-31  3:51 UTC (permalink / raw)
  To: yocto

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 ...ython3-privacyidea_3.5.1.bb => python3-privacyidea_3.5.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename recipes-security/mfa/{python3-privacyidea_3.5.1.bb => python3-privacyidea_3.5.2.bb} (96%)

diff --git a/recipes-security/mfa/python3-privacyidea_3.5.1.bb b/recipes-security/mfa/python3-privacyidea_3.5.2.bb
similarity index 96%
rename from recipes-security/mfa/python3-privacyidea_3.5.1.bb
rename to recipes-security/mfa/python3-privacyidea_3.5.2.bb
index fb84411..cd0acf8 100644
--- a/recipes-security/mfa/python3-privacyidea_3.5.1.bb
+++ b/recipes-security/mfa/python3-privacyidea_3.5.2.bb
@@ -6,7 +6,7 @@ LICENSE = "AGPL-3.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c0acfa7a8a03b718abee9135bc1a1c55"
 
 PYPI_PACKAGE = "privacyIDEA"
-SRC_URI[sha256sum] = "c10f8e9ec681af4cb42fde70864c2b9a4b47e2bcccfc1290f83c1283748772c6"
+SRC_URI[sha256sum] = "26aeb0d353af1f212c4df476202516953c20f7f31566cfe0b67cbb553de04763"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-security][PATCH 2/4] clamav: fix systemd service install
  2021-03-31  3:51 [meta-security][PATCH 1/4] python3-privacyidea: upgrade 3.5.1 -> 3.5.2 akuster
@ 2021-03-31  3:51 ` akuster
  2021-03-31  3:51 ` [meta-security][PATCH 3/4] swtpm: now need python-cryptography, pull in layer akuster
  2021-03-31  3:51 ` [meta-security][PATCH 4/4] swtpm: file pip3 issue akuster
  2 siblings, 0 replies; 4+ messages in thread
From: akuster @ 2021-03-31  3:51 UTC (permalink / raw)
  To: yocto

ERROR: clamav-0.104.0-r0 do_package: QA Issue: clamav: Files/directories were installed but not shipped in any package:
  /lib/systemd/system/clamav-daemon.service
    /lib/systemd/system/clamav-clamonacc.service

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 recipes-scanners/clamav/clamav_0.104.0.bb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/recipes-scanners/clamav/clamav_0.104.0.bb b/recipes-scanners/clamav/clamav_0.104.0.bb
index 9e50466..ba036b0 100644
--- a/recipes-scanners/clamav/clamav_0.104.0.bb
+++ b/recipes-scanners/clamav/clamav_0.104.0.bb
@@ -105,7 +105,10 @@ FILES_${PN}-daemon = "${bindir}/clamconf ${bindir}/clamdtop ${sbindir}/clamd \
                         /usr/etc/clamd.conf* \
                         ${systemd_unitdir}/system/clamav-daemon/* \
                         ${docdir}/clamav-daemon/*  ${sysconfdir}/clamav-daemon \
-                        ${sysconfdir}/logcheck/ignore.d.server/clamav-daemon "
+                        ${sysconfdir}/logcheck/ignore.d.server/clamav-daemon \
+                        ${systemd_unitdir}/system/clamav-daemon.service \
+                        ${systemd_unitdir}/system/clamav-clamonacc.service \
+                        "
 
 FILES_${PN}-freshclam = "${bindir}/freshclam \
                         ${sysconfdir}/freshclam.conf*  \
-- 
2.17.1


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

* [meta-security][PATCH 3/4] swtpm: now need python-cryptography, pull in layer
  2021-03-31  3:51 [meta-security][PATCH 1/4] python3-privacyidea: upgrade 3.5.1 -> 3.5.2 akuster
  2021-03-31  3:51 ` [meta-security][PATCH 2/4] clamav: fix systemd service install akuster
@ 2021-03-31  3:51 ` akuster
  2021-03-31  3:51 ` [meta-security][PATCH 4/4] swtpm: file pip3 issue akuster
  2 siblings, 0 replies; 4+ messages in thread
From: akuster @ 2021-03-31  3:51 UTC (permalink / raw)
  To: yocto

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta-tpm/conf/layer.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-tpm/conf/layer.conf b/meta-tpm/conf/layer.conf
index 65788eb..1b766cb 100644
--- a/meta-tpm/conf/layer.conf
+++ b/meta-tpm/conf/layer.conf
@@ -13,6 +13,7 @@ LAYERSERIES_COMPAT_tpm-layer = "hardknott"
 LAYERDEPENDS_tpm-layer = " \
     core \
     openembedded-layer \
+    meta-python \
 "
 BBLAYERS_LAYERINDEX_NAME_tpm-layer = "meta-tpm"
 
-- 
2.17.1


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

* [meta-security][PATCH 4/4] swtpm: file pip3 issue
  2021-03-31  3:51 [meta-security][PATCH 1/4] python3-privacyidea: upgrade 3.5.1 -> 3.5.2 akuster
  2021-03-31  3:51 ` [meta-security][PATCH 2/4] clamav: fix systemd service install akuster
  2021-03-31  3:51 ` [meta-security][PATCH 3/4] swtpm: now need python-cryptography, pull in layer akuster
@ 2021-03-31  3:51 ` akuster
  2 siblings, 0 replies; 4+ messages in thread
From: akuster @ 2021-03-31  3:51 UTC (permalink / raw)
  To: yocto

need native pip3, was using host's

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta-tpm/recipes-tpm/swtpm/swtpm_0.5.2.bb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta-tpm/recipes-tpm/swtpm/swtpm_0.5.2.bb b/meta-tpm/recipes-tpm/swtpm/swtpm_0.5.2.bb
index b7ff2ad..c0bd35e 100644
--- a/meta-tpm/recipes-tpm/swtpm/swtpm_0.5.2.bb
+++ b/meta-tpm/recipes-tpm/swtpm/swtpm_0.5.2.bb
@@ -7,7 +7,7 @@ DEPENDS = "libtasn1 coreutils-native expect socat glib-2.0 net-tools-native libt
 
 # configure checks for the tools already during compilation and
 # then swtpm_setup needs them at runtime
-DEPENDS += "tpm-tools-native expect-native socat-native"
+DEPENDS += "tpm-tools-native expect-native socat-native python3-pip-native"
 
 SRCREV = "e59c0c1a7b4c8d652dbb280fd6126895a7057464"
 SRC_URI = "git://github.com/stefanberger/swtpm.git;branch=stable-0.5 \
@@ -18,7 +18,6 @@ PE = "1"
 S = "${WORKDIR}/git"
 
 inherit autotools pkgconfig python3-dir
-PARALLEL_MAKE = ""
 
 TSS_USER="tss"
 TSS_GROUP="tss"
-- 
2.17.1


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

end of thread, other threads:[~2021-03-31  3:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-31  3:51 [meta-security][PATCH 1/4] python3-privacyidea: upgrade 3.5.1 -> 3.5.2 akuster
2021-03-31  3:51 ` [meta-security][PATCH 2/4] clamav: fix systemd service install akuster
2021-03-31  3:51 ` [meta-security][PATCH 3/4] swtpm: now need python-cryptography, pull in layer akuster
2021-03-31  3:51 ` [meta-security][PATCH 4/4] swtpm: file pip3 issue akuster

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.