diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-09-13 16:11:10 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-09-13 16:11:10 -0400 |
commit | ad8af6213393cbc8b64e3fa5ef3b91e4bf844df2 (patch) | |
tree | 9babc12fc51c63b1ef62ca19af7cd0d594b2528d | |
parent | d0a816063d204e0b79fa95ee9fdb7001df78fd5c (diff) | |
download | meta-virtualization-ad8af6213393cbc8b64e3fa5ef3b91e4bf844df2.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.bb | 6 |
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" | |||
13 | SRCREV_pflag = "6971c29c4a22981adeaee7f4b437c0cffe08c031" | 13 | SRCREV_pflag = "6971c29c4a22981adeaee7f4b437c0cffe08c031" |
14 | SRCREV_logging = "b2cb9fa56473e98db8caba80237377e83fe44db5" | 14 | SRCREV_logging = "b2cb9fa56473e98db8caba80237377e83fe44db5" |
15 | SRCREV_yaml = "eeeca48fe7764f320e4870d231902bf9c1be2c08" | 15 | SRCREV_yaml = "eeeca48fe7764f320e4870d231902bf9c1be2c08" |
16 | SRCREV_xerrors="5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" | ||
16 | 17 | ||
17 | SRCREV_FORMAT = "yq_color" | 18 | SRCREV_FORMAT = "yq_color" |
18 | SRC_URI = "git://${GO_IMPORT};name=yq;branch=master;protocol=https \ | 19 | SRC_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 | ||
29 | PV = "1.13.1+git${SRCREV_yq}" | 31 | PV = "1.13.1+git${SRCREV_yq}" |