diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-05-24 03:43:09 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-05-29 13:16:56 +0000 |
commit | caec6371aa773a6598ee606ca48a9544db1ddb29 (patch) | |
tree | 2fe406b8ff7ff94a25babab5e1ff46ab5113f096 | |
parent | df90aeb1ae87c22b223c96a3ef122e74d5b2b055 (diff) | |
download | meta-virtualization-caec6371aa773a6598ee606ca48a9544db1ddb29.tar.gz |
nerdctl: SRC_URI to include destsuffix=${GO_SRCURI_DESTSUFFIX}
As of commit cc4ec43a2b657fb4c58429ab14f1edc2473c1327 [go: Drop fork
of unpack code, mandate GO_SRCURI_DESTSUFFIX] we require this
variable in our go recipes.
We also adjust our S directory, and references to WORKDIR to
fix the build for the new source layout.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/nerdctl/nerdctl_git.bb | 6 | ||||
-rw-r--r-- | recipes-containers/nerdctl/src_uri.inc | 270 |
2 files changed, 138 insertions, 138 deletions
diff --git a/recipes-containers/nerdctl/nerdctl_git.bb b/recipes-containers/nerdctl/nerdctl_git.bb index 8868274f..b3213380 100644 --- a/recipes-containers/nerdctl/nerdctl_git.bb +++ b/recipes-containers/nerdctl/nerdctl_git.bb | |||
@@ -13,7 +13,7 @@ DEPENDS = " \ | |||
13 | SRCREV_FORMAT="nerdcli_cgroups" | 13 | SRCREV_FORMAT="nerdcli_cgroups" |
14 | SRCREV_nerdcli = "265d6b9cf526ce7d9ed8d34a0e3c3066901cc463" | 14 | SRCREV_nerdcli = "265d6b9cf526ce7d9ed8d34a0e3c3066901cc463" |
15 | 15 | ||
16 | SRC_URI = "git://github.com/containerd/nerdctl.git;name=nerdcli;branch=main;protocol=https" | 16 | SRC_URI = "git://github.com/containerd/nerdctl.git;name=nerdcli;branch=main;protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX}" |
17 | 17 | ||
18 | include src_uri.inc | 18 | include src_uri.inc |
19 | 19 | ||
@@ -27,7 +27,7 @@ LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd | |||
27 | 27 | ||
28 | GO_IMPORT = "import" | 28 | GO_IMPORT = "import" |
29 | 29 | ||
30 | # S = "${WORKDIR}/git" | 30 | S = "${WORKDIR}/git" |
31 | 31 | ||
32 | PV = "v2.0.0-beta.1" | 32 | PV = "v2.0.0-beta.1" |
33 | 33 | ||
@@ -69,7 +69,7 @@ do_compile() { | |||
69 | # our copied .go files are to be used for the build | 69 | # our copied .go files are to be used for the build |
70 | ln -sf vendor.copy vendor | 70 | ln -sf vendor.copy vendor |
71 | # inform go that we know what we are doing | 71 | # inform go that we know what we are doing |
72 | cp ${WORKDIR}/modules.txt vendor/ | 72 | cp ${UNPACKDIR}/modules.txt vendor/ |
73 | 73 | ||
74 | oe_runmake GO=${GO} BUILDTAGS="${BUILDTAGS}" binaries | 74 | oe_runmake GO=${GO} BUILDTAGS="${BUILDTAGS}" binaries |
75 | } | 75 | } |
diff --git a/recipes-containers/nerdctl/src_uri.inc b/recipes-containers/nerdctl/src_uri.inc index eff9ec1a..c839e4bc 100644 --- a/recipes-containers/nerdctl/src_uri.inc +++ b/recipes-containers/nerdctl/src_uri.inc | |||
@@ -1,675 +1,675 @@ | |||
1 | # gotest.tools/v3 v3.5.1 | 1 | # gotest.tools/v3 v3.5.1 |
2 | # [1] git ls-remote https://github.com/gotestyourself/gotest.tools 81cea1abc596b025bf2573c7fdf97740512e4c6c | 2 | # [1] git ls-remote https://github.com/gotestyourself/gotest.tools 81cea1abc596b025bf2573c7fdf97740512e4c6c |
3 | SRCREV_gotest.tools-v3="81cea1abc596b025bf2573c7fdf97740512e4c6c" | 3 | SRCREV_gotest.tools-v3="81cea1abc596b025bf2573c7fdf97740512e4c6c" |
4 | SRC_URI += "git://github.com/gotestyourself/gotest.tools;name=gotest.tools-v3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/gotest.tools/v3" | 4 | SRC_URI += "git://github.com/gotestyourself/gotest.tools;name=gotest.tools-v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/gotest.tools/v3" |
5 | 5 | ||
6 | # go.uber.org/mock v0.4.0 | 6 | # go.uber.org/mock v0.4.0 |
7 | # [1] git ls-remote https://github.com/uber/mock 74a29c6e6c2cbb8ccee94db061c1604ff33fd188 | 7 | # [1] git ls-remote https://github.com/uber/mock 74a29c6e6c2cbb8ccee94db061c1604ff33fd188 |
8 | SRCREV_mock="74a29c6e6c2cbb8ccee94db061c1604ff33fd188" | 8 | SRCREV_mock="74a29c6e6c2cbb8ccee94db061c1604ff33fd188" |
9 | SRC_URI += "git://github.com/uber/mock;name=mock;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.uber.org/mock" | 9 | SRC_URI += "git://github.com/uber/mock;name=mock;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.uber.org/mock" |
10 | 10 | ||
11 | # golang.org/x/net v0.21.0 | 11 | # golang.org/x/net v0.21.0 |
12 | # [1] git ls-remote https://go.googlesource.com/net 73d21fdbb4d7dc7115b50526b93b6c37a4e3377f | 12 | # [1] git ls-remote https://go.googlesource.com/net 73d21fdbb4d7dc7115b50526b93b6c37a4e3377f |
13 | SRCREV_net="73d21fdbb4d7dc7115b50526b93b6c37a4e3377f" | 13 | SRCREV_net="73d21fdbb4d7dc7115b50526b93b6c37a4e3377f" |
14 | SRC_URI += "git://go.googlesource.com/net;name=net;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/net" | 14 | SRC_URI += "git://go.googlesource.com/net;name=net;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/net" |
15 | 15 | ||
16 | # golang.org/x/sys v0.17.0 | 16 | # golang.org/x/sys v0.17.0 |
17 | # [1] git ls-remote https://go.googlesource.com/sys 914b96c1bddd0738464c043cccbbac14fc94b955 | 17 | # [1] git ls-remote https://go.googlesource.com/sys 914b96c1bddd0738464c043cccbbac14fc94b955 |
18 | SRCREV_sys="914b96c1bddd0738464c043cccbbac14fc94b955" | 18 | SRCREV_sys="914b96c1bddd0738464c043cccbbac14fc94b955" |
19 | SRC_URI += "git://go.googlesource.com/sys;name=sys;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/sys" | 19 | SRC_URI += "git://go.googlesource.com/sys;name=sys;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/sys" |
20 | 20 | ||
21 | # gopkg.in/yaml.v3 v3.0.1 | 21 | # gopkg.in/yaml.v3 v3.0.1 |
22 | # [1] git ls-remote https://github.com/go-yaml/yaml f6f7691b1fdeb513f56608cd2c32c51f8194bf51 | 22 | # [1] git ls-remote https://github.com/go-yaml/yaml f6f7691b1fdeb513f56608cd2c32c51f8194bf51 |
23 | SRCREV_yaml.v3="f6f7691b1fdeb513f56608cd2c32c51f8194bf51" | 23 | SRCREV_yaml.v3="f6f7691b1fdeb513f56608cd2c32c51f8194bf51" |
24 | SRC_URI += "git://github.com/go-yaml/yaml;name=yaml.v3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/gopkg.in/yaml.v3" | 24 | SRC_URI += "git://github.com/go-yaml/yaml;name=yaml.v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/gopkg.in/yaml.v3" |
25 | 25 | ||
26 | # go.opencensus.io v0.24.0 | 26 | # go.opencensus.io v0.24.0 |
27 | # [1] git ls-remote https://github.com/census-instrumentation/opencensus-go b1a01ee95db0e690d91d7193d037447816fae4c5 | 27 | # [1] git ls-remote https://github.com/census-instrumentation/opencensus-go b1a01ee95db0e690d91d7193d037447816fae4c5 |
28 | SRCREV_go.opencensus.io="b1a01ee95db0e690d91d7193d037447816fae4c5" | 28 | SRCREV_go.opencensus.io="b1a01ee95db0e690d91d7193d037447816fae4c5" |
29 | SRC_URI += "git://github.com/census-instrumentation/opencensus-go;name=go.opencensus.io;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.opencensus.io" | 29 | SRC_URI += "git://github.com/census-instrumentation/opencensus-go;name=go.opencensus.io;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opencensus.io" |
30 | 30 | ||
31 | # golang.org/x/exp v0.0.0-20231006140011-7918f672742d | 31 | # golang.org/x/exp v0.0.0-20231006140011-7918f672742d |
32 | # [1] git ls-remote https://go.googlesource.com/exp 7918f672742dd40ff5cf8d3c316a9315410c2d3c | 32 | # [1] git ls-remote https://go.googlesource.com/exp 7918f672742dd40ff5cf8d3c316a9315410c2d3c |
33 | SRCREV_exp="7918f672742dd40ff5cf8d3c316a9315410c2d3c" | 33 | SRCREV_exp="7918f672742dd40ff5cf8d3c316a9315410c2d3c" |
34 | SRC_URI += "git://go.googlesource.com/exp;name=exp;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/exp" | 34 | SRC_URI += "git://go.googlesource.com/exp;name=exp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/exp" |
35 | 35 | ||
36 | # golang.org/x/mod v0.13.0 | 36 | # golang.org/x/mod v0.13.0 |
37 | # [1] git ls-remote https://go.googlesource.com/mod 5b692803cf76a65fc5d39178c0a36678e69c0e5a | 37 | # [1] git ls-remote https://go.googlesource.com/mod 5b692803cf76a65fc5d39178c0a36678e69c0e5a |
38 | SRCREV_mod="5b692803cf76a65fc5d39178c0a36678e69c0e5a" | 38 | SRCREV_mod="5b692803cf76a65fc5d39178c0a36678e69c0e5a" |
39 | SRC_URI += "git://go.googlesource.com/mod;name=mod;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/mod" | 39 | SRC_URI += "git://go.googlesource.com/mod;name=mod;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/mod" |
40 | 40 | ||
41 | # golang.org/x/sync v0.6.0 | 41 | # golang.org/x/sync v0.6.0 |
42 | # [1] git ls-remote https://go.googlesource.com/sync 59c1ca1e4661ed4452be4069ceea3c233f4deec1 | 42 | # [1] git ls-remote https://go.googlesource.com/sync 59c1ca1e4661ed4452be4069ceea3c233f4deec1 |
43 | SRCREV_sync="59c1ca1e4661ed4452be4069ceea3c233f4deec1" | 43 | SRCREV_sync="59c1ca1e4661ed4452be4069ceea3c233f4deec1" |
44 | SRC_URI += "git://go.googlesource.com/sync;name=sync;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/sync" | 44 | SRC_URI += "git://go.googlesource.com/sync;name=sync;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/sync" |
45 | 45 | ||
46 | # golang.org/x/term v0.17.0 | 46 | # golang.org/x/term v0.17.0 |
47 | # [1] git ls-remote https://go.googlesource.com/term 353276a841e232e41e0f76e7a61fe0e5d1f92cf1 | 47 | # [1] git ls-remote https://go.googlesource.com/term 353276a841e232e41e0f76e7a61fe0e5d1f92cf1 |
48 | SRCREV_x-term="353276a841e232e41e0f76e7a61fe0e5d1f92cf1" | 48 | SRCREV_x-term="353276a841e232e41e0f76e7a61fe0e5d1f92cf1" |
49 | SRC_URI += "git://go.googlesource.com/term;name=x-term;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/term" | 49 | SRC_URI += "git://go.googlesource.com/term;name=x-term;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/term" |
50 | 50 | ||
51 | # golang.org/x/text v0.14.0 | 51 | # golang.org/x/text v0.14.0 |
52 | # [1] git ls-remote https://go.googlesource.com/text 6c97a165dd661335ff7bce6104a008558123c353 | 52 | # [1] git ls-remote https://go.googlesource.com/text 6c97a165dd661335ff7bce6104a008558123c353 |
53 | SRCREV_text="6c97a165dd661335ff7bce6104a008558123c353" | 53 | SRCREV_text="6c97a165dd661335ff7bce6104a008558123c353" |
54 | SRC_URI += "git://go.googlesource.com/text;name=text;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/text" | 54 | SRC_URI += "git://go.googlesource.com/text;name=text;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/text" |
55 | 55 | ||
56 | # golang.org/x/tools v0.14.0 | 56 | # golang.org/x/tools v0.14.0 |
57 | # [1] git ls-remote https://go.googlesource.com/tools 3f4194ee29d7db9b59757dfff729ef55cf89661c | 57 | # [1] git ls-remote https://go.googlesource.com/tools 3f4194ee29d7db9b59757dfff729ef55cf89661c |
58 | SRCREV_tools="3f4194ee29d7db9b59757dfff729ef55cf89661c" | 58 | SRCREV_tools="3f4194ee29d7db9b59757dfff729ef55cf89661c" |
59 | SRC_URI += "git://go.googlesource.com/tools;name=tools;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/tools" | 59 | SRC_URI += "git://go.googlesource.com/tools;name=tools;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/tools" |
60 | 60 | ||
61 | # golang.org/x/crypto v0.19.0 | 61 | # golang.org/x/crypto v0.19.0 |
62 | # [1] git ls-remote https://go.googlesource.com/crypto 405cb3bdea78b1b48ee79096733841247a944de0 | 62 | # [1] git ls-remote https://go.googlesource.com/crypto 405cb3bdea78b1b48ee79096733841247a944de0 |
63 | SRCREV_crypto="405cb3bdea78b1b48ee79096733841247a944de0" | 63 | SRCREV_crypto="405cb3bdea78b1b48ee79096733841247a944de0" |
64 | SRC_URI += "git://go.googlesource.com/crypto;name=crypto;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/crypto" | 64 | SRC_URI += "git://go.googlesource.com/crypto;name=crypto;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/crypto" |
65 | 65 | ||
66 | # github.com/moby/term v0.5.0 | 66 | # github.com/moby/term v0.5.0 |
67 | # [1] git ls-remote https://github.com/moby/term 9c3c875fad924eb6c9dd32a361b5fc0a49a4feb9 | 67 | # [1] git ls-remote https://github.com/moby/term 9c3c875fad924eb6c9dd32a361b5fc0a49a4feb9 |
68 | SRCREV_term="9c3c875fad924eb6c9dd32a361b5fc0a49a4feb9" | 68 | SRCREV_term="9c3c875fad924eb6c9dd32a361b5fc0a49a4feb9" |
69 | SRC_URI += "git://github.com/moby/term;name=term;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/term" | 69 | SRC_URI += "git://github.com/moby/term;name=term;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/term" |
70 | 70 | ||
71 | # go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 | 71 | # go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 |
72 | # [1] git ls-remote https://github.com/mozilla-services/pkcs7 432b2356ecb18209c1cec25680b8a23632794f21 | 72 | # [1] git ls-remote https://github.com/mozilla-services/pkcs7 432b2356ecb18209c1cec25680b8a23632794f21 |
73 | SRCREV_pkcs7="432b2356ecb18209c1cec25680b8a23632794f21" | 73 | SRCREV_pkcs7="432b2356ecb18209c1cec25680b8a23632794f21" |
74 | SRC_URI += "git://github.com/mozilla-services/pkcs7;name=pkcs7;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.mozilla.org/pkcs7" | 74 | SRC_URI += "git://github.com/mozilla-services/pkcs7;name=pkcs7;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.mozilla.org/pkcs7" |
75 | 75 | ||
76 | # github.com/docker/cli v24.0.7+incompatible | 76 | # github.com/docker/cli v24.0.7+incompatible |
77 | # [1] git ls-remote https://github.com/docker/cli afdd53b4e341be38d2056a42113b938559bb1d94 | 77 | # [1] git ls-remote https://github.com/docker/cli afdd53b4e341be38d2056a42113b938559bb1d94 |
78 | SRCREV_cli="afdd53b4e341be38d2056a42113b938559bb1d94" | 78 | SRCREV_cli="afdd53b4e341be38d2056a42113b938559bb1d94" |
79 | SRC_URI += "git://github.com/docker/cli;name=cli;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/cli" | 79 | SRC_URI += "git://github.com/docker/cli;name=cli;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/cli" |
80 | 80 | ||
81 | # github.com/pkg/errors v0.9.1 | 81 | # github.com/pkg/errors v0.9.1 |
82 | # [1] git ls-remote https://github.com/pkg/errors 614d223910a179a466c1767a985424175c39b465 | 82 | # [1] git ls-remote https://github.com/pkg/errors 614d223910a179a466c1767a985424175c39b465 |
83 | SRCREV_errors="614d223910a179a466c1767a985424175c39b465" | 83 | SRCREV_errors="614d223910a179a466c1767a985424175c39b465" |
84 | SRC_URI += "git://github.com/pkg/errors;name=errors;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/pkg/errors" | 84 | SRC_URI += "git://github.com/pkg/errors;name=errors;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/pkg/errors" |
85 | 85 | ||
86 | # github.com/fatih/color v1.16.0 | 86 | # github.com/fatih/color v1.16.0 |
87 | # [1] git ls-remote https://github.com/fatih/color 0f9779ed479afd460f0c2cc5a3d3eb69b9ba188b | 87 | # [1] git ls-remote https://github.com/fatih/color 0f9779ed479afd460f0c2cc5a3d3eb69b9ba188b |
88 | SRCREV_color="0f9779ed479afd460f0c2cc5a3d3eb69b9ba188b" | 88 | SRCREV_color="0f9779ed479afd460f0c2cc5a3d3eb69b9ba188b" |
89 | SRC_URI += "git://github.com/fatih/color;name=color;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/fatih/color" | 89 | SRC_URI += "git://github.com/fatih/color;name=color;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/fatih/color" |
90 | 90 | ||
91 | # github.com/ipfs/go-cid v0.4.1 | 91 | # github.com/ipfs/go-cid v0.4.1 |
92 | # [1] git ls-remote https://github.com/ipfs/go-cid d46e7f28669cd2c463bc68fe86e7dbe4f8240ab7 | 92 | # [1] git ls-remote https://github.com/ipfs/go-cid d46e7f28669cd2c463bc68fe86e7dbe4f8240ab7 |
93 | SRCREV_go-cid="d46e7f28669cd2c463bc68fe86e7dbe4f8240ab7" | 93 | SRCREV_go-cid="d46e7f28669cd2c463bc68fe86e7dbe4f8240ab7" |
94 | SRC_URI += "git://github.com/ipfs/go-cid;name=go-cid;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-cid" | 94 | SRC_URI += "git://github.com/ipfs/go-cid;name=go-cid;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/ipfs/go-cid" |
95 | 95 | ||
96 | # github.com/spf13/cobra v1.8.0 | 96 | # github.com/spf13/cobra v1.8.0 |
97 | # [1] git ls-remote https://github.com/spf13/cobra a0a6ae020bb3899ff0276067863e50523f897370 | 97 | # [1] git ls-remote https://github.com/spf13/cobra a0a6ae020bb3899ff0276067863e50523f897370 |
98 | SRCREV_cobra="a0a6ae020bb3899ff0276067863e50523f897370" | 98 | SRCREV_cobra="a0a6ae020bb3899ff0276067863e50523f897370" |
99 | SRC_URI += "git://github.com/spf13/cobra;name=cobra;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/spf13/cobra" | 99 | SRC_URI += "git://github.com/spf13/cobra;name=cobra;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/spf13/cobra" |
100 | 100 | ||
101 | # github.com/spf13/pflag v1.0.5 | 101 | # github.com/spf13/pflag v1.0.5 |
102 | # [1] git ls-remote https://github.com/spf13/pflag 2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab | 102 | # [1] git ls-remote https://github.com/spf13/pflag 2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab |
103 | SRCREV_pflag="2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" | 103 | SRCREV_pflag="2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" |
104 | SRC_URI += "git://github.com/spf13/pflag;name=pflag;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/spf13/pflag" | 104 | SRC_URI += "git://github.com/spf13/pflag;name=pflag;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/spf13/pflag" |
105 | 105 | ||
106 | # github.com/cilium/ebpf v0.11.0 | 106 | # github.com/cilium/ebpf v0.11.0 |
107 | # [1] git ls-remote https://github.com/cilium/ebpf 270c859894bd38cdd0c7783317b16343409e4df8 | 107 | # [1] git ls-remote https://github.com/cilium/ebpf 270c859894bd38cdd0c7783317b16343409e4df8 |
108 | SRCREV_ebpf="270c859894bd38cdd0c7783317b16343409e4df8" | 108 | SRCREV_ebpf="270c859894bd38cdd0c7783317b16343409e4df8" |
109 | SRC_URI += "git://github.com/cilium/ebpf;name=ebpf;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cilium/ebpf" | 109 | SRC_URI += "git://github.com/cilium/ebpf;name=ebpf;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/cilium/ebpf" |
110 | 110 | ||
111 | # github.com/google/uuid v1.6.0 | 111 | # github.com/google/uuid v1.6.0 |
112 | # [1] git ls-remote https://github.com/google/uuid 0f11ee6918f41a04c201eceeadf612a377bc7fbc | 112 | # [1] git ls-remote https://github.com/google/uuid 0f11ee6918f41a04c201eceeadf612a377bc7fbc |
113 | SRCREV_uuid="0f11ee6918f41a04c201eceeadf612a377bc7fbc" | 113 | SRCREV_uuid="0f11ee6918f41a04c201eceeadf612a377bc7fbc" |
114 | SRC_URI += "git://github.com/google/uuid;name=uuid;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/google/uuid" | 114 | SRC_URI += "git://github.com/google/uuid;name=uuid;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/google/uuid" |
115 | 115 | ||
116 | # github.com/moby/locker v1.0.1 | 116 | # github.com/moby/locker v1.0.1 |
117 | # [1] git ls-remote https://github.com/moby/locker 281af2d563954745bea9d1487c965f24d30742fe | 117 | # [1] git ls-remote https://github.com/moby/locker 281af2d563954745bea9d1487c965f24d30742fe |
118 | SRCREV_locker="281af2d563954745bea9d1487c965f24d30742fe" | 118 | SRCREV_locker="281af2d563954745bea9d1487c965f24d30742fe" |
119 | SRC_URI += "git://github.com/moby/locker;name=locker;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/locker" | 119 | SRC_URI += "git://github.com/moby/locker;name=locker;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/locker" |
120 | 120 | ||
121 | # google.golang.org/grpc v1.59.0 | 121 | # google.golang.org/grpc v1.59.0 |
122 | # [1] git ls-remote https://github.com/grpc/grpc-go 7765221f4bf6104973db7946d56936cf838cad46 | 122 | # [1] git ls-remote https://github.com/grpc/grpc-go 7765221f4bf6104973db7946d56936cf838cad46 |
123 | SRCREV_grpc="7765221f4bf6104973db7946d56936cf838cad46" | 123 | SRCREV_grpc="7765221f4bf6104973db7946d56936cf838cad46" |
124 | SRC_URI += "git://github.com/grpc/grpc-go;name=grpc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/google.golang.org/grpc" | 124 | SRC_URI += "git://github.com/grpc/grpc-go;name=grpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/google.golang.org/grpc" |
125 | 125 | ||
126 | # github.com/go-logr/logr v1.3.0 | 126 | # github.com/go-logr/logr v1.3.0 |
127 | # [1] git ls-remote https://github.com/go-logr/logr 8adefbede0fe82bdee4fb8c9c9bdc7bc5d91388f | 127 | # [1] git ls-remote https://github.com/go-logr/logr 8adefbede0fe82bdee4fb8c9c9bdc7bc5d91388f |
128 | SRCREV_logr="8adefbede0fe82bdee4fb8c9c9bdc7bc5d91388f" | 128 | SRCREV_logr="8adefbede0fe82bdee4fb8c9c9bdc7bc5d91388f" |
129 | SRC_URI += "git://github.com/go-logr/logr;name=logr;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/go-logr/logr" | 129 | SRC_URI += "git://github.com/go-logr/logr;name=logr;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-logr/logr" |
130 | 130 | ||
131 | # github.com/go-logr/stdr v1.2.2 | 131 | # github.com/go-logr/stdr v1.2.2 |
132 | # [1] git ls-remote https://github.com/go-logr/stdr 521af2addfa7c81c8a65d0e85ed34bb6bb6dc262 | 132 | # [1] git ls-remote https://github.com/go-logr/stdr 521af2addfa7c81c8a65d0e85ed34bb6bb6dc262 |
133 | SRCREV_stdr="521af2addfa7c81c8a65d0e85ed34bb6bb6dc262" | 133 | SRCREV_stdr="521af2addfa7c81c8a65d0e85ed34bb6bb6dc262" |
134 | SRC_URI += "git://github.com/go-logr/stdr;name=stdr;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/go-logr/stdr" | 134 | SRC_URI += "git://github.com/go-logr/stdr;name=stdr;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-logr/stdr" |
135 | 135 | ||
136 | # github.com/miekg/pkcs11 v1.1.1 | 136 | # github.com/miekg/pkcs11 v1.1.1 |
137 | # [1] git ls-remote https://github.com/miekg/pkcs11 f3481918a208bd212aa995a41f92d786eb418a7d | 137 | # [1] git ls-remote https://github.com/miekg/pkcs11 f3481918a208bd212aa995a41f92d786eb418a7d |
138 | SRCREV_pkcs11="f3481918a208bd212aa995a41f92d786eb418a7d" | 138 | SRCREV_pkcs11="f3481918a208bd212aa995a41f92d786eb418a7d" |
139 | SRC_URI += "git://github.com/miekg/pkcs11;name=pkcs11;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/miekg/pkcs11" | 139 | SRC_URI += "git://github.com/miekg/pkcs11;name=pkcs11;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/miekg/pkcs11" |
140 | 140 | ||
141 | # github.com/tinylib/msgp v1.1.6 | 141 | # github.com/tinylib/msgp v1.1.6 |
142 | # [1] git ls-remote https://github.com/tinylib/msgp 205265da651409c54677b486e350b4d105da6d8b | 142 | # [1] git ls-remote https://github.com/tinylib/msgp 205265da651409c54677b486e350b4d105da6d8b |
143 | SRCREV_msgp="205265da651409c54677b486e350b4d105da6d8b" | 143 | SRCREV_msgp="205265da651409c54677b486e350b4d105da6d8b" |
144 | SRC_URI += "git://github.com/tinylib/msgp;name=msgp;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tinylib/msgp" | 144 | SRC_URI += "git://github.com/tinylib/msgp;name=msgp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tinylib/msgp" |
145 | 145 | ||
146 | # lukechampine.com/blake3 v1.1.7 | 146 | # lukechampine.com/blake3 v1.1.7 |
147 | # [1] git ls-remote https://github.com/lukechampine/blake3 bb7ece4161ea910c6c385c17799b17d658075fcd | 147 | # [1] git ls-remote https://github.com/lukechampine/blake3 bb7ece4161ea910c6c385c17799b17d658075fcd |
148 | SRCREV_blake3="bb7ece4161ea910c6c385c17799b17d658075fcd" | 148 | SRCREV_blake3="bb7ece4161ea910c6c385c17799b17d658075fcd" |
149 | SRC_URI += "git://github.com/lukechampine/blake3;name=blake3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/lukechampine.com/blake3" | 149 | SRC_URI += "git://github.com/lukechampine/blake3;name=blake3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/lukechampine.com/blake3" |
150 | 150 | ||
151 | # github.com/docker/docker v24.0.7+incompatible | 151 | # github.com/docker/docker v24.0.7+incompatible |
152 | # [1] git ls-remote https://github.com/moby/moby 311b9ff0aa93aa55880e1e5f8871c4fb69583426 | 152 | # [1] git ls-remote https://github.com/moby/moby 311b9ff0aa93aa55880e1e5f8871c4fb69583426 |
153 | SRCREV_docker="311b9ff0aa93aa55880e1e5f8871c4fb69583426" | 153 | SRCREV_docker="311b9ff0aa93aa55880e1e5f8871c4fb69583426" |
154 | SRC_URI += "git://github.com/moby/moby;name=docker;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/docker" | 154 | SRC_URI += "git://github.com/moby/moby;name=docker;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/docker" |
155 | 155 | ||
156 | # github.com/tidwall/gjson v1.17.1 | 156 | # github.com/tidwall/gjson v1.17.1 |
157 | # [1] git ls-remote https://github.com/tidwall/gjson bbf40bb0e4f47860677c7115b2eaa5b3413ce23e | 157 | # [1] git ls-remote https://github.com/tidwall/gjson bbf40bb0e4f47860677c7115b2eaa5b3413ce23e |
158 | SRCREV_gjson="bbf40bb0e4f47860677c7115b2eaa5b3413ce23e" | 158 | SRCREV_gjson="bbf40bb0e4f47860677c7115b2eaa5b3413ce23e" |
159 | SRC_URI += "git://github.com/tidwall/gjson;name=gjson;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tidwall/gjson" | 159 | SRC_URI += "git://github.com/tidwall/gjson;name=gjson;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tidwall/gjson" |
160 | 160 | ||
161 | # github.com/moby/sys/user v0.1.0 | 161 | # github.com/moby/sys/user v0.1.0 |
162 | # [1] git ls-remote https://github.com/moby/sys c0711cde08c8fa33857a2c28721659267f49b5e2 | 162 | # [1] git ls-remote https://github.com/moby/sys c0711cde08c8fa33857a2c28721659267f49b5e2 |
163 | SRCREV_user="c0711cde08c8fa33857a2c28721659267f49b5e2" | 163 | SRCREV_user="c0711cde08c8fa33857a2c28721659267f49b5e2" |
164 | SRC_URI += "git://github.com/moby/sys;name=user;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/user" | 164 | SRC_URI += "git://github.com/moby/sys;name=user;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/user" |
165 | 165 | ||
166 | # github.com/gogo/protobuf v1.3.2 | 166 | # github.com/gogo/protobuf v1.3.2 |
167 | # [1] git ls-remote https://github.com/gogo/protobuf b03c65ea87cdc3521ede29f62fe3ce239267c1bc | 167 | # [1] git ls-remote https://github.com/gogo/protobuf b03c65ea87cdc3521ede29f62fe3ce239267c1bc |
168 | SRCREV_protobuf="b03c65ea87cdc3521ede29f62fe3ce239267c1bc" | 168 | SRCREV_protobuf="b03c65ea87cdc3521ede29f62fe3ce239267c1bc" |
169 | SRC_URI += "git://github.com/gogo/protobuf;name=protobuf;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gogo/protobuf" | 169 | SRC_URI += "git://github.com/gogo/protobuf;name=protobuf;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/gogo/protobuf" |
170 | 170 | ||
171 | # github.com/google/go-cmp v0.6.0 | 171 | # github.com/google/go-cmp v0.6.0 |
172 | # [1] git ls-remote https://github.com/google/go-cmp c3ad8435e7bef96af35732bc0789e5a2278c6d5f | 172 | # [1] git ls-remote https://github.com/google/go-cmp c3ad8435e7bef96af35732bc0789e5a2278c6d5f |
173 | SRCREV_go-cmp="c3ad8435e7bef96af35732bc0789e5a2278c6d5f" | 173 | SRCREV_go-cmp="c3ad8435e7bef96af35732bc0789e5a2278c6d5f" |
174 | SRC_URI += "git://github.com/google/go-cmp;name=go-cmp;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/google/go-cmp" | 174 | SRC_URI += "git://github.com/google/go-cmp;name=go-cmp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/google/go-cmp" |
175 | 175 | ||
176 | # github.com/imdario/mergo v0.3.16 | 176 | # github.com/imdario/mergo v0.3.16 |
177 | # [1] git ls-remote https://github.com/darccio/mergo 14fe2b165b83359196f820886a2b24f2771729e9 | 177 | # [1] git ls-remote https://github.com/darccio/mergo 14fe2b165b83359196f820886a2b24f2771729e9 |
178 | SRCREV_mergo="14fe2b165b83359196f820886a2b24f2771729e9" | 178 | SRCREV_mergo="14fe2b165b83359196f820886a2b24f2771729e9" |
179 | SRC_URI += "git://github.com/darccio/mergo;name=mergo;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/imdario/mergo" | 179 | SRC_URI += "git://github.com/darccio/mergo;name=mergo;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/imdario/mergo" |
180 | 180 | ||
181 | # github.com/philhofer/fwd v1.1.1 | 181 | # github.com/philhofer/fwd v1.1.1 |
182 | # [1] git ls-remote https://github.com/philhofer/fwd 9bcb9cab1b0394d8516a132ec243ba944efdb644 | 182 | # [1] git ls-remote https://github.com/philhofer/fwd 9bcb9cab1b0394d8516a132ec243ba944efdb644 |
183 | SRCREV_fwd="9bcb9cab1b0394d8516a132ec243ba944efdb644" | 183 | SRCREV_fwd="9bcb9cab1b0394d8516a132ec243ba944efdb644" |
184 | SRC_URI += "git://github.com/philhofer/fwd;name=fwd;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/philhofer/fwd" | 184 | SRC_URI += "git://github.com/philhofer/fwd;name=fwd;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/philhofer/fwd" |
185 | 185 | ||
186 | # github.com/tidwall/match v1.1.1 | 186 | # github.com/tidwall/match v1.1.1 |
187 | # [1] git ls-remote https://github.com/tidwall/match 4c9fc61b493b7aa0a3d347e9190aa78c5bec09cf | 187 | # [1] git ls-remote https://github.com/tidwall/match 4c9fc61b493b7aa0a3d347e9190aa78c5bec09cf |
188 | SRCREV_match="4c9fc61b493b7aa0a3d347e9190aa78c5bec09cf" | 188 | SRCREV_match="4c9fc61b493b7aa0a3d347e9190aa78c5bec09cf" |
189 | SRC_URI += "git://github.com/tidwall/match;name=match;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tidwall/match" | 189 | SRC_URI += "git://github.com/tidwall/match;name=match;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tidwall/match" |
190 | 190 | ||
191 | # go.opentelemetry.io/otel v1.19.0 | 191 | # go.opentelemetry.io/otel v1.19.0 |
192 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 60666c554065ac4da502fe28943eea4b938ab479 | 192 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 60666c554065ac4da502fe28943eea4b938ab479 |
193 | SRCREV_otel="60666c554065ac4da502fe28943eea4b938ab479" | 193 | SRCREV_otel="60666c554065ac4da502fe28943eea4b938ab479" |
194 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otel;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.opentelemetry.io/otel" | 194 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otel;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel" |
195 | 195 | ||
196 | # github.com/containerd/log v0.1.0 | 196 | # github.com/containerd/log v0.1.0 |
197 | # [1] git ls-remote https://github.com/containerd/log 0fc1e28871fdf2786e2cc51bbe4133db6547a199 | 197 | # [1] git ls-remote https://github.com/containerd/log 0fc1e28871fdf2786e2cc51bbe4133db6547a199 |
198 | SRCREV_log="0fc1e28871fdf2786e2cc51bbe4133db6547a199" | 198 | SRCREV_log="0fc1e28871fdf2786e2cc51bbe4133db6547a199" |
199 | SRC_URI += "git://github.com/containerd/log;name=log;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/log" | 199 | SRC_URI += "git://github.com/containerd/log;name=log;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/log" |
200 | 200 | ||
201 | # github.com/moby/sys/mount v0.3.3 | 201 | # github.com/moby/sys/mount v0.3.3 |
202 | # [1] git ls-remote https://github.com/moby/sys 416188aff8404d549e1e34a50e513befeb11c3b9 | 202 | # [1] git ls-remote https://github.com/moby/sys 416188aff8404d549e1e34a50e513befeb11c3b9 |
203 | SRCREV_mount="416188aff8404d549e1e34a50e513befeb11c3b9" | 203 | SRCREV_mount="416188aff8404d549e1e34a50e513befeb11c3b9" |
204 | SRC_URI += "git://github.com/moby/sys;name=mount;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/mount" | 204 | SRC_URI += "git://github.com/moby/sys;name=mount;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/mount" |
205 | 205 | ||
206 | # github.com/djherbis/times v1.5.0 | 206 | # github.com/djherbis/times v1.5.0 |
207 | # [1] git ls-remote https://github.com/djherbis/times a1edc5dc082a710e4a808e99c78989b8d04e3025 | 207 | # [1] git ls-remote https://github.com/djherbis/times a1edc5dc082a710e4a808e99c78989b8d04e3025 |
208 | SRCREV_times="a1edc5dc082a710e4a808e99c78989b8d04e3025" | 208 | SRCREV_times="a1edc5dc082a710e4a808e99c78989b8d04e3025" |
209 | SRC_URI += "git://github.com/djherbis/times;name=times;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/djherbis/times" | 209 | SRC_URI += "git://github.com/djherbis/times;name=times;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/djherbis/times" |
210 | 210 | ||
211 | # github.com/godbus/dbus/v5 v5.1.0 | 211 | # github.com/godbus/dbus/v5 v5.1.0 |
212 | # [1] git ls-remote https://github.com/godbus/dbus e523abc905595cf17fb0001a7d77eaaddfaa216d | 212 | # [1] git ls-remote https://github.com/godbus/dbus e523abc905595cf17fb0001a7d77eaaddfaa216d |
213 | SRCREV_v5="e523abc905595cf17fb0001a7d77eaaddfaa216d" | 213 | SRCREV_v5="e523abc905595cf17fb0001a7d77eaaddfaa216d" |
214 | SRC_URI += "git://github.com/godbus/dbus;name=v5;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/godbus/dbus/v5" | 214 | SRC_URI += "git://github.com/godbus/dbus;name=v5;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/godbus/dbus/v5" |
215 | 215 | ||
216 | # github.com/mr-tron/base58 v1.2.0 | 216 | # github.com/mr-tron/base58 v1.2.0 |
217 | # [1] git ls-remote https://github.com/mr-tron/base58 cd0e5141f51dfcadb8311fd8e495eb11126a8010 | 217 | # [1] git ls-remote https://github.com/mr-tron/base58 cd0e5141f51dfcadb8311fd8e495eb11126a8010 |
218 | SRCREV_base58="cd0e5141f51dfcadb8311fd8e495eb11126a8010" | 218 | SRCREV_base58="cd0e5141f51dfcadb8311fd8e495eb11126a8010" |
219 | SRC_URI += "git://github.com/mr-tron/base58;name=base58;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mr-tron/base58" | 219 | SRC_URI += "git://github.com/mr-tron/base58;name=base58;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mr-tron/base58" |
220 | 220 | ||
221 | # github.com/tidwall/pretty v1.2.0 | 221 | # github.com/tidwall/pretty v1.2.0 |
222 | # [1] git ls-remote https://github.com/tidwall/pretty aaa765e7476acb0028a854b85675801362cbdaa2 | 222 | # [1] git ls-remote https://github.com/tidwall/pretty aaa765e7476acb0028a854b85675801362cbdaa2 |
223 | SRCREV_pretty="aaa765e7476acb0028a854b85675801362cbdaa2" | 223 | SRCREV_pretty="aaa765e7476acb0028a854b85675801362cbdaa2" |
224 | SRC_URI += "git://github.com/tidwall/pretty;name=pretty;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tidwall/pretty" | 224 | SRC_URI += "git://github.com/tidwall/pretty;name=pretty;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tidwall/pretty" |
225 | 225 | ||
226 | # github.com/containerd/fifo v1.1.0 | 226 | # github.com/containerd/fifo v1.1.0 |
227 | # [1] git ls-remote https://github.com/containerd/fifo 151b205263c29d471e0d55c787d2ce9f5343fd46 | 227 | # [1] git ls-remote https://github.com/containerd/fifo 151b205263c29d471e0d55c787d2ce9f5343fd46 |
228 | SRCREV_fifo="151b205263c29d471e0d55c787d2ce9f5343fd46" | 228 | SRCREV_fifo="151b205263c29d471e0d55c787d2ce9f5343fd46" |
229 | SRC_URI += "git://github.com/containerd/fifo;name=fifo;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/fifo" | 229 | SRC_URI += "git://github.com/containerd/fifo;name=fifo;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/fifo" |
230 | 230 | ||
231 | # github.com/docker/go-units v0.5.0 | 231 | # github.com/docker/go-units v0.5.0 |
232 | # [1] git ls-remote https://github.com/docker/go-units e682442797b36348f8e1f98defdbf32bac0b6c6f | 232 | # [1] git ls-remote https://github.com/docker/go-units e682442797b36348f8e1f98defdbf32bac0b6c6f |
233 | SRCREV_go-units="e682442797b36348f8e1f98defdbf32bac0b6c6f" | 233 | SRCREV_go-units="e682442797b36348f8e1f98defdbf32bac0b6c6f" |
234 | SRC_URI += "git://github.com/docker/go-units;name=go-units;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/go-units" | 234 | SRC_URI += "git://github.com/docker/go-units;name=go-units;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/go-units" |
235 | 235 | ||
236 | # github.com/mattn/go-isatty v0.0.20 | 236 | # github.com/mattn/go-isatty v0.0.20 |
237 | # [1] git ls-remote https://github.com/mattn/go-isatty a7c02353c47bc4ec6b30dc9628154ae4fe760c11 | 237 | # [1] git ls-remote https://github.com/mattn/go-isatty a7c02353c47bc4ec6b30dc9628154ae4fe760c11 |
238 | SRCREV_go-isatty="a7c02353c47bc4ec6b30dc9628154ae4fe760c11" | 238 | SRCREV_go-isatty="a7c02353c47bc4ec6b30dc9628154ae4fe760c11" |
239 | SRC_URI += "git://github.com/mattn/go-isatty;name=go-isatty;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mattn/go-isatty" | 239 | SRC_URI += "git://github.com/mattn/go-isatty;name=go-isatty;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mattn/go-isatty" |
240 | 240 | ||
241 | # github.com/moby/sys/signal v0.7.0 | 241 | # github.com/moby/sys/signal v0.7.0 |
242 | # [1] git ls-remote https://github.com/moby/sys b8d8fabf1fa5cf0de7c1a1729145eee854ea31f5 | 242 | # [1] git ls-remote https://github.com/moby/sys b8d8fabf1fa5cf0de7c1a1729145eee854ea31f5 |
243 | SRCREV_signal="b8d8fabf1fa5cf0de7c1a1729145eee854ea31f5" | 243 | SRCREV_signal="b8d8fabf1fa5cf0de7c1a1729145eee854ea31f5" |
244 | SRC_URI += "git://github.com/moby/sys;name=signal;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/signal" | 244 | SRC_URI += "git://github.com/moby/sys;name=signal;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/signal" |
245 | 245 | ||
246 | # github.com/yuchanns/srslog v1.1.0 | 246 | # github.com/yuchanns/srslog v1.1.0 |
247 | # [1] git ls-remote https://github.com/yuchanns/srslog becd9b11119269a7928ae89fde90784335c1d016 | 247 | # [1] git ls-remote https://github.com/yuchanns/srslog becd9b11119269a7928ae89fde90784335c1d016 |
248 | SRCREV_srslog="becd9b11119269a7928ae89fde90784335c1d016" | 248 | SRCREV_srslog="becd9b11119269a7928ae89fde90784335c1d016" |
249 | SRC_URI += "git://github.com/yuchanns/srslog;name=srslog;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/yuchanns/srslog" | 249 | SRC_URI += "git://github.com/yuchanns/srslog;name=srslog;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/yuchanns/srslog" |
250 | 250 | ||
251 | # github.com/golang/protobuf v1.5.3 | 251 | # github.com/golang/protobuf v1.5.3 |
252 | # [1] git ls-remote https://github.com/golang/protobuf 5d5e8c018a13017f9d5b8bf4fad64aaa42a87308 | 252 | # [1] git ls-remote https://github.com/golang/protobuf 5d5e8c018a13017f9d5b8bf4fad64aaa42a87308 |
253 | SRCREV_golang-protobuf="5d5e8c018a13017f9d5b8bf4fad64aaa42a87308" | 253 | SRCREV_golang-protobuf="5d5e8c018a13017f9d5b8bf4fad64aaa42a87308" |
254 | SRC_URI += "git://github.com/golang/protobuf;name=golang-protobuf;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/golang/protobuf" | 254 | SRC_URI += "git://github.com/golang/protobuf;name=golang-protobuf;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/golang/protobuf" |
255 | 255 | ||
256 | # github.com/sirupsen/logrus v1.9.3 | 256 | # github.com/sirupsen/logrus v1.9.3 |
257 | # [1] git ls-remote https://github.com/sirupsen/logrus d40e25cd45ed9c6b2b66e6b97573a0413e4c23bd | 257 | # [1] git ls-remote https://github.com/sirupsen/logrus d40e25cd45ed9c6b2b66e6b97573a0413e4c23bd |
258 | SRCREV_logrus="d40e25cd45ed9c6b2b66e6b97573a0413e4c23bd" | 258 | SRCREV_logrus="d40e25cd45ed9c6b2b66e6b97573a0413e4c23bd" |
259 | SRC_URI += "git://github.com/sirupsen/logrus;name=logrus;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/sirupsen/logrus" | 259 | SRC_URI += "git://github.com/sirupsen/logrus;name=logrus;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/sirupsen/logrus" |
260 | 260 | ||
261 | # google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a | 261 | # google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a |
262 | # [1] git ls-remote https://github.com/googleapis/go-genproto e917dd12ba7ad5f78e3112f832eeda0f94ca8fd4 | 262 | # [1] git ls-remote https://github.com/googleapis/go-genproto e917dd12ba7ad5f78e3112f832eeda0f94ca8fd4 |
263 | SRCREV_genproto="e917dd12ba7ad5f78e3112f832eeda0f94ca8fd4" | 263 | SRCREV_genproto="e917dd12ba7ad5f78e3112f832eeda0f94ca8fd4" |
264 | SRC_URI += "git://github.com/googleapis/go-genproto;name=genproto;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/google.golang.org/genproto" | 264 | SRC_URI += "git://github.com/googleapis/go-genproto;name=genproto;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/google.golang.org/genproto" |
265 | 265 | ||
266 | # google.golang.org/protobuf v1.31.0 | 266 | # google.golang.org/protobuf v1.31.0 |
267 | # [1] git ls-remote https://github.com/protocolbuffers/protobuf-go 68463f0e96c93bc19ef36ccd3adfe690bfdb568c | 267 | # [1] git ls-remote https://github.com/protocolbuffers/protobuf-go 68463f0e96c93bc19ef36ccd3adfe690bfdb568c |
268 | SRCREV_google.golang.org-protobuf="68463f0e96c93bc19ef36ccd3adfe690bfdb568c" | 268 | SRCREV_google.golang.org-protobuf="68463f0e96c93bc19ef36ccd3adfe690bfdb568c" |
269 | SRC_URI += "git://github.com/protocolbuffers/protobuf-go;name=google.golang.org-protobuf;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/google.golang.org/protobuf" | 269 | SRC_URI += "git://github.com/protocolbuffers/protobuf-go;name=google.golang.org-protobuf;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/google.golang.org/protobuf" |
270 | 270 | ||
271 | # github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 | 271 | # github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 |
272 | # [1] git ls-remote https://github.com/bmizerany/assert b7ed37b82869576c289d7d97fb2bbd8b64a0cb28 | 272 | # [1] git ls-remote https://github.com/bmizerany/assert b7ed37b82869576c289d7d97fb2bbd8b64a0cb28 |
273 | SRCREV_assert="b7ed37b82869576c289d7d97fb2bbd8b64a0cb28" | 273 | SRCREV_assert="b7ed37b82869576c289d7d97fb2bbd8b64a0cb28" |
274 | SRC_URI += "git://github.com/bmizerany/assert;name=assert;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/bmizerany/assert" | 274 | SRC_URI += "git://github.com/bmizerany/assert;name=assert;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/bmizerany/assert" |
275 | 275 | ||
276 | # github.com/containerd/ttrpc v1.2.2 | 276 | # github.com/containerd/ttrpc v1.2.2 |
277 | # [1] git ls-remote https://github.com/containerd/ttrpc ac26f8cbea1c440d451dd19a4a1b847fd073f3c3 | 277 | # [1] git ls-remote https://github.com/containerd/ttrpc ac26f8cbea1c440d451dd19a4a1b847fd073f3c3 |
278 | SRCREV_ttrpc="ac26f8cbea1c440d451dd19a4a1b847fd073f3c3" | 278 | SRCREV_ttrpc="ac26f8cbea1c440d451dd19a4a1b847fd073f3c3" |
279 | SRC_URI += "git://github.com/containerd/ttrpc;name=ttrpc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/ttrpc" | 279 | SRC_URI += "git://github.com/containerd/ttrpc;name=ttrpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/ttrpc" |
280 | 280 | ||
281 | # github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c | 281 | # github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c |
282 | # [1] git ls-remote https://github.com/docker/go-events e31b211e4f1cd09aa76fe4ac244571fab96ae47f | 282 | # [1] git ls-remote https://github.com/docker/go-events e31b211e4f1cd09aa76fe4ac244571fab96ae47f |
283 | SRCREV_go-events="e31b211e4f1cd09aa76fe4ac244571fab96ae47f" | 283 | SRCREV_go-events="e31b211e4f1cd09aa76fe4ac244571fab96ae47f" |
284 | SRC_URI += "git://github.com/docker/go-events;name=go-events;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/go-events" | 284 | SRC_URI += "git://github.com/docker/go-events;name=go-events;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/go-events" |
285 | 285 | ||
286 | # github.com/moby/sys/symlink v0.2.0 | 286 | # github.com/moby/sys/symlink v0.2.0 |
287 | # [1] git ls-remote https://github.com/moby/sys 03b9f8d59a07f5206a2264105f4903a222aea964 | 287 | # [1] git ls-remote https://github.com/moby/sys 03b9f8d59a07f5206a2264105f4903a222aea964 |
288 | SRCREV_symlink="03b9f8d59a07f5206a2264105f4903a222aea964" | 288 | SRCREV_symlink="03b9f8d59a07f5206a2264105f4903a222aea964" |
289 | SRC_URI += "git://github.com/moby/sys;name=symlink;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/symlink" | 289 | SRC_URI += "git://github.com/moby/sys;name=symlink;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/symlink" |
290 | 290 | ||
291 | # github.com/vbatts/tar-split v0.11.5 | 291 | # github.com/vbatts/tar-split v0.11.5 |
292 | # [1] git ls-remote https://github.com/vbatts/tar-split 5ef0dd8243164ebacd755916a89d8085a5b6bb7f | 292 | # [1] git ls-remote https://github.com/vbatts/tar-split 5ef0dd8243164ebacd755916a89d8085a5b6bb7f |
293 | SRCREV_tar-split="5ef0dd8243164ebacd755916a89d8085a5b6bb7f" | 293 | SRCREV_tar-split="5ef0dd8243164ebacd755916a89d8085a5b6bb7f" |
294 | SRC_URI += "git://github.com/vbatts/tar-split;name=tar-split;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/vbatts/tar-split" | 294 | SRC_URI += "git://github.com/vbatts/tar-split;name=tar-split;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/vbatts/tar-split" |
295 | 295 | ||
296 | # github.com/Microsoft/hcsshim v0.11.4 | 296 | # github.com/Microsoft/hcsshim v0.11.4 |
297 | # [1] git ls-remote https://github.com/microsoft/hcsshim b16edf62c1723deb948632261b445d0228d973e0 | 297 | # [1] git ls-remote https://github.com/microsoft/hcsshim b16edf62c1723deb948632261b445d0228d973e0 |
298 | SRCREV_hcsshim="b16edf62c1723deb948632261b445d0228d973e0" | 298 | SRCREV_hcsshim="b16edf62c1723deb948632261b445d0228d973e0" |
299 | SRC_URI += "git://github.com/microsoft/hcsshim;name=hcsshim;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/Microsoft/hcsshim" | 299 | SRC_URI += "git://github.com/microsoft/hcsshim;name=hcsshim;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/Microsoft/hcsshim" |
300 | 300 | ||
301 | # github.com/containerd/go-cni v1.1.9 | 301 | # github.com/containerd/go-cni v1.1.9 |
302 | # [1] git ls-remote https://github.com/containerd/go-cni 6603d5bd8941d7f2026bb5627f6aa4ff434f859a | 302 | # [1] git ls-remote https://github.com/containerd/go-cni 6603d5bd8941d7f2026bb5627f6aa4ff434f859a |
303 | SRCREV_go-cni="6603d5bd8941d7f2026bb5627f6aa4ff434f859a" | 303 | SRCREV_go-cni="6603d5bd8941d7f2026bb5627f6aa4ff434f859a" |
304 | SRC_URI += "git://github.com/containerd/go-cni;name=go-cni;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/go-cni" | 304 | SRC_URI += "git://github.com/containerd/go-cni;name=go-cni;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/go-cni" |
305 | 305 | ||
306 | # github.com/vishvananda/netns v0.0.4 | 306 | # github.com/vishvananda/netns v0.0.4 |
307 | # [1] git ls-remote https://github.com/vishvananda/netns 7a452d2d15292b2bfb2a2d88e6bdeac156a761b9 | 307 | # [1] git ls-remote https://github.com/vishvananda/netns 7a452d2d15292b2bfb2a2d88e6bdeac156a761b9 |
308 | SRCREV_netns="7a452d2d15292b2bfb2a2d88e6bdeac156a761b9" | 308 | SRCREV_netns="7a452d2d15292b2bfb2a2d88e6bdeac156a761b9" |
309 | SRC_URI += "git://github.com/vishvananda/netns;name=netns;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/vishvananda/netns" | 309 | SRC_URI += "git://github.com/vishvananda/netns;name=netns;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/vishvananda/netns" |
310 | 310 | ||
311 | # github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 | 311 | # github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 |
312 | # [1] git ls-remote https://github.com/Azure/go-ansiterm d185dfc1b5a126116ea5a19e148e29d16b4574c9 | 312 | # [1] git ls-remote https://github.com/Azure/go-ansiterm d185dfc1b5a126116ea5a19e148e29d16b4574c9 |
313 | SRCREV_go-ansiterm="d185dfc1b5a126116ea5a19e148e29d16b4574c9" | 313 | SRCREV_go-ansiterm="d185dfc1b5a126116ea5a19e148e29d16b4574c9" |
314 | SRC_URI += "git://github.com/Azure/go-ansiterm;name=go-ansiterm;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/Azure/go-ansiterm" | 314 | SRC_URI += "git://github.com/Azure/go-ansiterm;name=go-ansiterm;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/Azure/go-ansiterm" |
315 | 315 | ||
316 | # github.com/felixge/httpsnoop v1.0.3 | 316 | # github.com/felixge/httpsnoop v1.0.3 |
317 | # [1] git ls-remote https://github.com/felixge/httpsnoop ef9fc62cdc3cc5abc33d6018fe1324890bb48145 | 317 | # [1] git ls-remote https://github.com/felixge/httpsnoop ef9fc62cdc3cc5abc33d6018fe1324890bb48145 |
318 | SRCREV_httpsnoop="ef9fc62cdc3cc5abc33d6018fe1324890bb48145" | 318 | SRCREV_httpsnoop="ef9fc62cdc3cc5abc33d6018fe1324890bb48145" |
319 | SRC_URI += "git://github.com/felixge/httpsnoop;name=httpsnoop;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/felixge/httpsnoop" | 319 | SRC_URI += "git://github.com/felixge/httpsnoop;name=httpsnoop;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/felixge/httpsnoop" |
320 | 320 | ||
321 | # github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da | 321 | # github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da |
322 | # [1] git ls-remote https://github.com/golang/groupcache 41bb18bfe9da5321badc438f91158cd790a33aa3 | 322 | # [1] git ls-remote https://github.com/golang/groupcache 41bb18bfe9da5321badc438f91158cd790a33aa3 |
323 | SRCREV_groupcache="41bb18bfe9da5321badc438f91158cd790a33aa3" | 323 | SRCREV_groupcache="41bb18bfe9da5321badc438f91158cd790a33aa3" |
324 | SRC_URI += "git://github.com/golang/groupcache;name=groupcache;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/golang/groupcache" | 324 | SRC_URI += "git://github.com/golang/groupcache;name=groupcache;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/golang/groupcache" |
325 | 325 | ||
326 | # github.com/hashicorp/errwrap v1.1.0 | 326 | # github.com/hashicorp/errwrap v1.1.0 |
327 | # [1] git ls-remote https://github.com/hashicorp/errwrap 7b00e5db719c64d14dd0caaacbd13e76254d02c0 | 327 | # [1] git ls-remote https://github.com/hashicorp/errwrap 7b00e5db719c64d14dd0caaacbd13e76254d02c0 |
328 | SRCREV_errwrap="7b00e5db719c64d14dd0caaacbd13e76254d02c0" | 328 | SRCREV_errwrap="7b00e5db719c64d14dd0caaacbd13e76254d02c0" |
329 | SRC_URI += "git://github.com/hashicorp/errwrap;name=errwrap;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/hashicorp/errwrap" | 329 | SRC_URI += "git://github.com/hashicorp/errwrap;name=errwrap;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/hashicorp/errwrap" |
330 | 330 | ||
331 | # github.com/minio/sha256-simd v1.0.1 | 331 | # github.com/minio/sha256-simd v1.0.1 |
332 | # [1] git ls-remote https://github.com/minio/sha256-simd 6096f891a77bfe490cbea7a424c821b5fdb92849 | 332 | # [1] git ls-remote https://github.com/minio/sha256-simd 6096f891a77bfe490cbea7a424c821b5fdb92849 |
333 | SRCREV_sha256-simd="6096f891a77bfe490cbea7a424c821b5fdb92849" | 333 | SRCREV_sha256-simd="6096f891a77bfe490cbea7a424c821b5fdb92849" |
334 | SRC_URI += "git://github.com/minio/sha256-simd;name=sha256-simd;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/minio/sha256-simd" | 334 | SRC_URI += "git://github.com/minio/sha256-simd;name=sha256-simd;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/minio/sha256-simd" |
335 | 335 | ||
336 | # github.com/pelletier/go-toml v1.9.5 | 336 | # github.com/pelletier/go-toml v1.9.5 |
337 | # [1] git ls-remote https://github.com/pelletier/go-toml fed1464066413075eac02cd4dc368b5221845541 | 337 | # [1] git ls-remote https://github.com/pelletier/go-toml fed1464066413075eac02cd4dc368b5221845541 |
338 | SRCREV_go-toml="fed1464066413075eac02cd4dc368b5221845541" | 338 | SRCREV_go-toml="fed1464066413075eac02cd4dc368b5221845541" |
339 | SRC_URI += "git://github.com/pelletier/go-toml;name=go-toml;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/pelletier/go-toml" | 339 | SRC_URI += "git://github.com/pelletier/go-toml;name=go-toml;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/pelletier/go-toml" |
340 | 340 | ||
341 | # github.com/spaolacci/murmur3 v1.1.0 | 341 | # github.com/spaolacci/murmur3 v1.1.0 |
342 | # [1] git ls-remote https://github.com/spaolacci/murmur3 f09979ecbc725b9e6d41a297405f65e7e8804acc | 342 | # [1] git ls-remote https://github.com/spaolacci/murmur3 f09979ecbc725b9e6d41a297405f65e7e8804acc |
343 | SRCREV_murmur3="f09979ecbc725b9e6d41a297405f65e7e8804acc" | 343 | SRCREV_murmur3="f09979ecbc725b9e6d41a297405f65e7e8804acc" |
344 | SRC_URI += "git://github.com/spaolacci/murmur3;name=murmur3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/spaolacci/murmur3" | 344 | SRC_URI += "git://github.com/spaolacci/murmur3;name=murmur3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/spaolacci/murmur3" |
345 | 345 | ||
346 | # github.com/Microsoft/go-winio v0.6.1 | 346 | # github.com/Microsoft/go-winio v0.6.1 |
347 | # [1] git ls-remote https://github.com/microsoft/go-winio 070c828abb873da9e71c7247740253b50f7cf049 | 347 | # [1] git ls-remote https://github.com/microsoft/go-winio 070c828abb873da9e71c7247740253b50f7cf049 |
348 | SRCREV_go-winio="070c828abb873da9e71c7247740253b50f7cf049" | 348 | SRCREV_go-winio="070c828abb873da9e71c7247740253b50f7cf049" |
349 | SRC_URI += "git://github.com/microsoft/go-winio;name=go-winio;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/Microsoft/go-winio" | 349 | SRC_URI += "git://github.com/microsoft/go-winio;name=go-winio;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/Microsoft/go-winio" |
350 | 350 | ||
351 | # github.com/containerd/console v1.0.4 | 351 | # github.com/containerd/console v1.0.4 |
352 | # [1] git ls-remote https://github.com/containerd/console 8f6c4e4faef5a326d2cd907097d04c0239ee5e2f | 352 | # [1] git ls-remote https://github.com/containerd/console 8f6c4e4faef5a326d2cd907097d04c0239ee5e2f |
353 | SRCREV_console="8f6c4e4faef5a326d2cd907097d04c0239ee5e2f" | 353 | SRCREV_console="8f6c4e4faef5a326d2cd907097d04c0239ee5e2f" |
354 | SRC_URI += "git://github.com/containerd/console;name=console;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/console" | 354 | SRC_URI += "git://github.com/containerd/console;name=console;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/console" |
355 | 355 | ||
356 | # github.com/coreos/go-iptables v0.7.0 | 356 | # github.com/coreos/go-iptables v0.7.0 |
357 | # [1] git ls-remote https://github.com/coreos/go-iptables b9dff5a19d9c3925da3f9b3c0a705de6c1fdc56c | 357 | # [1] git ls-remote https://github.com/coreos/go-iptables b9dff5a19d9c3925da3f9b3c0a705de6c1fdc56c |
358 | SRCREV_go-iptables="b9dff5a19d9c3925da3f9b3c0a705de6c1fdc56c" | 358 | SRCREV_go-iptables="b9dff5a19d9c3925da3f9b3c0a705de6c1fdc56c" |
359 | SRC_URI += "git://github.com/coreos/go-iptables;name=go-iptables;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/coreos/go-iptables" | 359 | SRC_URI += "git://github.com/coreos/go-iptables;name=go-iptables;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/coreos/go-iptables" |
360 | 360 | ||
361 | # github.com/containerd/cgroups v1.1.0 | 361 | # github.com/containerd/cgroups v1.1.0 |
362 | # [1] git ls-remote https://github.com/containerd/cgroups fe7323f622bc222e72473679f12a9089aeeda177 | 362 | # [1] git ls-remote https://github.com/containerd/cgroups fe7323f622bc222e72473679f12a9089aeeda177 |
363 | SRCREV_cgroups="fe7323f622bc222e72473679f12a9089aeeda177" | 363 | SRCREV_cgroups="fe7323f622bc222e72473679f12a9089aeeda177" |
364 | SRC_URI += "git://github.com/containerd/cgroups;name=cgroups;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/cgroups" | 364 | SRC_URI += "git://github.com/containerd/cgroups;name=cgroups;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/cgroups" |
365 | 365 | ||
366 | # github.com/containerd/go-runc v1.0.0 | 366 | # github.com/containerd/go-runc v1.0.0 |
367 | # [1] git ls-remote https://github.com/containerd/go-runc 16b287bc67d069a60fa48db15f330b790b74365b | 367 | # [1] git ls-remote https://github.com/containerd/go-runc 16b287bc67d069a60fa48db15f330b790b74365b |
368 | SRCREV_go-runc="16b287bc67d069a60fa48db15f330b790b74365b" | 368 | SRCREV_go-runc="16b287bc67d069a60fa48db15f330b790b74365b" |
369 | SRC_URI += "git://github.com/containerd/go-runc;name=go-runc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/go-runc" | 369 | SRC_URI += "git://github.com/containerd/go-runc;name=go-runc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/go-runc" |
370 | 370 | ||
371 | # github.com/containerd/typeurl v1.0.3-0.20220422153119-7f6e6d160d67 | 371 | # github.com/containerd/typeurl v1.0.3-0.20220422153119-7f6e6d160d67 |
372 | # [1] git ls-remote https://github.com/containerd/typeurl 7f6e6d160d675241af388d5cf1b90814786bac40 | 372 | # [1] git ls-remote https://github.com/containerd/typeurl 7f6e6d160d675241af388d5cf1b90814786bac40 |
373 | SRCREV_typeurl="7f6e6d160d675241af388d5cf1b90814786bac40" | 373 | SRCREV_typeurl="7f6e6d160d675241af388d5cf1b90814786bac40" |
374 | SRC_URI += "git://github.com/containerd/typeurl;name=typeurl;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/typeurl" | 374 | SRC_URI += "git://github.com/containerd/typeurl;name=typeurl;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/typeurl" |
375 | 375 | ||
376 | # github.com/go-jose/go-jose/v3 v3.0.1 | 376 | # github.com/go-jose/go-jose/v3 v3.0.1 |
377 | # [1] git ls-remote https://github.com/go-jose/go-jose 47edce0854d533ac27795c9befd90b1f7ef87554 | 377 | # [1] git ls-remote https://github.com/go-jose/go-jose 47edce0854d533ac27795c9befd90b1f7ef87554 |
378 | SRCREV_go-jose-v3="47edce0854d533ac27795c9befd90b1f7ef87554" | 378 | SRCREV_go-jose-v3="47edce0854d533ac27795c9befd90b1f7ef87554" |
379 | SRC_URI += "git://github.com/go-jose/go-jose;name=go-jose-v3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/go-jose/go-jose/v3" | 379 | SRC_URI += "git://github.com/go-jose/go-jose;name=go-jose-v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-jose/go-jose/v3" |
380 | 380 | ||
381 | # github.com/klauspost/compress v1.17.6 | 381 | # github.com/klauspost/compress v1.17.6 |
382 | # [1] git ls-remote https://github.com/klauspost/compress 255a13270e4608f2f2b97166d92f297de906c951 | 382 | # [1] git ls-remote https://github.com/klauspost/compress 255a13270e4608f2f2b97166d92f297de906c951 |
383 | SRCREV_compress="255a13270e4608f2f2b97166d92f297de906c951" | 383 | SRCREV_compress="255a13270e4608f2f2b97166d92f297de906c951" |
384 | SRC_URI += "git://github.com/klauspost/compress;name=compress;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/klauspost/compress" | 384 | SRC_URI += "git://github.com/klauspost/compress;name=compress;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/klauspost/compress" |
385 | 385 | ||
386 | # github.com/klauspost/cpuid/v2 v2.2.3 | 386 | # github.com/klauspost/cpuid/v2 v2.2.3 |
387 | # [1] git ls-remote https://github.com/klauspost/cpuid 3c0ec06adeb260a595bfb1dff123742e8bac34fb | 387 | # [1] git ls-remote https://github.com/klauspost/cpuid 3c0ec06adeb260a595bfb1dff123742e8bac34fb |
388 | SRCREV_cpuid-v2="3c0ec06adeb260a595bfb1dff123742e8bac34fb" | 388 | SRCREV_cpuid-v2="3c0ec06adeb260a595bfb1dff123742e8bac34fb" |
389 | SRC_URI += "git://github.com/klauspost/cpuid;name=cpuid-v2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/klauspost/cpuid/v2" | 389 | SRC_URI += "git://github.com/klauspost/cpuid;name=cpuid-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/klauspost/cpuid/v2" |
390 | 390 | ||
391 | # github.com/mattn/go-colorable v0.1.13 | 391 | # github.com/mattn/go-colorable v0.1.13 |
392 | # [1] git ls-remote https://github.com/mattn/go-colorable 11a925cff3d38c293ddc8c05a16b504e3e2c63be | 392 | # [1] git ls-remote https://github.com/mattn/go-colorable 11a925cff3d38c293ddc8c05a16b504e3e2c63be |
393 | SRCREV_go-colorable="11a925cff3d38c293ddc8c05a16b504e3e2c63be" | 393 | SRCREV_go-colorable="11a925cff3d38c293ddc8c05a16b504e3e2c63be" |
394 | SRC_URI += "git://github.com/mattn/go-colorable;name=go-colorable;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mattn/go-colorable" | 394 | SRC_URI += "git://github.com/mattn/go-colorable;name=go-colorable;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mattn/go-colorable" |
395 | 395 | ||
396 | # github.com/moby/sys/mountinfo v0.7.1 | 396 | # github.com/moby/sys/mountinfo v0.7.1 |
397 | # [1] git ls-remote https://github.com/moby/sys 4950d7687cf6c9b138dc0e18c2c7351e1f6ed497 | 397 | # [1] git ls-remote https://github.com/moby/sys 4950d7687cf6c9b138dc0e18c2c7351e1f6ed497 |
398 | SRCREV_mountinfo="4950d7687cf6c9b138dc0e18c2c7351e1f6ed497" | 398 | SRCREV_mountinfo="4950d7687cf6c9b138dc0e18c2c7351e1f6ed497" |
399 | SRC_URI += "git://github.com/moby/sys;name=mountinfo;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/mountinfo" | 399 | SRC_URI += "git://github.com/moby/sys;name=mountinfo;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/mountinfo" |
400 | 400 | ||
401 | # github.com/containerd/imgcrypt v1.1.9 | 401 | # github.com/containerd/imgcrypt v1.1.9 |
402 | # [1] git ls-remote https://github.com/containerd/imgcrypt 90513b079771363133611a91de350ea932e09b26 | 402 | # [1] git ls-remote https://github.com/containerd/imgcrypt 90513b079771363133611a91de350ea932e09b26 |
403 | SRCREV_imgcrypt="90513b079771363133611a91de350ea932e09b26" | 403 | SRCREV_imgcrypt="90513b079771363133611a91de350ea932e09b26" |
404 | SRC_URI += "git://github.com/containerd/imgcrypt;name=imgcrypt;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/imgcrypt" | 404 | SRC_URI += "git://github.com/containerd/imgcrypt;name=imgcrypt;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/imgcrypt" |
405 | 405 | ||
406 | # github.com/muesli/cancelreader v0.2.2 | 406 | # github.com/muesli/cancelreader v0.2.2 |
407 | # [1] git ls-remote https://github.com/muesli/cancelreader d11f1e77abf7f8d69d81553ccaaf0b81163541a6 | 407 | # [1] git ls-remote https://github.com/muesli/cancelreader d11f1e77abf7f8d69d81553ccaaf0b81163541a6 |
408 | SRCREV_cancelreader="d11f1e77abf7f8d69d81553ccaaf0b81163541a6" | 408 | SRCREV_cancelreader="d11f1e77abf7f8d69d81553ccaaf0b81163541a6" |
409 | SRC_URI += "git://github.com/muesli/cancelreader;name=cancelreader;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/muesli/cancelreader" | 409 | SRC_URI += "git://github.com/muesli/cancelreader;name=cancelreader;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/muesli/cancelreader" |
410 | 410 | ||
411 | # github.com/vishvananda/netlink v1.2.1-beta.2 | 411 | # github.com/vishvananda/netlink v1.2.1-beta.2 |
412 | # [1] git ls-remote https://github.com/vishvananda/netlink 5e915e0149386ce3d02379ff93f4c0a5601779d5 | 412 | # [1] git ls-remote https://github.com/vishvananda/netlink 5e915e0149386ce3d02379ff93f4c0a5601779d5 |
413 | SRCREV_netlink="5e915e0149386ce3d02379ff93f4c0a5601779d5" | 413 | SRCREV_netlink="5e915e0149386ce3d02379ff93f4c0a5601779d5" |
414 | SRC_URI += "git://github.com/vishvananda/netlink;name=netlink;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/vishvananda/netlink" | 414 | SRC_URI += "git://github.com/vishvananda/netlink;name=netlink;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/vishvananda/netlink" |
415 | 415 | ||
416 | # github.com/containers/ocicrypt v1.1.9 | 416 | # github.com/containers/ocicrypt v1.1.9 |
417 | # [1] git ls-remote https://github.com/containers/ocicrypt c0e1fd5b82bc57acdb1a241dc602534eea42edb6 | 417 | # [1] git ls-remote https://github.com/containers/ocicrypt c0e1fd5b82bc57acdb1a241dc602534eea42edb6 |
418 | SRCREV_ocicrypt="c0e1fd5b82bc57acdb1a241dc602534eea42edb6" | 418 | SRCREV_ocicrypt="c0e1fd5b82bc57acdb1a241dc602534eea42edb6" |
419 | SRC_URI += "git://github.com/containers/ocicrypt;name=ocicrypt;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containers/ocicrypt" | 419 | SRC_URI += "git://github.com/containers/ocicrypt;name=ocicrypt;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containers/ocicrypt" |
420 | 420 | ||
421 | # github.com/mattn/go-shellwords v1.0.12 | 421 | # github.com/mattn/go-shellwords v1.0.12 |
422 | # [1] git ls-remote https://github.com/mattn/go-shellwords 973b9d5391598d4ee601db46fa32f6e186a356ac | 422 | # [1] git ls-remote https://github.com/mattn/go-shellwords 973b9d5391598d4ee601db46fa32f6e186a356ac |
423 | SRCREV_go-shellwords="973b9d5391598d4ee601db46fa32f6e186a356ac" | 423 | SRCREV_go-shellwords="973b9d5391598d4ee601db46fa32f6e186a356ac" |
424 | SRC_URI += "git://github.com/mattn/go-shellwords;name=go-shellwords;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mattn/go-shellwords" | 424 | SRC_URI += "git://github.com/mattn/go-shellwords;name=go-shellwords;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mattn/go-shellwords" |
425 | 425 | ||
426 | # github.com/moby/sys/sequential v0.5.0 | 426 | # github.com/moby/sys/sequential v0.5.0 |
427 | # [1] git ls-remote https://github.com/moby/sys b22ba8a69b306f0b4adbbe2a529457e6283ed9f7 | 427 | # [1] git ls-remote https://github.com/moby/sys b22ba8a69b306f0b4adbbe2a529457e6283ed9f7 |
428 | SRCREV_sequential="b22ba8a69b306f0b4adbbe2a529457e6283ed9f7" | 428 | SRCREV_sequential="b22ba8a69b306f0b4adbbe2a529457e6283ed9f7" |
429 | SRC_URI += "git://github.com/moby/sys;name=sequential;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/sequential" | 429 | SRC_URI += "git://github.com/moby/sys;name=sequential;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/sequential" |
430 | 430 | ||
431 | # go.opentelemetry.io/otel/trace v1.19.0 | 431 | # go.opentelemetry.io/otel/trace v1.19.0 |
432 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 60666c554065ac4da502fe28943eea4b938ab479 | 432 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 60666c554065ac4da502fe28943eea4b938ab479 |
433 | SRCREV_trace="60666c554065ac4da502fe28943eea4b938ab479" | 433 | SRCREV_trace="60666c554065ac4da502fe28943eea4b938ab479" |
434 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=trace;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.opentelemetry.io/otel/trace" | 434 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=trace;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/trace" |
435 | 435 | ||
436 | # github.com/containerd/platforms v0.1.1 | 436 | # github.com/containerd/platforms v0.1.1 |
437 | # [1] git ls-remote https://github.com/containerd/platforms db76a43eaea9a004a5f240620f966b0081123884 | 437 | # [1] git ls-remote https://github.com/containerd/platforms db76a43eaea9a004a5f240620f966b0081123884 |
438 | SRCREV_platforms="db76a43eaea9a004a5f240620f966b0081123884" | 438 | SRCREV_platforms="db76a43eaea9a004a5f240620f966b0081123884" |
439 | SRC_URI += "git://github.com/containerd/platforms;name=platforms;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/platforms" | 439 | SRC_URI += "git://github.com/containerd/platforms;name=platforms;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/platforms" |
440 | 440 | ||
441 | # github.com/pelletier/go-toml/v2 v2.1.1 | 441 | # github.com/pelletier/go-toml/v2 v2.1.1 |
442 | # [1] git ls-remote https://github.com/pelletier/go-toml 34765b4a9e937ab927b5bd57231e98c68fe13109 | 442 | # [1] git ls-remote https://github.com/pelletier/go-toml 34765b4a9e937ab927b5bd57231e98c68fe13109 |
443 | SRCREV_go-toml-v2="34765b4a9e937ab927b5bd57231e98c68fe13109" | 443 | SRCREV_go-toml-v2="34765b4a9e937ab927b5bd57231e98c68fe13109" |
444 | SRC_URI += "git://github.com/pelletier/go-toml;name=go-toml-v2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/pelletier/go-toml/v2" | 444 | SRC_URI += "git://github.com/pelletier/go-toml;name=go-toml-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/pelletier/go-toml/v2" |
445 | 445 | ||
446 | # github.com/mitchellh/go-homedir v1.1.0 | 446 | # github.com/mitchellh/go-homedir v1.1.0 |
447 | # [1] git ls-remote https://github.com/mitchellh/go-homedir af06845cf3004701891bf4fdb884bfe4920b3727 | 447 | # [1] git ls-remote https://github.com/mitchellh/go-homedir af06845cf3004701891bf4fdb884bfe4920b3727 |
448 | SRCREV_go-homedir="af06845cf3004701891bf4fdb884bfe4920b3727" | 448 | SRCREV_go-homedir="af06845cf3004701891bf4fdb884bfe4920b3727" |
449 | SRC_URI += "git://github.com/mitchellh/go-homedir;name=go-homedir;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mitchellh/go-homedir" | 449 | SRC_URI += "git://github.com/mitchellh/go-homedir;name=go-homedir;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mitchellh/go-homedir" |
450 | 450 | ||
451 | # github.com/xeipuuv/gojsonschema v1.2.0 | 451 | # github.com/xeipuuv/gojsonschema v1.2.0 |
452 | # [1] git ls-remote https://github.com/xeipuuv/gojsonschema 82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927 | 452 | # [1] git ls-remote https://github.com/xeipuuv/gojsonschema 82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927 |
453 | SRCREV_gojsonschema="82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927" | 453 | SRCREV_gojsonschema="82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927" |
454 | SRC_URI += "git://github.com/xeipuuv/gojsonschema;name=gojsonschema;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonschema" | 454 | SRC_URI += "git://github.com/xeipuuv/gojsonschema;name=gojsonschema;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/xeipuuv/gojsonschema" |
455 | 455 | ||
456 | # go.opentelemetry.io/otel/metric v1.19.0 | 456 | # go.opentelemetry.io/otel/metric v1.19.0 |
457 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 60666c554065ac4da502fe28943eea4b938ab479 | 457 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 60666c554065ac4da502fe28943eea4b938ab479 |
458 | SRCREV_metric="60666c554065ac4da502fe28943eea4b938ab479" | 458 | SRCREV_metric="60666c554065ac4da502fe28943eea4b938ab479" |
459 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=metric;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.opentelemetry.io/otel/metric" | 459 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=metric;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/metric" |
460 | 460 | ||
461 | # github.com/Masterminds/semver/v3 v3.2.1 | 461 | # github.com/Masterminds/semver/v3 v3.2.1 |
462 | # [1] git ls-remote https://github.com/Masterminds/semver e06051f8fcc4c8b4a4990c337b9862a2448722e5 | 462 | # [1] git ls-remote https://github.com/Masterminds/semver e06051f8fcc4c8b4a4990c337b9862a2448722e5 |
463 | SRCREV_v3="e06051f8fcc4c8b4a4990c337b9862a2448722e5" | 463 | SRCREV_v3="e06051f8fcc4c8b4a4990c337b9862a2448722e5" |
464 | SRC_URI += "git://github.com/Masterminds/semver;name=v3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/Masterminds/semver/v3" | 464 | SRC_URI += "git://github.com/Masterminds/semver;name=v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/Masterminds/semver/v3" |
465 | 465 | ||
466 | # github.com/containerd/cgroups/v3 v3.0.3 | 466 | # github.com/containerd/cgroups/v3 v3.0.3 |
467 | # [1] git ls-remote https://github.com/containerd/cgroups 1e056883d58ac58daf7566065a46016b4532f35c | 467 | # [1] git ls-remote https://github.com/containerd/cgroups 1e056883d58ac58daf7566065a46016b4532f35c |
468 | SRCREV_cgroups-v3="1e056883d58ac58daf7566065a46016b4532f35c" | 468 | SRCREV_cgroups-v3="1e056883d58ac58daf7566065a46016b4532f35c" |
469 | SRC_URI += "git://github.com/containerd/cgroups;name=cgroups-v3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/cgroups/v3" | 469 | SRC_URI += "git://github.com/containerd/cgroups;name=cgroups-v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/cgroups/v3" |
470 | 470 | ||
471 | # github.com/containerd/containerd v1.7.13 | 471 | # github.com/containerd/containerd v1.7.13 |
472 | # [1] git ls-remote https://github.com/containerd/containerd 7c3aca7a610df76212171d200ca3811ff6096eb8 | 472 | # [1] git ls-remote https://github.com/containerd/containerd 7c3aca7a610df76212171d200ca3811ff6096eb8 |
473 | SRCREV_containerd="7c3aca7a610df76212171d200ca3811ff6096eb8" | 473 | SRCREV_containerd="7c3aca7a610df76212171d200ca3811ff6096eb8" |
474 | SRC_URI += "git://github.com/containerd/containerd;name=containerd;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/containerd" | 474 | SRC_URI += "git://github.com/containerd/containerd;name=containerd;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/containerd" |
475 | 475 | ||
476 | # github.com/containerd/continuity v0.4.3 | 476 | # github.com/containerd/continuity v0.4.3 |
477 | # [1] git ls-remote https://github.com/containerd/continuity 1743d9104d944131cdedaba33a59d2f9bd80a6f2 | 477 | # [1] git ls-remote https://github.com/containerd/continuity 1743d9104d944131cdedaba33a59d2f9bd80a6f2 |
478 | SRCREV_continuity="1743d9104d944131cdedaba33a59d2f9bd80a6f2" | 478 | SRCREV_continuity="1743d9104d944131cdedaba33a59d2f9bd80a6f2" |
479 | SRC_URI += "git://github.com/containerd/continuity;name=continuity;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/continuity" | 479 | SRC_URI += "git://github.com/containerd/continuity;name=continuity;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/continuity" |
480 | 480 | ||
481 | # github.com/containerd/typeurl/v2 v2.1.1 | 481 | # github.com/containerd/typeurl/v2 v2.1.1 |
482 | # [1] git ls-remote https://github.com/containerd/typeurl 7ef6316b771f959cbb208b229e3423a466947df3 | 482 | # [1] git ls-remote https://github.com/containerd/typeurl 7ef6316b771f959cbb208b229e3423a466947df3 |
483 | SRCREV_v2="7ef6316b771f959cbb208b229e3423a466947df3" | 483 | SRCREV_v2="7ef6316b771f959cbb208b229e3423a466947df3" |
484 | SRC_URI += "git://github.com/containerd/typeurl;name=v2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/typeurl/v2" | 484 | SRC_URI += "git://github.com/containerd/typeurl;name=v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/typeurl/v2" |
485 | 485 | ||
486 | # github.com/coreos/go-systemd/v22 v22.5.0 | 486 | # github.com/coreos/go-systemd/v22 v22.5.0 |
487 | # [1] git ls-remote https://github.com/coreos/go-systemd d5623bf85e8e73ae6352f78ee6b55a287619dd4e | 487 | # [1] git ls-remote https://github.com/coreos/go-systemd d5623bf85e8e73ae6352f78ee6b55a287619dd4e |
488 | SRCREV_v22="d5623bf85e8e73ae6352f78ee6b55a287619dd4e" | 488 | SRCREV_v22="d5623bf85e8e73ae6352f78ee6b55a287619dd4e" |
489 | SRC_URI += "git://github.com/coreos/go-systemd;name=v22;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/coreos/go-systemd/v22" | 489 | SRC_URI += "git://github.com/coreos/go-systemd;name=v22;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/coreos/go-systemd/v22" |
490 | 490 | ||
491 | # github.com/docker/go-connections v0.5.0 | 491 | # github.com/docker/go-connections v0.5.0 |
492 | # [1] git ls-remote https://github.com/docker/go-connections fa09c952e3eadbffaf8afc5b8a1667158ba38ace | 492 | # [1] git ls-remote https://github.com/docker/go-connections fa09c952e3eadbffaf8afc5b8a1667158ba38ace |
493 | SRCREV_go-connections="fa09c952e3eadbffaf8afc5b8a1667158ba38ace" | 493 | SRCREV_go-connections="fa09c952e3eadbffaf8afc5b8a1667158ba38ace" |
494 | SRC_URI += "git://github.com/docker/go-connections;name=go-connections;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/go-connections" | 494 | SRC_URI += "git://github.com/docker/go-connections;name=go-connections;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/go-connections" |
495 | 495 | ||
496 | # github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb | 496 | # github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb |
497 | # [1] git ls-remote https://github.com/xeipuuv/gojsonpointer 02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb | 497 | # [1] git ls-remote https://github.com/xeipuuv/gojsonpointer 02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb |
498 | SRCREV_gojsonpointer="02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb" | 498 | SRCREV_gojsonpointer="02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb" |
499 | SRC_URI += "git://github.com/xeipuuv/gojsonpointer;name=gojsonpointer;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonpointer" | 499 | SRC_URI += "git://github.com/xeipuuv/gojsonpointer;name=gojsonpointer;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/xeipuuv/gojsonpointer" |
500 | 500 | ||
501 | # github.com/fahedouch/go-logrotate v0.2.0 | 501 | # github.com/fahedouch/go-logrotate v0.2.0 |
502 | # [1] git ls-remote https://github.com/fahedouch/go-logrotate 6b28a8e09e886889e0bc4347e66bd4d4d82f5b10 | 502 | # [1] git ls-remote https://github.com/fahedouch/go-logrotate 6b28a8e09e886889e0bc4347e66bd4d4d82f5b10 |
503 | SRCREV_go-logrotate="6b28a8e09e886889e0bc4347e66bd4d4d82f5b10" | 503 | SRCREV_go-logrotate="6b28a8e09e886889e0bc4347e66bd4d4d82f5b10" |
504 | SRC_URI += "git://github.com/fahedouch/go-logrotate;name=go-logrotate;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/fahedouch/go-logrotate" | 504 | SRC_URI += "git://github.com/fahedouch/go-logrotate;name=go-logrotate;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/fahedouch/go-logrotate" |
505 | 505 | ||
506 | # github.com/mitchellh/mapstructure v1.5.0 | 506 | # github.com/mitchellh/mapstructure v1.5.0 |
507 | # [1] git ls-remote https://github.com/mitchellh/mapstructure ab69d8d93410fce4361f4912bb1ff88110a81311 | 507 | # [1] git ls-remote https://github.com/mitchellh/mapstructure ab69d8d93410fce4361f4912bb1ff88110a81311 |
508 | SRCREV_mapstructure="ab69d8d93410fce4361f4912bb1ff88110a81311" | 508 | SRCREV_mapstructure="ab69d8d93410fce4361f4912bb1ff88110a81311" |
509 | SRC_URI += "git://github.com/mitchellh/mapstructure;name=mapstructure;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mitchellh/mapstructure" | 509 | SRC_URI += "git://github.com/mitchellh/mapstructure;name=mapstructure;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mitchellh/mapstructure" |
510 | 510 | ||
511 | # github.com/distribution/reference v0.5.0 | 511 | # github.com/distribution/reference v0.5.0 |
512 | # [1] git ls-remote https://github.com/distribution/reference 49c28499d219290c3226822e9cfcd4ede6d75379 | 512 | # [1] git ls-remote https://github.com/distribution/reference 49c28499d219290c3226822e9cfcd4ede6d75379 |
513 | SRCREV_reference="49c28499d219290c3226822e9cfcd4ede6d75379" | 513 | SRCREV_reference="49c28499d219290c3226822e9cfcd4ede6d75379" |
514 | SRC_URI += "git://github.com/distribution/reference;name=reference;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/distribution/reference" | 514 | SRC_URI += "git://github.com/distribution/reference;name=reference;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/distribution/reference" |
515 | 515 | ||
516 | # github.com/multiformats/go-base32 v0.1.0 | 516 | # github.com/multiformats/go-base32 v0.1.0 |
517 | # [1] git ls-remote https://github.com/multiformats/go-base32 a16b66327f327428b32b919939b8c93482507e1f | 517 | # [1] git ls-remote https://github.com/multiformats/go-base32 a16b66327f327428b32b919939b8c93482507e1f |
518 | SRCREV_go-base32="a16b66327f327428b32b919939b8c93482507e1f" | 518 | SRCREV_go-base32="a16b66327f327428b32b919939b8c93482507e1f" |
519 | SRC_URI += "git://github.com/multiformats/go-base32;name=go-base32;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/multiformats/go-base32" | 519 | SRC_URI += "git://github.com/multiformats/go-base32;name=go-base32;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/multiformats/go-base32" |
520 | 520 | ||
521 | # github.com/multiformats/go-base36 v0.1.0 | 521 | # github.com/multiformats/go-base36 v0.1.0 |
522 | # [1] git ls-remote https://github.com/multiformats/go-base36 dc4afa6ad3b0720f4a1b282776db2a59ca9c8be7 | 522 | # [1] git ls-remote https://github.com/multiformats/go-base36 dc4afa6ad3b0720f4a1b282776db2a59ca9c8be7 |
523 | SRCREV_go-base36="dc4afa6ad3b0720f4a1b282776db2a59ca9c8be7" | 523 | SRCREV_go-base36="dc4afa6ad3b0720f4a1b282776db2a59ca9c8be7" |
524 | SRC_URI += "git://github.com/multiformats/go-base36;name=go-base36;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/multiformats/go-base36" | 524 | SRC_URI += "git://github.com/multiformats/go-base36;name=go-base36;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/multiformats/go-base36" |
525 | 525 | ||
526 | # github.com/multiformats/go-varint v0.0.6 | 526 | # github.com/multiformats/go-varint v0.0.6 |
527 | # [1] git ls-remote https://github.com/multiformats/go-varint a3ded45ab16ca9f2f2a516e68053ffa7ebd9bb0e | 527 | # [1] git ls-remote https://github.com/multiformats/go-varint a3ded45ab16ca9f2f2a516e68053ffa7ebd9bb0e |
528 | SRCREV_go-varint="a3ded45ab16ca9f2f2a516e68053ffa7ebd9bb0e" | 528 | SRCREV_go-varint="a3ded45ab16ca9f2f2a516e68053ffa7ebd9bb0e" |
529 | SRC_URI += "git://github.com/multiformats/go-varint;name=go-varint;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/multiformats/go-varint" | 529 | SRC_URI += "git://github.com/multiformats/go-varint;name=go-varint;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/multiformats/go-varint" |
530 | 530 | ||
531 | # github.com/opencontainers/selinux v1.11.0 | 531 | # github.com/opencontainers/selinux v1.11.0 |
532 | # [1] git ls-remote https://github.com/opencontainers/selinux b68c45eb2df48c6b0c949901ccda90c8e65fe677 | 532 | # [1] git ls-remote https://github.com/opencontainers/selinux b68c45eb2df48c6b0c949901ccda90c8e65fe677 |
533 | SRCREV_selinux="b68c45eb2df48c6b0c949901ccda90c8e65fe677" | 533 | SRCREV_selinux="b68c45eb2df48c6b0c949901ccda90c8e65fe677" |
534 | SRC_URI += "git://github.com/opencontainers/selinux;name=selinux;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/opencontainers/selinux" | 534 | SRC_URI += "git://github.com/opencontainers/selinux;name=selinux;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/opencontainers/selinux" |
535 | 535 | ||
536 | # github.com/compose-spec/compose-go v1.20.2 | 536 | # github.com/compose-spec/compose-go v1.20.2 |
537 | # [1] git ls-remote https://github.com/compose-spec/compose-go e390b9774ca100e1d75c8bc075054502783b48b8 | 537 | # [1] git ls-remote https://github.com/compose-spec/compose-go e390b9774ca100e1d75c8bc075054502783b48b8 |
538 | SRCREV_compose-go="e390b9774ca100e1d75c8bc075054502783b48b8" | 538 | SRCREV_compose-go="e390b9774ca100e1d75c8bc075054502783b48b8" |
539 | SRC_URI += "git://github.com/compose-spec/compose-go;name=compose-go;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/compose-spec/compose-go" | 539 | SRC_URI += "git://github.com/compose-spec/compose-go;name=compose-go;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/compose-spec/compose-go" |
540 | 540 | ||
541 | # github.com/containernetworking/cni v1.1.2 | 541 | # github.com/containernetworking/cni v1.1.2 |
542 | # [1] git ls-remote https://github.com/containernetworking/cni 3363d143688bb83ca18489ac8b9dc204c1d49c4a | 542 | # [1] git ls-remote https://github.com/containernetworking/cni 3363d143688bb83ca18489ac8b9dc204c1d49c4a |
543 | SRCREV_cni="3363d143688bb83ca18489ac8b9dc204c1d49c4a" | 543 | SRCREV_cni="3363d143688bb83ca18489ac8b9dc204c1d49c4a" |
544 | SRC_URI += "git://github.com/containernetworking/cni;name=cni;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containernetworking/cni" | 544 | SRC_URI += "git://github.com/containernetworking/cni;name=cni;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containernetworking/cni" |
545 | 545 | ||
546 | # github.com/hashicorp/go-multierror v1.1.1 | 546 | # github.com/hashicorp/go-multierror v1.1.1 |
547 | # [1] git ls-remote https://github.com/hashicorp/go-multierror 9974e9ec57696378079ecc3accd3d6f29401b3a0 | 547 | # [1] git ls-remote https://github.com/hashicorp/go-multierror 9974e9ec57696378079ecc3accd3d6f29401b3a0 |
548 | SRCREV_go-multierror="9974e9ec57696378079ecc3accd3d6f29401b3a0" | 548 | SRCREV_go-multierror="9974e9ec57696378079ecc3accd3d6f29401b3a0" |
549 | SRC_URI += "git://github.com/hashicorp/go-multierror;name=go-multierror;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/hashicorp/go-multierror" | 549 | SRC_URI += "git://github.com/hashicorp/go-multierror;name=go-multierror;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/hashicorp/go-multierror" |
550 | 550 | ||
551 | # github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 | 551 | # github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 |
552 | # [1] git ls-remote https://github.com/xeipuuv/gojsonreference bd5ef7bd5415a7ac448318e64f11a24cd21e594b | 552 | # [1] git ls-remote https://github.com/xeipuuv/gojsonreference bd5ef7bd5415a7ac448318e64f11a24cd21e594b |
553 | SRCREV_gojsonreference="bd5ef7bd5415a7ac448318e64f11a24cd21e594b" | 553 | SRCREV_gojsonreference="bd5ef7bd5415a7ac448318e64f11a24cd21e594b" |
554 | SRC_URI += "git://github.com/xeipuuv/gojsonreference;name=gojsonreference;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonreference" | 554 | SRC_URI += "git://github.com/xeipuuv/gojsonreference;name=gojsonreference;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/xeipuuv/gojsonreference" |
555 | 555 | ||
556 | # github.com/awslabs/soci-snapshotter v0.4.1 | 556 | # github.com/awslabs/soci-snapshotter v0.4.1 |
557 | # [1] git ls-remote https://github.com/awslabs/soci-snapshotter 34e069d90460f422c549b3a8994aa26820cf6544 | 557 | # [1] git ls-remote https://github.com/awslabs/soci-snapshotter 34e069d90460f422c549b3a8994aa26820cf6544 |
558 | SRCREV_soci-snapshotter="34e069d90460f422c549b3a8994aa26820cf6544" | 558 | SRCREV_soci-snapshotter="34e069d90460f422c549b3a8994aa26820cf6544" |
559 | SRC_URI += "git://github.com/awslabs/soci-snapshotter;name=soci-snapshotter;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/awslabs/soci-snapshotter" | 559 | SRC_URI += "git://github.com/awslabs/soci-snapshotter;name=soci-snapshotter;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/awslabs/soci-snapshotter" |
560 | 560 | ||
561 | # github.com/opencontainers/go-digest v1.0.0 | 561 | # github.com/opencontainers/go-digest v1.0.0 |
562 | # [1] git ls-remote https://github.com/opencontainers/go-digest ea51bea511f75cfa3ef6098cc253c5c3609b037a | 562 | # [1] git ls-remote https://github.com/opencontainers/go-digest ea51bea511f75cfa3ef6098cc253c5c3609b037a |
563 | SRCREV_go-digest="ea51bea511f75cfa3ef6098cc253c5c3609b037a" | 563 | SRCREV_go-digest="ea51bea511f75cfa3ef6098cc253c5c3609b037a" |
564 | SRC_URI += "git://github.com/opencontainers/go-digest;name=go-digest;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/opencontainers/go-digest" | 564 | SRC_URI += "git://github.com/opencontainers/go-digest;name=go-digest;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/opencontainers/go-digest" |
565 | 565 | ||
566 | # github.com/opencontainers/image-spec v1.1.0 | 566 | # github.com/opencontainers/image-spec v1.1.0 |
567 | # [1] git ls-remote https://github.com/opencontainers/image-spec e7f7c0ca69b21688c3cea7c87a04e4503e6099e2 | 567 | # [1] git ls-remote https://github.com/opencontainers/image-spec e7f7c0ca69b21688c3cea7c87a04e4503e6099e2 |
568 | SRCREV_image-spec="e7f7c0ca69b21688c3cea7c87a04e4503e6099e2" | 568 | SRCREV_image-spec="e7f7c0ca69b21688c3cea7c87a04e4503e6099e2" |
569 | SRC_URI += "git://github.com/opencontainers/image-spec;name=image-spec;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/opencontainers/image-spec" | 569 | SRC_URI += "git://github.com/opencontainers/image-spec;name=image-spec;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/opencontainers/image-spec" |
570 | 570 | ||
571 | # github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 | 571 | # github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 |
572 | # [1] git ls-remote https://github.com/AdaLogics/go-fuzz-headers ced1acdcaa24dc39c01b039fc37576c395f506cf | 572 | # [1] git ls-remote https://github.com/AdaLogics/go-fuzz-headers ced1acdcaa24dc39c01b039fc37576c395f506cf |
573 | SRCREV_go-fuzz-headers="ced1acdcaa24dc39c01b039fc37576c395f506cf" | 573 | SRCREV_go-fuzz-headers="ced1acdcaa24dc39c01b039fc37576c395f506cf" |
574 | SRC_URI += "git://github.com/AdaLogics/go-fuzz-headers;name=go-fuzz-headers;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/AdaLogics/go-fuzz-headers" | 574 | SRC_URI += "git://github.com/AdaLogics/go-fuzz-headers;name=go-fuzz-headers;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/AdaLogics/go-fuzz-headers" |
575 | 575 | ||
576 | # github.com/inconshreveable/mousetrap v1.1.0 | 576 | # github.com/inconshreveable/mousetrap v1.1.0 |
577 | # [1] git ls-remote https://github.com/inconshreveable/mousetrap 4e8053ee7ef85a6bd26368364a6d27f1641c1d21 | 577 | # [1] git ls-remote https://github.com/inconshreveable/mousetrap 4e8053ee7ef85a6bd26368364a6d27f1641c1d21 |
578 | SRCREV_mousetrap="4e8053ee7ef85a6bd26368364a6d27f1641c1d21" | 578 | SRCREV_mousetrap="4e8053ee7ef85a6bd26368364a6d27f1641c1d21" |
579 | SRC_URI += "git://github.com/inconshreveable/mousetrap;name=mousetrap;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/inconshreveable/mousetrap" | 579 | SRC_URI += "git://github.com/inconshreveable/mousetrap;name=mousetrap;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/inconshreveable/mousetrap" |
580 | 580 | ||
581 | # github.com/multiformats/go-multiaddr v0.12.0 | 581 | # github.com/multiformats/go-multiaddr v0.12.0 |
582 | # [1] git ls-remote https://github.com/multiformats/go-multiaddr 5dd793c6fc4935fad347429a48a168acc8073474 | 582 | # [1] git ls-remote https://github.com/multiformats/go-multiaddr 5dd793c6fc4935fad347429a48a168acc8073474 |
583 | SRCREV_go-multiaddr="5dd793c6fc4935fad347429a48a168acc8073474" | 583 | SRCREV_go-multiaddr="5dd793c6fc4935fad347429a48a168acc8073474" |
584 | SRC_URI += "git://github.com/multiformats/go-multiaddr;name=go-multiaddr;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/multiformats/go-multiaddr" | 584 | SRC_URI += "git://github.com/multiformats/go-multiaddr;name=go-multiaddr;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/multiformats/go-multiaddr" |
585 | 585 | ||
586 | # github.com/multiformats/go-multibase v0.1.1 | 586 | # github.com/multiformats/go-multibase v0.1.1 |
587 | # [1] git ls-remote https://github.com/multiformats/go-multibase c1bc15b22eedb45f9205f3b60ce5fcb8fca93e08 | 587 | # [1] git ls-remote https://github.com/multiformats/go-multibase c1bc15b22eedb45f9205f3b60ce5fcb8fca93e08 |
588 | SRCREV_go-multibase="c1bc15b22eedb45f9205f3b60ce5fcb8fca93e08" | 588 | SRCREV_go-multibase="c1bc15b22eedb45f9205f3b60ce5fcb8fca93e08" |
589 | SRC_URI += "git://github.com/multiformats/go-multibase;name=go-multibase;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/multiformats/go-multibase" | 589 | SRC_URI += "git://github.com/multiformats/go-multibase;name=go-multibase;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/multiformats/go-multibase" |
590 | 590 | ||
591 | # github.com/multiformats/go-multihash v0.2.1 | 591 | # github.com/multiformats/go-multihash v0.2.1 |
592 | # [1] git ls-remote https://github.com/multiformats/go-multihash 16974ad98ab1fb19eb756919f55373b39cc80bec | 592 | # [1] git ls-remote https://github.com/multiformats/go-multihash 16974ad98ab1fb19eb756919f55373b39cc80bec |
593 | SRCREV_go-multihash="16974ad98ab1fb19eb756919f55373b39cc80bec" | 593 | SRCREV_go-multihash="16974ad98ab1fb19eb756919f55373b39cc80bec" |
594 | SRC_URI += "git://github.com/multiformats/go-multihash;name=go-multihash;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/multiformats/go-multihash" | 594 | SRC_URI += "git://github.com/multiformats/go-multihash;name=go-multihash;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/multiformats/go-multihash" |
595 | 595 | ||
596 | # github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 | 596 | # github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 |
597 | # [1] git ls-remote https://github.com/stefanberger/go-pkcs11uri 78d3cae3a9805d89aa4fa80a362ca944c89a1b99 | 597 | # [1] git ls-remote https://github.com/stefanberger/go-pkcs11uri 78d3cae3a9805d89aa4fa80a362ca944c89a1b99 |
598 | SRCREV_go-pkcs11uri="78d3cae3a9805d89aa4fa80a362ca944c89a1b99" | 598 | SRCREV_go-pkcs11uri="78d3cae3a9805d89aa4fa80a362ca944c89a1b99" |
599 | SRC_URI += "git://github.com/stefanberger/go-pkcs11uri;name=go-pkcs11uri;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/stefanberger/go-pkcs11uri" | 599 | SRC_URI += "git://github.com/stefanberger/go-pkcs11uri;name=go-pkcs11uri;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/stefanberger/go-pkcs11uri" |
600 | 600 | ||
601 | # github.com/cyphar/filepath-securejoin v0.2.4 | 601 | # github.com/cyphar/filepath-securejoin v0.2.4 |
602 | # [1] git ls-remote https://github.com/cyphar/filepath-securejoin 2710d06c5b4ba3168beffa0689798d2db12e8ac4 | 602 | # [1] git ls-remote https://github.com/cyphar/filepath-securejoin 2710d06c5b4ba3168beffa0689798d2db12e8ac4 |
603 | SRCREV_filepath-securejoin="2710d06c5b4ba3168beffa0689798d2db12e8ac4" | 603 | SRCREV_filepath-securejoin="2710d06c5b4ba3168beffa0689798d2db12e8ac4" |
604 | SRC_URI += "git://github.com/cyphar/filepath-securejoin;name=filepath-securejoin;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cyphar/filepath-securejoin" | 604 | SRC_URI += "git://github.com/cyphar/filepath-securejoin;name=filepath-securejoin;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/cyphar/filepath-securejoin" |
605 | 605 | ||
606 | # github.com/containernetworking/plugins v1.4.0 | 606 | # github.com/containernetworking/plugins v1.4.0 |
607 | # [1] git ls-remote https://github.com/containernetworking/plugins 1fb5bf669e42cd208008e52d45b41fe2c3eb8dbc | 607 | # [1] git ls-remote https://github.com/containernetworking/plugins 1fb5bf669e42cd208008e52d45b41fe2c3eb8dbc |
608 | SRCREV_plugins="1fb5bf669e42cd208008e52d45b41fe2c3eb8dbc" | 608 | SRCREV_plugins="1fb5bf669e42cd208008e52d45b41fe2c3eb8dbc" |
609 | SRC_URI += "git://github.com/containernetworking/plugins;name=plugins;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containernetworking/plugins" | 609 | SRC_URI += "git://github.com/containernetworking/plugins;name=plugins;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containernetworking/plugins" |
610 | 610 | ||
611 | # github.com/fluent/fluent-logger-golang v1.9.0 | 611 | # github.com/fluent/fluent-logger-golang v1.9.0 |
612 | # [1] git ls-remote https://github.com/fluent/fluent-logger-golang 5538e904aeb515c10a624da620581bdf420d4b8a | 612 | # [1] git ls-remote https://github.com/fluent/fluent-logger-golang 5538e904aeb515c10a624da620581bdf420d4b8a |
613 | SRCREV_fluent-logger-golang="5538e904aeb515c10a624da620581bdf420d4b8a" | 613 | SRCREV_fluent-logger-golang="5538e904aeb515c10a624da620581bdf420d4b8a" |
614 | SRC_URI += "git://github.com/fluent/fluent-logger-golang;name=fluent-logger-golang;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/fluent/fluent-logger-golang" | 614 | SRC_URI += "git://github.com/fluent/fluent-logger-golang;name=fluent-logger-golang;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/fluent/fluent-logger-golang" |
615 | 615 | ||
616 | # github.com/opencontainers/runtime-spec v1.2.0 | 616 | # github.com/opencontainers/runtime-spec v1.2.0 |
617 | # [1] git ls-remote https://github.com/opencontainers/runtime-spec 36852b0d072a4b5da675300a9e73bc4b0853f5c6 | 617 | # [1] git ls-remote https://github.com/opencontainers/runtime-spec 36852b0d072a4b5da675300a9e73bc4b0853f5c6 |
618 | SRCREV_runtime-spec="36852b0d072a4b5da675300a9e73bc4b0853f5c6" | 618 | SRCREV_runtime-spec="36852b0d072a4b5da675300a9e73bc4b0853f5c6" |
619 | SRC_URI += "git://github.com/opencontainers/runtime-spec;name=runtime-spec;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/opencontainers/runtime-spec" | 619 | SRC_URI += "git://github.com/opencontainers/runtime-spec;name=runtime-spec;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/opencontainers/runtime-spec" |
620 | 620 | ||
621 | # github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 | 621 | # github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 |
622 | # [1] git ls-remote https://github.com/AdamKorcz/go-118-fuzz-build 8075edf89bb034603c758f28fe93143047ac5677 | 622 | # [1] git ls-remote https://github.com/AdamKorcz/go-118-fuzz-build 8075edf89bb034603c758f28fe93143047ac5677 |
623 | SRCREV_go-118-fuzz-build="8075edf89bb034603c758f28fe93143047ac5677" | 623 | SRCREV_go-118-fuzz-build="8075edf89bb034603c758f28fe93143047ac5677" |
624 | SRC_URI += "git://github.com/AdamKorcz/go-118-fuzz-build;name=go-118-fuzz-build;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/AdamKorcz/go-118-fuzz-build" | 624 | SRC_URI += "git://github.com/AdamKorcz/go-118-fuzz-build;name=go-118-fuzz-build;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/AdamKorcz/go-118-fuzz-build" |
625 | 625 | ||
626 | # github.com/containerd/nydus-snapshotter v0.13.7 | 626 | # github.com/containerd/nydus-snapshotter v0.13.7 |
627 | # [1] git ls-remote https://github.com/containerd/nydus-snapshotter 3fcac86ccfe192b34e8605de9e26b9f40150c8cb | 627 | # [1] git ls-remote https://github.com/containerd/nydus-snapshotter 3fcac86ccfe192b34e8605de9e26b9f40150c8cb |
628 | SRCREV_nydus-snapshotter="3fcac86ccfe192b34e8605de9e26b9f40150c8cb" | 628 | SRCREV_nydus-snapshotter="3fcac86ccfe192b34e8605de9e26b9f40150c8cb" |
629 | SRC_URI += "git://github.com/containerd/nydus-snapshotter;name=nydus-snapshotter;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/nydus-snapshotter" | 629 | SRC_URI += "git://github.com/containerd/nydus-snapshotter;name=nydus-snapshotter;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/nydus-snapshotter" |
630 | 630 | ||
631 | # github.com/containerd/stargz-snapshotter v0.15.1 | 631 | # github.com/containerd/stargz-snapshotter v0.15.1 |
632 | # [1] git ls-remote https://github.com/containerd/stargz-snapshotter 64ab83bd65cd4a763e262955984232cc5ddfeb3f | 632 | # [1] git ls-remote https://github.com/containerd/stargz-snapshotter 64ab83bd65cd4a763e262955984232cc5ddfeb3f |
633 | SRCREV_stargz-snapshotter="64ab83bd65cd4a763e262955984232cc5ddfeb3f" | 633 | SRCREV_stargz-snapshotter="64ab83bd65cd4a763e262955984232cc5ddfeb3f" |
634 | SRC_URI += "git://github.com/containerd/stargz-snapshotter;name=stargz-snapshotter;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/stargz-snapshotter" | 634 | SRC_URI += "git://github.com/containerd/stargz-snapshotter;name=stargz-snapshotter;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/stargz-snapshotter" |
635 | 635 | ||
636 | # google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b | 636 | # google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b |
637 | # [1] git ls-remote https://github.com/googleapis/go-genproto 49dd2c1f3d0bf0f025ccaf8eeaaad902e3c63846 | 637 | # [1] git ls-remote https://github.com/googleapis/go-genproto 49dd2c1f3d0bf0f025ccaf8eeaaad902e3c63846 |
638 | SRCREV_rpc="49dd2c1f3d0bf0f025ccaf8eeaaad902e3c63846" | 638 | SRCREV_rpc="49dd2c1f3d0bf0f025ccaf8eeaaad902e3c63846" |
639 | SRC_URI += "git://github.com/googleapis/go-genproto;name=rpc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/google.golang.org/genproto/googleapis/rpc" | 639 | SRC_URI += "git://github.com/googleapis/go-genproto;name=rpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/google.golang.org/genproto/googleapis/rpc" |
640 | 640 | ||
641 | # github.com/rootless-containers/bypass4netns v0.4.0 | 641 | # github.com/rootless-containers/bypass4netns v0.4.0 |
642 | # [1] git ls-remote https://github.com/rootless-containers/bypass4netns 3385f1f32437dba4300a2bdf1567a7ece939f9b9 | 642 | # [1] git ls-remote https://github.com/rootless-containers/bypass4netns 3385f1f32437dba4300a2bdf1567a7ece939f9b9 |
643 | SRCREV_bypass4netns="3385f1f32437dba4300a2bdf1567a7ece939f9b9" | 643 | SRCREV_bypass4netns="3385f1f32437dba4300a2bdf1567a7ece939f9b9" |
644 | SRC_URI += "git://github.com/rootless-containers/bypass4netns;name=bypass4netns;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/rootless-containers/bypass4netns" | 644 | SRC_URI += "git://github.com/rootless-containers/bypass4netns;name=bypass4netns;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/rootless-containers/bypass4netns" |
645 | 645 | ||
646 | # github.com/docker/docker-credential-helpers v0.7.0 | 646 | # github.com/docker/docker-credential-helpers v0.7.0 |
647 | # [1] git ls-remote https://github.com/docker/docker-credential-helpers ac5992b5f4756fc0398a7d0c93c609e624368bde | 647 | # [1] git ls-remote https://github.com/docker/docker-credential-helpers ac5992b5f4756fc0398a7d0c93c609e624368bde |
648 | SRCREV_docker-credential-helpers="ac5992b5f4756fc0398a7d0c93c609e624368bde" | 648 | SRCREV_docker-credential-helpers="ac5992b5f4756fc0398a7d0c93c609e624368bde" |
649 | SRC_URI += "git://github.com/docker/docker-credential-helpers;name=docker-credential-helpers;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/docker-credential-helpers" | 649 | SRC_URI += "git://github.com/docker/docker-credential-helpers;name=docker-credential-helpers;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/docker-credential-helpers" |
650 | 650 | ||
651 | # github.com/containerd/stargz-snapshotter/ipfs v0.15.1 | 651 | # github.com/containerd/stargz-snapshotter/ipfs v0.15.1 |
652 | # [1] git ls-remote https://github.com/containerd/stargz-snapshotter 64ab83bd65cd4a763e262955984232cc5ddfeb3f | 652 | # [1] git ls-remote https://github.com/containerd/stargz-snapshotter 64ab83bd65cd4a763e262955984232cc5ddfeb3f |
653 | SRCREV_ipfs="64ab83bd65cd4a763e262955984232cc5ddfeb3f" | 653 | SRCREV_ipfs="64ab83bd65cd4a763e262955984232cc5ddfeb3f" |
654 | SRC_URI += "git://github.com/containerd/stargz-snapshotter;name=ipfs;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/stargz-snapshotter/ipfs" | 654 | SRC_URI += "git://github.com/containerd/stargz-snapshotter;name=ipfs;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/stargz-snapshotter/ipfs" |
655 | 655 | ||
656 | # github.com/rootless-containers/rootlesskit/v2 v2.0.1 | 656 | # github.com/rootless-containers/rootlesskit/v2 v2.0.1 |
657 | # [1] git ls-remote https://github.com/rootless-containers/rootlesskit 5e9cd7880619a3c0a675e6a41d9562b6839066ee | 657 | # [1] git ls-remote https://github.com/rootless-containers/rootlesskit 5e9cd7880619a3c0a675e6a41d9562b6839066ee |
658 | SRCREV_rootlesskit-v2="5e9cd7880619a3c0a675e6a41d9562b6839066ee" | 658 | SRCREV_rootlesskit-v2="5e9cd7880619a3c0a675e6a41d9562b6839066ee" |
659 | SRC_URI += "git://github.com/rootless-containers/rootlesskit;name=rootlesskit-v2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/rootless-containers/rootlesskit/v2" | 659 | SRC_URI += "git://github.com/rootless-containers/rootlesskit;name=rootlesskit-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/rootless-containers/rootlesskit/v2" |
660 | 660 | ||
661 | # github.com/containerd/stargz-snapshotter/estargz v0.15.1 | 661 | # github.com/containerd/stargz-snapshotter/estargz v0.15.1 |
662 | # [1] git ls-remote https://github.com/containerd/stargz-snapshotter 64ab83bd65cd4a763e262955984232cc5ddfeb3f | 662 | # [1] git ls-remote https://github.com/containerd/stargz-snapshotter 64ab83bd65cd4a763e262955984232cc5ddfeb3f |
663 | SRCREV_estargz="64ab83bd65cd4a763e262955984232cc5ddfeb3f" | 663 | SRCREV_estargz="64ab83bd65cd4a763e262955984232cc5ddfeb3f" |
664 | SRC_URI += "git://github.com/containerd/stargz-snapshotter;name=estargz;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/stargz-snapshotter/estargz" | 664 | SRC_URI += "git://github.com/containerd/stargz-snapshotter;name=estargz;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/stargz-snapshotter/estargz" |
665 | 665 | ||
666 | # github.com/containerd/accelerated-container-image v1.0.2 | 666 | # github.com/containerd/accelerated-container-image v1.0.2 |
667 | # [1] git ls-remote https://github.com/containerd/accelerated-container-image 526b680966031d9e07371894e1de68cbf9ae6282 | 667 | # [1] git ls-remote https://github.com/containerd/accelerated-container-image 526b680966031d9e07371894e1de68cbf9ae6282 |
668 | SRCREV_accelerated-container-image="526b680966031d9e07371894e1de68cbf9ae6282" | 668 | SRCREV_accelerated-container-image="526b680966031d9e07371894e1de68cbf9ae6282" |
669 | SRC_URI += "git://github.com/containerd/accelerated-container-image;name=accelerated-container-image;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/accelerated-container-image" | 669 | SRC_URI += "git://github.com/containerd/accelerated-container-image;name=accelerated-container-image;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/accelerated-container-image" |
670 | 670 | ||
671 | # go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 | 671 | # go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 |
672 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go-contrib 9d4eb7e7706038b07d33f83f76afbe13f53d171d | 672 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go-contrib 9d4eb7e7706038b07d33f83f76afbe13f53d171d |
673 | SRCREV_otelhttp="9d4eb7e7706038b07d33f83f76afbe13f53d171d" | 673 | SRCREV_otelhttp="9d4eb7e7706038b07d33f83f76afbe13f53d171d" |
674 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;name=otelhttp;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" | 674 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;name=otelhttp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" |
675 | 675 | ||