meta-virtualization.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [meta-virtualization][PATCH 1/2] go-{distribution,systemd}: convert github SRC_URIs to use https protocol
@ 2021-11-05 14:58 Martin Jansa
  2021-11-05 14:58 ` [meta-virtualization][PATCH 2/2] linux-yocto_virtualization.inc: remove :append and += combination Martin Jansa
  2021-11-06 17:15 ` [meta-virtualization][PATCH 1/2] go-{distribution,systemd}: convert github SRC_URIs to use https protocol Jon Mason
  0 siblings, 2 replies; 3+ messages in thread
From: Martin Jansa @ 2021-11-05 14:58 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Martin Jansa

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 recipes-devtools/go/go-distribution_git.bb | 2 +-
 recipes-devtools/go/go-systemd_git.bb      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-devtools/go/go-distribution_git.bb b/recipes-devtools/go/go-distribution_git.bb
index f481d61..948831b 100644
--- a/recipes-devtools/go/go-distribution_git.bb
+++ b/recipes-devtools/go/go-distribution_git.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://src/${PKG_NAME}/LICENSE;md5=d2794c0df5b907fdace235a61
 SRCNAME = "distribution"
 
 PKG_NAME = "github.com/docker/${SRCNAME}"
-SRC_URI = "git://${PKG_NAME}.git;branch=docker/1.13;destsuffix=git/src/${PKG_NAME}"
+SRC_URI = "git://${PKG_NAME}.git;branch=docker/1.13;destsuffix=git/src/${PKG_NAME};protocol=https"
 
 SRCREV = "28602af35aceda2f8d571bad7ca37a54cf0250bc"
 PV = "2.6.0+git${SRCPV}"
diff --git a/recipes-devtools/go/go-systemd_git.bb b/recipes-devtools/go/go-systemd_git.bb
index 130ef8b..91f67da 100644
--- a/recipes-devtools/go/go-systemd_git.bb
+++ b/recipes-devtools/go/go-systemd_git.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5"
 SRCNAME = "systemd"
 
 PKG_NAME = "github.com/coreos/go-${SRCNAME}"
-SRC_URI = "git://${PKG_NAME}.git;branch=main"
+SRC_URI = "git://${PKG_NAME}.git;branch=main;protocol=https"
 
 SRCREV = "b4a58d95188dd092ae20072bac14cece0e67c388"
 PV = "4+git${SRCPV}"
-- 
2.32.0


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

* [meta-virtualization][PATCH 2/2] linux-yocto_virtualization.inc: remove :append and += combination
  2021-11-05 14:58 [meta-virtualization][PATCH 1/2] go-{distribution,systemd}: convert github SRC_URIs to use https protocol Martin Jansa
@ 2021-11-05 14:58 ` Martin Jansa
  2021-11-06 17:15 ` [meta-virtualization][PATCH 1/2] go-{distribution,systemd}: convert github SRC_URIs to use https protocol Jon Mason
  1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2021-11-05 14:58 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Martin Jansa

* fixes:
  KERNEL_FEATURES:append += is not a recommended operator combination, please replace it.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 recipes-kernel/linux/linux-yocto_virtualization.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-kernel/linux/linux-yocto_virtualization.inc b/recipes-kernel/linux/linux-yocto_virtualization.inc
index a27ae7d..84a7bd8 100644
--- a/recipes-kernel/linux/linux-yocto_virtualization.inc
+++ b/recipes-kernel/linux/linux-yocto_virtualization.inc
@@ -13,7 +13,7 @@ KERNEL_MODULE_AUTOLOAD += "nf_conntrack_ipv6 openvswitch"
 KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains('DISTRO_FEATURES', 'kvm', 'kvm', '', d)}"
 
 # aufs kernel support required for xen-image-minimal
-KERNEL_FEATURES:append += "${@bb.utils.contains('DISTRO_FEATURES', 'aufs', ' features/aufs/aufs-enable.scc', '', d)}"
+KERNEL_FEATURES:append = "${@bb.utils.contains('DISTRO_FEATURES', 'aufs', ' features/aufs/aufs-enable.scc', '', d)}"
 
 # if the kernel-yocto meta-data routine automatically starts to add the
 # recipe-sysroot-native, we can do away with this conditional, since all
-- 
2.32.0


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

* Re: [meta-virtualization][PATCH 1/2] go-{distribution,systemd}: convert github SRC_URIs to use https protocol
  2021-11-05 14:58 [meta-virtualization][PATCH 1/2] go-{distribution,systemd}: convert github SRC_URIs to use https protocol Martin Jansa
  2021-11-05 14:58 ` [meta-virtualization][PATCH 2/2] linux-yocto_virtualization.inc: remove :append and += combination Martin Jansa
@ 2021-11-06 17:15 ` Jon Mason
  1 sibling, 0 replies; 3+ messages in thread
From: Jon Mason @ 2021-11-06 17:15 UTC (permalink / raw)
  To: Martin Jansa; +Cc: meta-virtualization

On Fri, Nov 5, 2021 at 10:58 AM Martin Jansa <Martin.Jansa@gmail.com> wrote:
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>

Please apply this patch as soon as possible, qemuarm + xen is seeing
warnings for this (and it's quite annoying).

Thanks,
Jon

> ---
>  recipes-devtools/go/go-distribution_git.bb | 2 +-
>  recipes-devtools/go/go-systemd_git.bb      | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes-devtools/go/go-distribution_git.bb b/recipes-devtools/go/go-distribution_git.bb
> index f481d61..948831b 100644
> --- a/recipes-devtools/go/go-distribution_git.bb
> +++ b/recipes-devtools/go/go-distribution_git.bb
> @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://src/${PKG_NAME}/LICENSE;md5=d2794c0df5b907fdace235a61
>  SRCNAME = "distribution"
>
>  PKG_NAME = "github.com/docker/${SRCNAME}"
> -SRC_URI = "git://${PKG_NAME}.git;branch=docker/1.13;destsuffix=git/src/${PKG_NAME}"
> +SRC_URI = "git://${PKG_NAME}.git;branch=docker/1.13;destsuffix=git/src/${PKG_NAME};protocol=https"
>
>  SRCREV = "28602af35aceda2f8d571bad7ca37a54cf0250bc"
>  PV = "2.6.0+git${SRCPV}"
> diff --git a/recipes-devtools/go/go-systemd_git.bb b/recipes-devtools/go/go-systemd_git.bb
> index 130ef8b..91f67da 100644
> --- a/recipes-devtools/go/go-systemd_git.bb
> +++ b/recipes-devtools/go/go-systemd_git.bb
> @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5"
>  SRCNAME = "systemd"
>
>  PKG_NAME = "github.com/coreos/go-${SRCNAME}"
> -SRC_URI = "git://${PKG_NAME}.git;branch=main"
> +SRC_URI = "git://${PKG_NAME}.git;branch=main;protocol=https"
>
>  SRCREV = "b4a58d95188dd092ae20072bac14cece0e67c388"
>  PV = "4+git${SRCPV}"
> --
> 2.32.0
>
>
> 
>

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

end of thread, other threads:[~2021-11-06 17:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-05 14:58 [meta-virtualization][PATCH 1/2] go-{distribution,systemd}: convert github SRC_URIs to use https protocol Martin Jansa
2021-11-05 14:58 ` [meta-virtualization][PATCH 2/2] linux-yocto_virtualization.inc: remove :append and += combination Martin Jansa
2021-11-06 17:15 ` [meta-virtualization][PATCH 1/2] go-{distribution,systemd}: convert github SRC_URIs to use https protocol Jon Mason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).