summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2022-09-13 16:11:10 -0400
committerBruce Ashfield <bruce.ashfield@gmail.com>2022-11-29 23:06:20 -0500
commite68bfe7dae68326e8be64ebb3d99a1849c466e80 (patch)
tree6868f1b7c8f8454e2501bef27946ccb77519b0f8
parent9a487c1851aa2021cf24f951957e22fd429c8025 (diff)
downloadmeta-virtualization-e68bfe7dae68326e8be64ebb3d99a1849c466e80.tar.gz
yq: fix build
The yq build was broken: - some repositories have moved from master -> main - missing dependencies, that were being fetched in the compile task Correcting these issues fixes yq' build Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-devtools/yq/yq_git.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes-devtools/yq/yq_git.bb b/recipes-devtools/yq/yq_git.bb
index 1fccb120..0f73362c 100644
--- a/recipes-devtools/yq/yq_git.bb
+++ b/recipes-devtools/yq/yq_git.bb
@@ -13,17 +13,19 @@ SRCREV_cobra = "b97b5ead31f7d34f764ac8666e40c214bb8e06dc"
13SRCREV_pflag = "6971c29c4a22981adeaee7f4b437c0cffe08c031" 13SRCREV_pflag = "6971c29c4a22981adeaee7f4b437c0cffe08c031"
14SRCREV_logging = "b2cb9fa56473e98db8caba80237377e83fe44db5" 14SRCREV_logging = "b2cb9fa56473e98db8caba80237377e83fe44db5"
15SRCREV_yaml = "eeeca48fe7764f320e4870d231902bf9c1be2c08" 15SRCREV_yaml = "eeeca48fe7764f320e4870d231902bf9c1be2c08"
16SRCREV_xerrors="5ec99f83aff198f5fbd629d6c8d8eb38a04218ca"
16 17
17SRCREV_FORMAT = "yq_color" 18SRCREV_FORMAT = "yq_color"
18SRC_URI = "git://${GO_IMPORT};name=yq;branch=master;protocol=https \ 19SRC_URI = "git://${GO_IMPORT};name=yq;branch=master;protocol=https \
19 git://github.com/fatih/color;name=color;destsuffix=build/vendor/src/github.com/fatih/color;branch=master;protocol=https \ 20 git://github.com/fatih/color;name=color;destsuffix=build/vendor/src/github.com/fatih/color;branch=main;protocol=https \
20 git://github.com/goccy/go-yaml;name=lexer;destsuffix=build/vendor/src/github.com/goccy/go-yaml/;branch=master;protocol=https \ 21 git://github.com/goccy/go-yaml;name=lexer;destsuffix=build/vendor/src/github.com/goccy/go-yaml/;branch=master;protocol=https \
21 git://github.com/kylelemons/godebug;name=debug;destsuffix=build/vendor/src/github.com/kylelemons/godebug/;branch=master;protocol=https \ 22 git://github.com/kylelemons/godebug;name=debug;destsuffix=build/vendor/src/github.com/kylelemons/godebug/;branch=master;protocol=https \
22 git://github.com/pkg/errors;name=errors;destsuffix=build/vendor/src/github.com/pkg/errors/;branch=master;protocol=https \ 23 git://github.com/pkg/errors;name=errors;destsuffix=build/vendor/src/github.com/pkg/errors/;branch=master;protocol=https \
23 git://github.com/spf13/cobra;name=cobra;destsuffix=build/vendor/src/github.com/spf13/cobra;branch=master;protocol=https \ 24 git://github.com/spf13/cobra;name=cobra;destsuffix=build/vendor/src/github.com/spf13/cobra;branch=main;protocol=https \
24 git://github.com/spf13/pflag;name=pflag;destsuffix=build/vendor/src/github.com/spf13/pflag;branch=master;protocol=https \ 25 git://github.com/spf13/pflag;name=pflag;destsuffix=build/vendor/src/github.com/spf13/pflag;branch=master;protocol=https \
25 git://github.com/op/go-logging.git;name=logging;destsuffix=build/vendor/src/gopkg.in/op/go-logging.v1;branch=master;protocol=https \ 26 git://github.com/op/go-logging.git;name=logging;destsuffix=build/vendor/src/gopkg.in/op/go-logging.v1;branch=master;protocol=https \
26 git://github.com/go-yaml/yaml.git;name=yaml;branch=v3;destsuffix=build/vendor/src/gopkg.in/yaml.v3;protocol=https \ 27 git://github.com/go-yaml/yaml.git;name=yaml;branch=v3;destsuffix=build/vendor/src/gopkg.in/yaml.v3;protocol=https \
28 git://github.com/golang/xerrors;name=xerrors;protocol=https;nobranch=1;destsuffix=build/vendor/src/golang.org/x/xerrors \
27 " 29 "
28 30
29PV = "1.13.1+git${SRCREV_yq}" 31PV = "1.13.1+git${SRCREV_yq}"