meta-virtualization.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest
@ 2021-11-07 17:37 Martin Jansa
  2021-11-07 17:37 ` [meta-virtualization][PATCH 2/2] yq: convert github SRC_URI to use https protocol Martin Jansa
  2021-11-08 14:19 ` [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest Bruce Ashfield
  0 siblings, 2 replies; 4+ messages in thread
From: Martin Jansa @ 2021-11-07 17:37 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Martin Jansa

* remove the incorrect comment about SRCREV being 1.7.0
* and add +git because the old SRCREV wasn't matching
  with 1.8.0 tag as well

* add -Wno-error=format-security to work around build failures with newer ncurses-6.3 like:
  | ../git/ui/ui.c:45:32: error: format not a string literal and no format arguments [-Werror=format-security]
  |    45 |         mvprintw(LINES - 1, 0, footer);
  |       |                                ^~~~~~

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 recipes-extended/irqbalance/irqbalance_git.bb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/recipes-extended/irqbalance/irqbalance_git.bb b/recipes-extended/irqbalance/irqbalance_git.bb
index 0911201..5761185 100644
--- a/recipes-extended/irqbalance/irqbalance_git.bb
+++ b/recipes-extended/irqbalance/irqbalance_git.bb
@@ -4,10 +4,8 @@
 
 require irqbalance.inc
 
-# commit tagged as version 1.7.0
-#
-SRCREV = "bd5aaf5a8613c8eadfbf9f0908fd8260125aae28"
-PV = "1.8.0"
+SRCREV = "a97266548398870c2dde034e48a8c9e3c1893acb"
+PV = "1.8.0+git${SRCPV}"
 
 SRC_URI = "git://github.com/Irqbalance/irqbalance;branch=master;protocol=https \
            file://add-initscript.patch \
@@ -16,3 +14,5 @@ SRC_URI = "git://github.com/Irqbalance/irqbalance;branch=master;protocol=https \
           "
 
 S = "${WORKDIR}/git"
+
+CFLAGS += "-Wno-error=format-security"
-- 
2.32.0


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

* [meta-virtualization][PATCH 2/2] yq: convert github SRC_URI to use https protocol
  2021-11-07 17:37 [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest Martin Jansa
@ 2021-11-07 17:37 ` Martin Jansa
  2021-11-08 14:20   ` Bruce Ashfield
  2021-11-08 14:19 ` [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest Bruce Ashfield
  1 sibling, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2021-11-07 17:37 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Martin Jansa

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 recipes-devtools/yq/yq_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-devtools/yq/yq_git.bb b/recipes-devtools/yq/yq_git.bb
index 3e48fee..1fccb12 100644
--- a/recipes-devtools/yq/yq_git.bb
+++ b/recipes-devtools/yq/yq_git.bb
@@ -15,7 +15,7 @@ SRCREV_logging = "b2cb9fa56473e98db8caba80237377e83fe44db5"
 SRCREV_yaml = "eeeca48fe7764f320e4870d231902bf9c1be2c08"
 
 SRCREV_FORMAT = "yq_color"
-SRC_URI = "git://${GO_IMPORT};name=yq;branch=master \
+SRC_URI = "git://${GO_IMPORT};name=yq;branch=master;protocol=https \
            git://github.com/fatih/color;name=color;destsuffix=build/vendor/src/github.com/fatih/color;branch=master;protocol=https \
            git://github.com/goccy/go-yaml;name=lexer;destsuffix=build/vendor/src/github.com/goccy/go-yaml/;branch=master;protocol=https \
            git://github.com/kylelemons/godebug;name=debug;destsuffix=build/vendor/src/github.com/kylelemons/godebug/;branch=master;protocol=https \
-- 
2.32.0


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

* Re: [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest
  2021-11-07 17:37 [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest Martin Jansa
  2021-11-07 17:37 ` [meta-virtualization][PATCH 2/2] yq: convert github SRC_URI to use https protocol Martin Jansa
@ 2021-11-08 14:19 ` Bruce Ashfield
  1 sibling, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2021-11-08 14:19 UTC (permalink / raw)
  To: Martin Jansa; +Cc: meta-virtualization

In message: [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest
on 07/11/2021 Martin Jansa wrote:

> * remove the incorrect comment about SRCREV being 1.7.0
> * and add +git because the old SRCREV wasn't matching
>   with 1.8.0 tag as well
> 
> * add -Wno-error=format-security to work around build failures with newer ncurses-6.3 like:
>   | ../git/ui/ui.c:45:32: error: format not a string literal and no format arguments [-Werror=format-security]
>   |    45 |         mvprintw(LINES - 1, 0, footer);
>   |       |                                ^~~~~~

Thanks for the cleanup! This is now merged.

Bruce

> 
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  recipes-extended/irqbalance/irqbalance_git.bb | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/recipes-extended/irqbalance/irqbalance_git.bb b/recipes-extended/irqbalance/irqbalance_git.bb
> index 0911201..5761185 100644
> --- a/recipes-extended/irqbalance/irqbalance_git.bb
> +++ b/recipes-extended/irqbalance/irqbalance_git.bb
> @@ -4,10 +4,8 @@
>  
>  require irqbalance.inc
>  
> -# commit tagged as version 1.7.0
> -#
> -SRCREV = "bd5aaf5a8613c8eadfbf9f0908fd8260125aae28"
> -PV = "1.8.0"
> +SRCREV = "a97266548398870c2dde034e48a8c9e3c1893acb"
> +PV = "1.8.0+git${SRCPV}"
>  
>  SRC_URI = "git://github.com/Irqbalance/irqbalance;branch=master;protocol=https \
>             file://add-initscript.patch \
> @@ -16,3 +14,5 @@ SRC_URI = "git://github.com/Irqbalance/irqbalance;branch=master;protocol=https \
>            "
>  
>  S = "${WORKDIR}/git"
> +
> +CFLAGS += "-Wno-error=format-security"
> -- 
> 2.32.0
> 

> 
> 
> 


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

* Re: [meta-virtualization][PATCH 2/2] yq: convert github SRC_URI to use https protocol
  2021-11-07 17:37 ` [meta-virtualization][PATCH 2/2] yq: convert github SRC_URI to use https protocol Martin Jansa
@ 2021-11-08 14:20   ` Bruce Ashfield
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2021-11-08 14:20 UTC (permalink / raw)
  To: Martin Jansa; +Cc: meta-virtualization

Ha! I managed to miss the main repoistory (with the GO_IMPORT indirection).

I've merged this to master and honister.

Bruce

In message: [meta-virtualization][PATCH 2/2] yq: convert github SRC_URI to use https protocol
on 07/11/2021 Martin Jansa wrote:

> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  recipes-devtools/yq/yq_git.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-devtools/yq/yq_git.bb b/recipes-devtools/yq/yq_git.bb
> index 3e48fee..1fccb12 100644
> --- a/recipes-devtools/yq/yq_git.bb
> +++ b/recipes-devtools/yq/yq_git.bb
> @@ -15,7 +15,7 @@ SRCREV_logging = "b2cb9fa56473e98db8caba80237377e83fe44db5"
>  SRCREV_yaml = "eeeca48fe7764f320e4870d231902bf9c1be2c08"
>  
>  SRCREV_FORMAT = "yq_color"
> -SRC_URI = "git://${GO_IMPORT};name=yq;branch=master \
> +SRC_URI = "git://${GO_IMPORT};name=yq;branch=master;protocol=https \
>             git://github.com/fatih/color;name=color;destsuffix=build/vendor/src/github.com/fatih/color;branch=master;protocol=https \
>             git://github.com/goccy/go-yaml;name=lexer;destsuffix=build/vendor/src/github.com/goccy/go-yaml/;branch=master;protocol=https \
>             git://github.com/kylelemons/godebug;name=debug;destsuffix=build/vendor/src/github.com/kylelemons/godebug/;branch=master;protocol=https \
> -- 
> 2.32.0
> 

> 
> 
> 


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

end of thread, other threads:[~2021-11-08 14:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-07 17:37 [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest Martin Jansa
2021-11-07 17:37 ` [meta-virtualization][PATCH 2/2] yq: convert github SRC_URI to use https protocol Martin Jansa
2021-11-08 14:20   ` Bruce Ashfield
2021-11-08 14:19 ` [meta-virtualization][PATCH 1/2] irqbalance: bump SRCREV to latest Bruce Ashfield

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).