diff options
| author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-05-12 14:29:34 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-03-21 17:31:28 -0400 |
| commit | 51013405c224522461fe007fba4ad092673e4f56 (patch) | |
| tree | 00f33e5b8893a36940f0c667737648a78b61e239 | |
| parent | 0ffb6e56b65d1619d1d8ada294b0ac077043c4c6 (diff) | |
| download | meta-virtualization-51013405c224522461fe007fba4ad092673e4f56.tar.gz | |
nerdctl: introduce recipe
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
3 files changed, 1187 insertions, 0 deletions
diff --git a/recipes-containers/nerdctl/nerdctl/0001-Makefile-allow-external-specification-of-build-setti.patch b/recipes-containers/nerdctl/nerdctl/0001-Makefile-allow-external-specification-of-build-setti.patch new file mode 100644 index 00000000..0661dd81 --- /dev/null +++ b/recipes-containers/nerdctl/nerdctl/0001-Makefile-allow-external-specification-of-build-setti.patch | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | From 0e6809ea075acd3edf7de197cd4e190ccdad6361 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Bruce Ashfield <bruce.ashfield@gmail.com> | ||
| 3 | Date: Mon, 29 Mar 2021 20:50:47 -0400 | ||
| 4 | Subject: [PATCH] Makefile: allow external specification of build settings | ||
| 5 | |||
| 6 | Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> | ||
| 7 | --- | ||
| 8 | Makefile | 3 ++- | ||
| 9 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
| 10 | |||
| 11 | Index: nerdctl-v0.17.0/src/import/Makefile | ||
| 12 | =================================================================== | ||
| 13 | --- nerdctl-v0.17.0.orig/src/import/Makefile | ||
| 14 | +++ nerdctl-v0.17.0/src/import/Makefile | ||
| 15 | @@ -31,7 +31,8 @@ | ||
| 16 | VERSION_TRIMMED := $(VERSION:v%=%) | ||
| 17 | REVISION=$(shell git rev-parse HEAD)$(shell if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi) | ||
| 18 | |||
| 19 | -export GO_BUILD=GO111MODULE=on CGO_ENABLED=0 GOOS=$(GOOS) $(GO) build -ldflags "-s -w -X $(PACKAGE)/pkg/version.Version=$(VERSION) -X $(PACKAGE)/pkg/version.Revision=$(REVISION)" | ||
| 20 | +#export GO_BUILD=GO111MODULE=on CGO_ENABLED=0 GOOS=$(GOOS) $(GO) build -ldflags "-s -w -X $(PACKAGE)/pkg/version.Version=$(VERSION) -X $(PACKAGE)/pkg/version.Revision=$(REVISION)" | ||
| 21 | +export GO_BUILD=$(GO) build -ldflags "-s -w -X $(PACKAGE)/pkg/version.Version=$(VERSION) -X $(PACKAGE)/pkg/version.Revision=$(REVISION)" | ||
| 22 | |||
| 23 | ifdef VERBOSE | ||
| 24 | VERBOSE_FLAG := -v | ||
diff --git a/recipes-containers/nerdctl/nerdctl/modules.txt b/recipes-containers/nerdctl/nerdctl/modules.txt new file mode 100644 index 00000000..3b144736 --- /dev/null +++ b/recipes-containers/nerdctl/nerdctl/modules.txt | |||
| @@ -0,0 +1,313 @@ | |||
| 1 | # github.com/Microsoft/go-winio v0.5.2 | ||
| 2 | ## explicit | ||
| 3 | # github.com/compose-spec/compose-go v1.0.9 | ||
| 4 | ## explicit | ||
| 5 | # github.com/containerd/cgroups v1.0.3 | ||
| 6 | ## explicit | ||
| 7 | # github.com/containerd/console v1.0.3 | ||
| 8 | ## explicit | ||
| 9 | # github.com/containerd/containerd v1.6.0 | ||
| 10 | ## explicit | ||
| 11 | # github.com/containerd/continuity v0.2.2 | ||
| 12 | ## explicit | ||
| 13 | # github.com/containerd/go-cni v1.1.3 | ||
| 14 | ## explicit | ||
| 15 | # github.com/containerd/imgcrypt v1.1.3 | ||
| 16 | ## explicit | ||
| 17 | # github.com/containerd/stargz-snapshotter v0.11.0 | ||
| 18 | ## explicit | ||
| 19 | # github.com/containerd/stargz-snapshotter/estargz v0.11.0 | ||
| 20 | ## explicit | ||
| 21 | # github.com/containerd/stargz-snapshotter/ipfs v0.11.0 | ||
| 22 | ## explicit | ||
| 23 | # github.com/containerd/typeurl v1.0.2 | ||
| 24 | ## explicit | ||
| 25 | # github.com/containernetworking/cni v1.0.1 | ||
| 26 | ## explicit | ||
| 27 | # github.com/containernetworking/plugins v1.0.1 | ||
| 28 | ## explicit | ||
| 29 | # github.com/cyphar/filepath-securejoin v0.2.3 | ||
| 30 | ## explicit | ||
| 31 | # github.com/docker/cli v20.10.12+incompatible | ||
| 32 | ## explicit | ||
| 33 | # github.com/docker/docker v20.10.12+incompatible | ||
| 34 | ## explicit | ||
| 35 | # github.com/docker/go-connections v0.4.0 | ||
| 36 | ## explicit | ||
| 37 | # github.com/docker/go-units v0.4.0 | ||
| 38 | ## explicit | ||
| 39 | # github.com/fatih/color v1.13.0 | ||
| 40 | ## explicit | ||
| 41 | # github.com/gogo/protobuf v1.3.2 | ||
| 42 | ## explicit | ||
| 43 | # github.com/hashicorp/go-multierror v1.1.1 | ||
| 44 | ## explicit | ||
| 45 | # github.com/ipfs/go-cid v0.1.0 | ||
| 46 | ## explicit | ||
| 47 | # github.com/ipfs/go-ipfs-files v0.1.1 | ||
| 48 | ## explicit | ||
| 49 | # github.com/ipfs/go-ipfs-http-client v0.2.0 | ||
| 50 | ## explicit | ||
| 51 | # github.com/ipfs/interface-go-ipfs-core v0.5.2 | ||
| 52 | ## explicit | ||
| 53 | # github.com/jaytaylor/go-hostsfile v0.0.0-20211120191712-f53f85d8b98f | ||
| 54 | ## explicit | ||
| 55 | # github.com/mattn/go-isatty v0.0.14 | ||
| 56 | ## explicit | ||
| 57 | # github.com/moby/sys/mount v0.3.1 | ||
| 58 | ## explicit | ||
| 59 | # github.com/multiformats/go-multiaddr v0.5.0 | ||
| 60 | ## explicit | ||
| 61 | # github.com/opencontainers/go-digest v1.0.0 | ||
| 62 | ## explicit | ||
| 63 | # github.com/opencontainers/image-spec v1.0.3-0.20211215212317-ea0209f50ae1 | ||
| 64 | ## explicit | ||
| 65 | # github.com/opencontainers/runtime-spec v1.0.3-0.20211214071223-8958f93039ab | ||
| 66 | ## explicit | ||
| 67 | # github.com/pelletier/go-toml v1.9.4 | ||
| 68 | ## explicit | ||
| 69 | # github.com/rootless-containers/bypass4netns v0.1.1-0.20220214050838-562b4845f47e | ||
| 70 | ## explicit | ||
| 71 | # github.com/rootless-containers/rootlesskit v0.14.6 | ||
| 72 | ## explicit | ||
| 73 | # github.com/sirupsen/logrus v1.8.1 | ||
| 74 | ## explicit | ||
| 75 | # github.com/spf13/cobra v1.3.0 | ||
| 76 | ## explicit | ||
| 77 | # github.com/spf13/pflag v1.0.5 | ||
| 78 | ## explicit | ||
| 79 | # github.com/tidwall/gjson v1.14.0 | ||
| 80 | ## explicit | ||
| 81 | # github.com/vishvananda/netlink v1.1.1-0.20220125195016-0639e7e787ba | ||
| 82 | ## explicit | ||
| 83 | # github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 | ||
| 84 | ## explicit | ||
| 85 | # golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 | ||
| 86 | ## explicit | ||
| 87 | # golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd | ||
| 88 | ## explicit | ||
| 89 | # golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
| 90 | ## explicit | ||
| 91 | # golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 | ||
| 92 | ## explicit | ||
| 93 | # golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 | ||
| 94 | ## explicit | ||
| 95 | # gopkg.in/yaml.v2 v2.4.0 | ||
| 96 | ## explicit | ||
| 97 | # gotest.tools/v3 v3.1.0 | ||
| 98 | ## explicit | ||
| 99 | # github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 | ||
| 100 | ## explicit | ||
| 101 | # github.com/Microsoft/hcsshim v0.9.2 | ||
| 102 | ## explicit | ||
| 103 | # github.com/beorn7/perks v1.0.1 | ||
| 104 | ## explicit | ||
| 105 | # github.com/btcsuite/btcd v0.21.0-beta | ||
| 106 | ## explicit | ||
| 107 | # github.com/cespare/xxhash/v2 v2.1.2 | ||
| 108 | ## explicit | ||
| 109 | # github.com/cilium/ebpf v0.7.0 | ||
| 110 | ## explicit | ||
| 111 | # github.com/containerd/fifo v1.0.0 | ||
| 112 | ## explicit | ||
| 113 | # github.com/containerd/ttrpc v1.1.0 | ||
| 114 | ## explicit | ||
| 115 | # github.com/containers/ocicrypt v1.1.2 | ||
| 116 | ## explicit | ||
| 117 | # github.com/coreos/go-systemd/v22 v22.3.2 | ||
| 118 | ## explicit | ||
| 119 | # github.com/cpuguy83/go-md2man/v2 v2.0.1 | ||
| 120 | ## explicit | ||
| 121 | # github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3 | ||
| 122 | ## explicit | ||
| 123 | # github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e | ||
| 124 | ## explicit | ||
| 125 | # github.com/docker/distribution v2.7.1+incompatible | ||
| 126 | ## explicit | ||
| 127 | # github.com/docker/docker-credential-helpers v0.6.4 | ||
| 128 | ## explicit | ||
| 129 | # github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c | ||
| 130 | ## explicit | ||
| 131 | # github.com/docker/go-metrics v0.0.1 | ||
| 132 | ## explicit | ||
| 133 | # github.com/godbus/dbus/v5 v5.0.6 | ||
| 134 | ## explicit | ||
| 135 | # github.com/gogo/googleapis v1.4.1 | ||
| 136 | ## explicit | ||
| 137 | # github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da | ||
| 138 | ## explicit | ||
| 139 | # github.com/golang/protobuf v1.5.2 | ||
| 140 | ## explicit | ||
| 141 | # github.com/google/go-cmp v0.5.6 | ||
| 142 | ## explicit | ||
| 143 | # github.com/google/uuid v1.3.0 | ||
| 144 | ## explicit | ||
| 145 | # github.com/gorilla/mux v1.8.0 | ||
| 146 | ## explicit | ||
| 147 | # github.com/hashicorp/errwrap v1.1.0 | ||
| 148 | ## explicit | ||
| 149 | # github.com/hashicorp/golang-lru v0.5.4 | ||
| 150 | ## explicit | ||
| 151 | # github.com/imdario/mergo v0.3.12 | ||
| 152 | ## explicit | ||
| 153 | # github.com/inconshreveable/mousetrap v1.0.0 | ||
| 154 | ## explicit | ||
| 155 | # github.com/ipfs/bbloom v0.0.4 | ||
| 156 | ## explicit | ||
| 157 | # github.com/ipfs/go-block-format v0.0.3 | ||
| 158 | ## explicit | ||
| 159 | # github.com/ipfs/go-blockservice v0.1.7 | ||
| 160 | ## explicit | ||
| 161 | # github.com/ipfs/go-datastore v0.4.5 | ||
| 162 | ## explicit | ||
| 163 | # github.com/ipfs/go-ipfs-blockstore v0.1.6 | ||
| 164 | ## explicit | ||
| 165 | # github.com/ipfs/go-ipfs-cmds v0.6.0 | ||
| 166 | ## explicit | ||
| 167 | # github.com/ipfs/go-ipfs-ds-help v0.1.1 | ||
| 168 | ## explicit | ||
| 169 | # github.com/ipfs/go-ipfs-exchange-interface v0.0.1 | ||
| 170 | ## explicit | ||
| 171 | # github.com/ipfs/go-ipfs-util v0.0.2 | ||
| 172 | ## explicit | ||
| 173 | # github.com/ipfs/go-ipld-cbor v0.0.5 | ||
| 174 | ## explicit | ||
| 175 | # github.com/ipfs/go-ipld-format v0.2.0 | ||
| 176 | ## explicit | ||
| 177 | # github.com/ipfs/go-ipld-legacy v0.1.0 | ||
| 178 | ## explicit | ||
| 179 | # github.com/ipfs/go-log v1.0.5 | ||
| 180 | ## explicit | ||
| 181 | # github.com/ipfs/go-log/v2 v2.1.3 | ||
| 182 | ## explicit | ||
| 183 | # github.com/ipfs/go-merkledag v0.4.0 | ||
| 184 | ## explicit | ||
| 185 | # github.com/ipfs/go-metrics-interface v0.0.1 | ||
| 186 | ## explicit | ||
| 187 | # github.com/ipfs/go-path v0.1.1 | ||
| 188 | ## explicit | ||
| 189 | # github.com/ipfs/go-unixfs v0.2.5 | ||
| 190 | ## explicit | ||
| 191 | # github.com/ipfs/go-verifcid v0.0.1 | ||
| 192 | ## explicit | ||
| 193 | # github.com/ipld/go-codec-dagpb v1.3.0 | ||
| 194 | ## explicit | ||
| 195 | # github.com/ipld/go-ipld-prime v0.11.0 | ||
| 196 | ## explicit | ||
| 197 | # github.com/jbenet/goprocess v0.1.4 | ||
| 198 | ## explicit | ||
| 199 | # github.com/klauspost/compress v1.14.2 | ||
| 200 | ## explicit | ||
| 201 | # github.com/klauspost/cpuid/v2 v2.0.6 | ||
| 202 | ## explicit | ||
| 203 | # github.com/libp2p/go-buffer-pool v0.0.2 | ||
| 204 | ## explicit | ||
| 205 | # github.com/libp2p/go-libp2p-core v0.8.6 | ||
| 206 | ## explicit | ||
| 207 | # github.com/libp2p/go-openssl v0.0.7 | ||
| 208 | ## explicit | ||
| 209 | # github.com/mattn/go-colorable v0.1.12 | ||
| 210 | ## explicit | ||
| 211 | # github.com/mattn/go-shellwords v1.0.12 | ||
| 212 | ## explicit | ||
| 213 | # github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 | ||
| 214 | ## explicit | ||
| 215 | # github.com/miekg/pkcs11 v1.0.3 | ||
| 216 | ## explicit | ||
| 217 | # github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 | ||
| 218 | ## explicit | ||
| 219 | # github.com/minio/sha256-simd v1.0.0 | ||
| 220 | ## explicit | ||
| 221 | # github.com/mitchellh/go-homedir v1.1.0 | ||
| 222 | ## explicit | ||
| 223 | # github.com/mitchellh/mapstructure v1.4.3 | ||
| 224 | ## explicit | ||
| 225 | # github.com/moby/locker v1.0.1 | ||
| 226 | ## explicit | ||
| 227 | # github.com/moby/sys/mountinfo v0.6.0 | ||
| 228 | ## explicit | ||
| 229 | # github.com/moby/sys/signal v0.6.0 | ||
| 230 | ## explicit | ||
| 231 | # github.com/moby/term v0.0.0-20210610120745-9d4ed1856297 | ||
| 232 | ## explicit | ||
| 233 | # github.com/morikuni/aec v1.0.0 | ||
| 234 | ## explicit | ||
| 235 | # github.com/mr-tron/base58 v1.2.0 | ||
| 236 | ## explicit | ||
| 237 | # github.com/multiformats/go-base32 v0.0.3 | ||
| 238 | ## explicit | ||
| 239 | # github.com/multiformats/go-base36 v0.1.0 | ||
| 240 | ## explicit | ||
| 241 | # github.com/multiformats/go-multibase v0.0.3 | ||
| 242 | ## explicit | ||
| 243 | # github.com/multiformats/go-multihash v0.0.15 | ||
| 244 | ## explicit | ||
| 245 | # github.com/multiformats/go-varint v0.0.6 | ||
| 246 | ## explicit | ||
| 247 | # github.com/opencontainers/runc v1.1.0 | ||
| 248 | ## explicit | ||
| 249 | # github.com/opencontainers/selinux v1.10.0 | ||
| 250 | ## explicit | ||
| 251 | # github.com/opentracing/opentracing-go v1.2.0 | ||
| 252 | ## explicit | ||
| 253 | # github.com/pkg/errors v0.9.1 | ||
| 254 | ## explicit | ||
| 255 | # github.com/polydawn/refmt v0.0.0-20201211092308-30ac6d18308e | ||
| 256 | ## explicit | ||
| 257 | # github.com/prometheus/client_golang v1.12.0 | ||
| 258 | ## explicit | ||
| 259 | # github.com/prometheus/client_model v0.2.0 | ||
| 260 | ## explicit | ||
| 261 | # github.com/prometheus/common v0.32.1 | ||
| 262 | ## explicit | ||
| 263 | # github.com/prometheus/procfs v0.7.3 | ||
| 264 | ## explicit | ||
| 265 | # github.com/rs/cors v1.7.0 | ||
| 266 | ## explicit | ||
| 267 | # github.com/russross/blackfriday/v2 v2.1.0 | ||
| 268 | ## explicit | ||
| 269 | # github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 | ||
| 270 | ## explicit | ||
| 271 | # github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 | ||
| 272 | ## explicit | ||
| 273 | # github.com/tidwall/match v1.1.1 | ||
| 274 | ## explicit | ||
| 275 | # github.com/tidwall/pretty v1.2.0 | ||
| 276 | ## explicit | ||
| 277 | # github.com/urfave/cli v1.22.4 | ||
| 278 | ## explicit | ||
| 279 | # github.com/vbatts/tar-split v0.11.2 | ||
| 280 | ## explicit | ||
| 281 | # github.com/whyrusleeping/cbor-gen v0.0.0-20200123233031-1cdf64d27158 | ||
| 282 | ## explicit | ||
| 283 | # github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f | ||
| 284 | ## explicit | ||
| 285 | # github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 | ||
| 286 | ## explicit | ||
| 287 | # github.com/xeipuuv/gojsonschema v1.2.0 | ||
| 288 | ## explicit | ||
| 289 | # go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 | ||
| 290 | ## explicit | ||
| 291 | # go.opencensus.io v0.23.0 | ||
| 292 | ## explicit | ||
| 293 | # go.uber.org/atomic v1.7.0 | ||
| 294 | ## explicit | ||
| 295 | # go.uber.org/multierr v1.7.0 | ||
| 296 | ## explicit | ||
| 297 | # go.uber.org/zap v1.17.0 | ||
| 298 | ## explicit | ||
| 299 | # golang.org/x/text v0.3.7 | ||
| 300 | ## explicit | ||
| 301 | # golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 | ||
| 302 | ## explicit | ||
| 303 | # google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350 | ||
| 304 | ## explicit | ||
| 305 | # google.golang.org/grpc v1.44.0 | ||
| 306 | ## explicit | ||
| 307 | # google.golang.org/protobuf v1.27.1 | ||
| 308 | ## explicit | ||
| 309 | # gopkg.in/square/go-jose.v2 v2.5.1 | ||
| 310 | ## explicit | ||
| 311 | # github.com/ktock/golang-lru v0.5.5-0.20211029085301-ec551be6f75c | ||
| 312 | ## explicit | ||
| 313 | # github.com/hashicorp/golang-lru => github.com/ktock/golang-lru v0.5.5-0.20211029085301-ec551be6f75c | ||
diff --git a/recipes-containers/nerdctl/nerdctl_git.bb b/recipes-containers/nerdctl/nerdctl_git.bb new file mode 100644 index 00000000..e0e87de4 --- /dev/null +++ b/recipes-containers/nerdctl/nerdctl_git.bb | |||
| @@ -0,0 +1,850 @@ | |||
| 1 | HOMEPAGE = "https://github.com/containerd/nerdctl" | ||
| 2 | SUMMARY = "Docker-compatible CLI for containerd" | ||
| 3 | DESCRIPTION = "nerdctl: Docker-compatible CLI for containerd \ | ||
| 4 | " | ||
| 5 | |||
| 6 | DEPENDS = " \ | ||
| 7 | go-md2man \ | ||
| 8 | rsync-native \ | ||
| 9 | ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \ | ||
| 10 | " | ||
| 11 | |||
| 12 | #SRCREV_FORMAT="nerdcli_cgroups" | ||
| 13 | SRCREV_nerdcli = "f2427ffbd1dd67231722fb307f39eecf702de980" | ||
| 14 | |||
| 15 | SRC_URI = "git://github.com/containerd/nerdctl.git;name=nerdcli;branch=master;protocol=https" | ||
| 16 | |||
| 17 | # github.com/Microsoft/go-winio v0.5.2 | ||
| 18 | # [1] git ls-remote https://github.com/Microsoft/go-winio dfd7da8f92a382999d77b5d9cfe8cc6bec1894c6 | ||
| 19 | SRCREV_go-winio="dfd7da8f92a382999d77b5d9cfe8cc6bec1894c6" | ||
| 20 | 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" | ||
| 21 | |||
| 22 | # github.com/compose-spec/compose-go v1.0.9 | ||
| 23 | # [1] git ls-remote https://github.com/compose-spec/compose-go ad7931673da9b06dd2a326d91a2ab015d62a31d8 | ||
| 24 | SRCREV_compose-go="ad7931673da9b06dd2a326d91a2ab015d62a31d8" | ||
| 25 | 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" | ||
| 26 | |||
| 27 | # github.com/containerd/cgroups v1.0.3 | ||
| 28 | # [1] git ls-remote https://github.com/containerd/cgroups 8cefbaa014dd36363acff427d912e075e6e08815 | ||
| 29 | SRCREV_cgroups="8cefbaa014dd36363acff427d912e075e6e08815" | ||
| 30 | SRC_URI += "git://github.com/containerd/cgroups;name=cgroups;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/cgroups" | ||
| 31 | |||
| 32 | # github.com/containerd/console v1.0.3 | ||
| 33 | # [1] git ls-remote https://github.com/containerd/console 060a791de16aeb90b3bb4dcd78dfec3ca45fa5df | ||
| 34 | SRCREV_console="060a791de16aeb90b3bb4dcd78dfec3ca45fa5df" | ||
| 35 | SRC_URI += "git://github.com/containerd/console;name=console;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/console" | ||
| 36 | |||
| 37 | # github.com/containerd/containerd v1.6.0 | ||
| 38 | # [1] git ls-remote https://github.com/containerd/containerd 13a9d2087b04c1a99ba3fb3159fbd6b2493ca6dd | ||
| 39 | SRCREV_containerd="13a9d2087b04c1a99ba3fb3159fbd6b2493ca6dd" | ||
| 40 | SRC_URI += "git://github.com/containerd/containerd;name=containerd;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/containerd" | ||
| 41 | |||
| 42 | # github.com/containerd/continuity v0.2.2 | ||
| 43 | # [1] git ls-remote https://github.com/containerd/continuity 3a5e5b882aed17b35e1cea5bbc0a4c26b40ab268 | ||
| 44 | SRCREV_continuity="3a5e5b882aed17b35e1cea5bbc0a4c26b40ab268" | ||
| 45 | SRC_URI += "git://github.com/containerd/continuity;name=continuity;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/continuity" | ||
| 46 | |||
| 47 | # github.com/containerd/go-cni v1.1.3 | ||
| 48 | # [1] git ls-remote https://github.com/containerd/go-cni d3dcbd535b9e305167e3d27e1b8cd7bbd4c3c382 | ||
| 49 | SRCREV_go-cni="d3dcbd535b9e305167e3d27e1b8cd7bbd4c3c382" | ||
| 50 | 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" | ||
| 51 | |||
| 52 | # github.com/containerd/imgcrypt v1.1.3 | ||
| 53 | # [1] git ls-remote https://github.com/containerd/imgcrypt 41198ab93e7616c40a1ed505256a664b81fe84c1 | ||
| 54 | SRCREV_imgcrypt="41198ab93e7616c40a1ed505256a664b81fe84c1" | ||
| 55 | SRC_URI += "git://github.com/containerd/imgcrypt;name=imgcrypt;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/imgcrypt" | ||
| 56 | |||
| 57 | # github.com/containerd/stargz-snapshotter v0.11.0 | ||
| 58 | # [1] git ls-remote https://github.com/containerd/stargz-snapshotter 7216b07a2f8f0ec3ec1fb8c6ac8a933c70b82eec | ||
| 59 | SRCREV_stargz-snapshotter="7216b07a2f8f0ec3ec1fb8c6ac8a933c70b82eec" | ||
| 60 | 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" | ||
| 61 | |||
| 62 | # github.com/containerd/typeurl v1.0.2 | ||
| 63 | # [1] git ls-remote https://github.com/containerd/typeurl 9e1ad9a145b768c8f6bab9880513cd1b05fe5a20 | ||
| 64 | SRCREV_typeurl="9e1ad9a145b768c8f6bab9880513cd1b05fe5a20" | ||
| 65 | SRC_URI += "git://github.com/containerd/typeurl;name=typeurl;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/typeurl" | ||
| 66 | |||
| 67 | # github.com/containernetworking/cni v1.0.1 | ||
| 68 | # [1] git ls-remote https://github.com/containernetworking/cni 1694fd7b57e0176a98a12823a5ffc03337fdc152 | ||
| 69 | SRCREV_cni="1694fd7b57e0176a98a12823a5ffc03337fdc152" | ||
| 70 | SRC_URI += "git://github.com/containernetworking/cni;name=cni;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containernetworking/cni" | ||
| 71 | |||
| 72 | # github.com/containernetworking/plugins v1.0.1 | ||
| 73 | # [1] git ls-remote https://github.com/containernetworking/plugins 56d8364f1bd3fa0d35717936ec5cd385e61d3815 | ||
| 74 | SRCREV_plugins="56d8364f1bd3fa0d35717936ec5cd385e61d3815" | ||
| 75 | SRC_URI += "git://github.com/containernetworking/plugins;name=plugins;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containernetworking/plugins" | ||
| 76 | |||
| 77 | # github.com/cyphar/filepath-securejoin v0.2.3 | ||
| 78 | # [1] git ls-remote https://github.com/cyphar/filepath-securejoin a89baba1e4f44c5512e245cbd156de1293d6185a | ||
| 79 | SRCREV_filepath-securejoin="a89baba1e4f44c5512e245cbd156de1293d6185a" | ||
| 80 | 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" | ||
| 81 | |||
| 82 | # github.com/docker/cli v20.10.12+incompatible | ||
| 83 | # [1] git ls-remote https://github.com/docker/cli 60293e390eba4de1a06309b75bbf61dd7a45bbcb | ||
| 84 | SRCREV_cli="60293e390eba4de1a06309b75bbf61dd7a45bbcb" | ||
| 85 | SRC_URI += "git://github.com/docker/cli;name=cli;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/cli" | ||
| 86 | |||
| 87 | # github.com/docker/docker v20.10.12+incompatible | ||
| 88 | # [1] git ls-remote https://github.com/docker/docker bd6d47cb470e2c31acaef7dc0da42dc8cfb42085 | ||
| 89 | SRCREV_docker="bd6d47cb470e2c31acaef7dc0da42dc8cfb42085" | ||
| 90 | SRC_URI += "git://github.com/docker/docker;name=docker;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/docker" | ||
| 91 | |||
| 92 | # github.com/docker/go-connections v0.4.0 | ||
| 93 | # [1] git ls-remote https://github.com/docker/go-connections 7395e3f8aa162843a74ed6d48e79627d9792ac55 | ||
| 94 | SRCREV_go-connections="7395e3f8aa162843a74ed6d48e79627d9792ac55" | ||
| 95 | 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" | ||
| 96 | |||
| 97 | # github.com/docker/go-units v0.4.0 | ||
| 98 | # [1] git ls-remote https://github.com/docker/go-units 62a2352f021aa740f52d67afa00d211290c5855c | ||
| 99 | SRCREV_go-units="62a2352f021aa740f52d67afa00d211290c5855c" | ||
| 100 | 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" | ||
| 101 | |||
| 102 | # github.com/fatih/color v1.13.0 | ||
| 103 | # [1] git ls-remote https://github.com/fatih/color a05da93ebe62ca9fc6791d3376ec4dad01196448 | ||
| 104 | SRCREV_color="a05da93ebe62ca9fc6791d3376ec4dad01196448" | ||
| 105 | SRC_URI += "git://github.com/fatih/color;name=color;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/fatih/color" | ||
| 106 | |||
| 107 | # github.com/gogo/protobuf v1.3.2 | ||
| 108 | # [1] git ls-remote https://github.com/gogo/protobuf b03c65ea87cdc3521ede29f62fe3ce239267c1bc | ||
| 109 | SRCREV_protobuf="b03c65ea87cdc3521ede29f62fe3ce239267c1bc" | ||
| 110 | SRC_URI += "git://github.com/gogo/protobuf;name=protobuf;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gogo/protobuf" | ||
| 111 | |||
| 112 | # github.com/hashicorp/go-multierror v1.1.1 | ||
| 113 | # [1] git ls-remote https://github.com/hashicorp/go-multierror 9974e9ec57696378079ecc3accd3d6f29401b3a0 | ||
| 114 | SRCREV_go-multierror="9974e9ec57696378079ecc3accd3d6f29401b3a0" | ||
| 115 | 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" | ||
| 116 | |||
| 117 | # github.com/ipfs/go-cid v0.1.0 | ||
| 118 | # [1] git ls-remote https://github.com/ipfs/go-cid de6c03deae1cf9c032be7f24b83bc7da7d139844 | ||
| 119 | SRCREV_go-cid="de6c03deae1cf9c032be7f24b83bc7da7d139844" | ||
| 120 | 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" | ||
| 121 | |||
| 122 | # github.com/ipfs/go-ipfs-files v0.1.1 | ||
| 123 | # [1] git ls-remote https://github.com/ipfs/go-ipfs-files 5044b18695cb23ae69632c3e2511b4624a87b0d5 | ||
| 124 | SRCREV_go-ipfs-files="5044b18695cb23ae69632c3e2511b4624a87b0d5" | ||
| 125 | SRC_URI += "git://github.com/ipfs/go-ipfs-files;name=go-ipfs-files;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipfs-files" | ||
| 126 | |||
| 127 | # github.com/ipfs/go-ipfs-http-client v0.2.0 | ||
| 128 | # [1] git ls-remote https://github.com/ipfs/go-ipfs-http-client 434ac969c653f7c4781144aaa2834b5f8828ce22 | ||
| 129 | SRCREV_go-ipfs-http-client="434ac969c653f7c4781144aaa2834b5f8828ce22" | ||
| 130 | SRC_URI += "git://github.com/ipfs/go-ipfs-http-client;name=go-ipfs-http-client;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipfs-http-client" | ||
| 131 | |||
| 132 | # github.com/ipfs/interface-go-ipfs-core v0.5.2 | ||
| 133 | # [1] git ls-remote https://github.com/ipfs/interface-go-ipfs-core 275b80e1f34ead0fb06a9216e3bffee57a01b636 | ||
| 134 | SRCREV_interface-go-ipfs-core="275b80e1f34ead0fb06a9216e3bffee57a01b636" | ||
| 135 | SRC_URI += "git://github.com/ipfs/interface-go-ipfs-core;name=interface-go-ipfs-core;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/interface-go-ipfs-core" | ||
| 136 | |||
| 137 | # github.com/jaytaylor/go-hostsfile v0.0.0-20211120191712-f53f85d8b98f | ||
| 138 | # [1] git ls-remote https://github.com/jaytaylor/go-hostsfile f53f85d8b98f8f4925bceab7890a431e2f46c38f | ||
| 139 | SRCREV_go-hostsfile="f53f85d8b98f8f4925bceab7890a431e2f46c38f" | ||
| 140 | SRC_URI += "git://github.com/jaytaylor/go-hostsfile;name=go-hostsfile;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/jaytaylor/go-hostsfile" | ||
| 141 | |||
| 142 | # github.com/mattn/go-isatty v0.0.14 | ||
| 143 | # [1] git ls-remote https://github.com/mattn/go-isatty 504425e14f742f1f517c4586048b49b37f829c8e | ||
| 144 | SRCREV_go-isatty="504425e14f742f1f517c4586048b49b37f829c8e" | ||
| 145 | 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" | ||
| 146 | |||
| 147 | # github.com/moby/sys/mount v0.3.1 | ||
| 148 | # [1] git ls-remote https://github.com/moby/sys b8d8fabf1fa5cf0de7c1a1729145eee854ea31f5 | ||
| 149 | SRCREV_mount="b8d8fabf1fa5cf0de7c1a1729145eee854ea31f5" | ||
| 150 | 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" | ||
| 151 | |||
| 152 | # github.com/multiformats/go-multiaddr v0.5.0 | ||
| 153 | # [1] git ls-remote https://github.com/multiformats/go-multiaddr f9011923e397c7c69e8d13ed7a8ad44f47b2a114 | ||
| 154 | SRCREV_go-multiaddr="f9011923e397c7c69e8d13ed7a8ad44f47b2a114" | ||
| 155 | 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" | ||
| 156 | |||
| 157 | # github.com/opencontainers/go-digest v1.0.0 | ||
| 158 | # [1] git ls-remote https://github.com/opencontainers/go-digest 4a41a1fddd8208cc64f911e551a7f361716f8ae5 | ||
| 159 | SRCREV_go-digest="4a41a1fddd8208cc64f911e551a7f361716f8ae5" | ||
| 160 | 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" | ||
| 161 | |||
| 162 | # github.com/opencontainers/image-spec v1.0.3-0.20211215212317-ea0209f50ae1 | ||
| 163 | # [1] git ls-remote https://github.com/opencontainers/image-spec ea0209f50ae1a3707cff054cdb6b7487050487de | ||
| 164 | SRCREV_image-spec="ea0209f50ae1a3707cff054cdb6b7487050487de" | ||
| 165 | 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" | ||
| 166 | |||
| 167 | # github.com/opencontainers/runtime-spec v1.0.3-0.20211214071223-8958f93039ab | ||
| 168 | # [1] git ls-remote https://github.com/opencontainers/runtime-spec 8958f93039ab90be53d803cd7e231a775f644451 | ||
| 169 | SRCREV_runtime-spec="8958f93039ab90be53d803cd7e231a775f644451" | ||
| 170 | 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" | ||
| 171 | |||
| 172 | # github.com/pelletier/go-toml v1.9.4 | ||
| 173 | # [1] git ls-remote https://github.com/pelletier/go-toml b8ba995eaaba4be30c8a8090bdfb4aa61af52054 | ||
| 174 | SRCREV_go-toml="b8ba995eaaba4be30c8a8090bdfb4aa61af52054" | ||
| 175 | 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" | ||
| 176 | |||
| 177 | # github.com/rootless-containers/bypass4netns v0.1.1-0.20220214050838-562b4845f47e | ||
| 178 | # [1] git ls-remote https://github.com/rootless-containers/bypass4netns 562b4845f47e3bb1019e37369948845a27ef5b58 | ||
| 179 | SRCREV_bypass4netns="562b4845f47e3bb1019e37369948845a27ef5b58" | ||
| 180 | 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" | ||
| 181 | |||
| 182 | # github.com/rootless-containers/rootlesskit v0.14.6 | ||
| 183 | # [1] git ls-remote https://github.com/rootless-containers/rootlesskit 0f88c14fd0966e018bb8f0eefc57c5283459a56c | ||
| 184 | SRCREV_rootlesskit="0f88c14fd0966e018bb8f0eefc57c5283459a56c" | ||
| 185 | SRC_URI += "git://github.com/rootless-containers/rootlesskit;name=rootlesskit;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/rootless-containers/rootlesskit" | ||
| 186 | |||
| 187 | # github.com/sirupsen/logrus v1.8.1 | ||
| 188 | # [1] git ls-remote https://github.com/sirupsen/logrus bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b | ||
| 189 | SRCREV_logrus="bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" | ||
| 190 | SRC_URI += "git://github.com/sirupsen/logrus;name=logrus;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/sirupsen/logrus" | ||
| 191 | |||
| 192 | # github.com/spf13/cobra v1.3.0 | ||
| 193 | # [1] git ls-remote https://github.com/spf13/cobra 178edbb247f35e466578211dcf5f4892dbbd369b | ||
| 194 | SRCREV_cobra="178edbb247f35e466578211dcf5f4892dbbd369b" | ||
| 195 | SRC_URI += "git://github.com/spf13/cobra;name=cobra;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/spf13/cobra" | ||
| 196 | |||
| 197 | # github.com/spf13/pflag v1.0.5 | ||
| 198 | # [1] git ls-remote https://github.com/spf13/pflag 2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab | ||
| 199 | SRCREV_pflag="2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" | ||
| 200 | SRC_URI += "git://github.com/spf13/pflag;name=pflag;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/spf13/pflag" | ||
| 201 | |||
| 202 | # github.com/tidwall/gjson v1.14.0 | ||
| 203 | # [1] git ls-remote https://github.com/tidwall/gjson 7a94820afd8a0d993c07b9cde761b95943823a9f | ||
| 204 | SRCREV_gjson="7a94820afd8a0d993c07b9cde761b95943823a9f" | ||
| 205 | SRC_URI += "git://github.com/tidwall/gjson;name=gjson;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tidwall/gjson" | ||
| 206 | |||
| 207 | # github.com/vishvananda/netlink v1.1.1-0.20220125195016-0639e7e787ba | ||
| 208 | # [1] git ls-remote https://github.com/vishvananda/netlink 0639e7e787ba7257fc7d097a14d203b1cf1fece9 | ||
| 209 | SRCREV_netlink="0639e7e787ba7257fc7d097a14d203b1cf1fece9" | ||
| 210 | SRC_URI += "git://github.com/vishvananda/netlink;name=netlink;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/vishvananda/netlink" | ||
| 211 | |||
| 212 | # github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 | ||
| 213 | # [1] git ls-remote https://github.com/vishvananda/netns 50045581ed74c15eded78746bae9fb3df07d6655 | ||
| 214 | SRCREV_netns="50045581ed74c15eded78746bae9fb3df07d6655" | ||
| 215 | SRC_URI += "git://github.com/vishvananda/netns;name=netns;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/vishvananda/netns" | ||
| 216 | |||
| 217 | # golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 | ||
| 218 | # [1] git ls-remote https://go.googlesource.com/crypto e495a2d5b3d3be43468d0ebb413f46eeaedf7eb3 | ||
| 219 | SRCREV_crypto="e495a2d5b3d3be43468d0ebb413f46eeaedf7eb3" | ||
| 220 | SRC_URI += "git://go.googlesource.com/crypto;name=crypto;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.googlesource.com/crypto" | ||
| 221 | |||
| 222 | # golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd | ||
| 223 | # [1] git ls-remote https://go.googlesource.com/net cd36cc0744dd695657988f15f08446dc81e16efc | ||
| 224 | SRCREV_net="cd36cc0744dd695657988f15f08446dc81e16efc" | ||
| 225 | SRC_URI += "git://go.googlesource.com/net;name=net;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.googlesource.com/net" | ||
| 226 | |||
| 227 | # golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
| 228 | # [1] git ls-remote https://go.googlesource.com/sync 036812b2e83c0ddf193dd5a34e034151da389d09 | ||
| 229 | SRCREV_sync="036812b2e83c0ddf193dd5a34e034151da389d09" | ||
| 230 | SRC_URI += "git://go.googlesource.com/sync;name=sync;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.googlesource.com/sync" | ||
| 231 | |||
| 232 | # golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 | ||
| 233 | # [1] git ls-remote https://go.googlesource.com/sys 99c3d69c2c27d4f16bc6cb2698ad877a3ba5fe75 | ||
| 234 | SRCREV_sys="99c3d69c2c27d4f16bc6cb2698ad877a3ba5fe75" | ||
| 235 | SRC_URI += "git://go.googlesource.com/sys;name=sys;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.googlesource.com/sys" | ||
| 236 | |||
| 237 | # golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 | ||
| 238 | # [1] git ls-remote https://go.googlesource.com/term 03fcf44c2211dcd5eb77510b5f7c1fb02d6ded50 | ||
| 239 | SRCREV_term="03fcf44c2211dcd5eb77510b5f7c1fb02d6ded50" | ||
| 240 | SRC_URI += "git://go.googlesource.com/term;name=term;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.googlesource.com/term" | ||
| 241 | |||
| 242 | # gopkg.in/yaml.v2 v2.4.0 | ||
| 243 | # [1] git ls-remote https://gopkg.in/yaml.v2 7649d4548cb53a614db133b2a8ac1f31859dda8c | ||
| 244 | SRCREV_yaml.v2="7649d4548cb53a614db133b2a8ac1f31859dda8c" | ||
| 245 | SRC_URI += "git://gopkg.in/yaml.v2;name=yaml.v2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/gopkg.in/yaml.v2" | ||
| 246 | |||
| 247 | # gotest.tools/v3 v3.1.0 | ||
| 248 | # [1] git ls-remote https://github.com/gotestyourself/gotest.tools dc5149e35729d281f5691a4114d1d620a7e38c67 | ||
| 249 | SRCREV_v3="dc5149e35729d281f5691a4114d1d620a7e38c67" | ||
| 250 | SRC_URI += "git://github.com/gotestyourself/gotest.tools;name=v3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gotestyourself/gotest.tools/v3" | ||
| 251 | |||
| 252 | # github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 | ||
| 253 | # [1] git ls-remote https://github.com/Azure/go-ansiterm d185dfc1b5a126116ea5a19e148e29d16b4574c9 | ||
| 254 | SRCREV_go-ansiterm="d185dfc1b5a126116ea5a19e148e29d16b4574c9" | ||
| 255 | 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" | ||
| 256 | |||
| 257 | # github.com/Microsoft/hcsshim v0.9.2 | ||
| 258 | # [1] git ls-remote https://github.com/Microsoft/hcsshim fc4f38d1766687bfdee9543c59168f4ee9f513ff | ||
| 259 | SRCREV_hcsshim="fc4f38d1766687bfdee9543c59168f4ee9f513ff" | ||
| 260 | SRC_URI += "git://github.com/Microsoft/hcsshim;name=hcsshim;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/Microsoft/hcsshim" | ||
| 261 | |||
| 262 | # github.com/beorn7/perks v1.0.1 | ||
| 263 | # [1] git ls-remote https://github.com/beorn7/perks c49ff274687222a7373c4cd83578f1065cf3e143 | ||
| 264 | SRCREV_perks="c49ff274687222a7373c4cd83578f1065cf3e143" | ||
| 265 | SRC_URI += "git://github.com/beorn7/perks;name=perks;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/beorn7/perks" | ||
| 266 | |||
| 267 | # github.com/btcsuite/btcd v0.21.0-beta | ||
| 268 | # [1] git ls-remote https://github.com/btcsuite/btcd f3103aec9bfe2ab8080916457943f76750b3a211 | ||
| 269 | SRCREV_btcd="f3103aec9bfe2ab8080916457943f76750b3a211" | ||
| 270 | SRC_URI += "git://github.com/btcsuite/btcd;name=btcd;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/btcsuite/btcd" | ||
| 271 | |||
| 272 | # github.com/cespare/xxhash/v2 v2.1.2 | ||
| 273 | # [1] git ls-remote https://github.com/cespare/xxhash 7ae26c41ed6fb1f8a6c21e05eeff4d91b5e401c4 | ||
| 274 | SRCREV_v2="7ae26c41ed6fb1f8a6c21e05eeff4d91b5e401c4" | ||
| 275 | SRC_URI += "git://github.com/cespare/xxhash;name=v2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cespare/xxhash/v2" | ||
| 276 | |||
| 277 | # github.com/cilium/ebpf v0.7.0 | ||
| 278 | # [1] git ls-remote https://github.com/cilium/ebpf 13667bdb8f164c32ae1b85e7130552dd93e86dfd | ||
| 279 | SRCREV_ebpf="13667bdb8f164c32ae1b85e7130552dd93e86dfd" | ||
| 280 | SRC_URI += "git://github.com/cilium/ebpf;name=ebpf;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cilium/ebpf" | ||
| 281 | |||
| 282 | # github.com/containerd/fifo v1.0.0 | ||
| 283 | # [1] git ls-remote https://github.com/containerd/fifo eb4e163db80cfde4102acfa62c87b2a37232c8a2 | ||
| 284 | SRCREV_fifo="eb4e163db80cfde4102acfa62c87b2a37232c8a2" | ||
| 285 | SRC_URI += "git://github.com/containerd/fifo;name=fifo;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/fifo" | ||
| 286 | |||
| 287 | # github.com/containerd/ttrpc v1.1.0 | ||
| 288 | # [1] git ls-remote https://github.com/containerd/ttrpc 5e8fe05f04c91bc8713ee4241e58d0b9da1c4a59 | ||
| 289 | SRCREV_ttrpc="5e8fe05f04c91bc8713ee4241e58d0b9da1c4a59" | ||
| 290 | SRC_URI += "git://github.com/containerd/ttrpc;name=ttrpc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/ttrpc" | ||
| 291 | |||
| 292 | # github.com/containers/ocicrypt v1.1.2 | ||
| 293 | # [1] git ls-remote https://github.com/containers/ocicrypt 1272152ccae67a2c3a4ed543d72b7e42928c99bb | ||
| 294 | SRCREV_ocicrypt="1272152ccae67a2c3a4ed543d72b7e42928c99bb" | ||
| 295 | SRC_URI += "git://github.com/containers/ocicrypt;name=ocicrypt;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containers/ocicrypt" | ||
| 296 | |||
| 297 | # github.com/coreos/go-systemd/v22 v22.3.2 | ||
| 298 | # [1] git ls-remote https://github.com/coreos/go-systemd 0b40357fd65760243a3eceb80a299772c23c8470 | ||
| 299 | SRCREV_v22="0b40357fd65760243a3eceb80a299772c23c8470" | ||
| 300 | 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" | ||
| 301 | |||
| 302 | # github.com/cpuguy83/go-md2man/v2 v2.0.1 | ||
| 303 | # [1] git ls-remote https://github.com/cpuguy83/go-md2man b1ec32e02fe539480dc03e3bf381c20066e7c6cc | ||
| 304 | SRCREV_v21="b1ec32e02fe539480dc03e3bf381c20066e7c6cc" | ||
| 305 | SRC_URI += "git://github.com/cpuguy83/go-md2man;name=v21;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cpuguy83/go-md2man/v2" | ||
| 306 | |||
| 307 | # github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3 | ||
| 308 | # [1] git ls-remote https://github.com/crackcomm/go-gitignore 887ab5e44cc38866fff9bc2f34c3a97e2a827c12 | ||
| 309 | SRCREV_go-gitignore="887ab5e44cc38866fff9bc2f34c3a97e2a827c12" | ||
| 310 | SRC_URI += "git://github.com/crackcomm/go-gitignore;name=go-gitignore;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/crackcomm/go-gitignore" | ||
| 311 | |||
| 312 | # github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e | ||
| 313 | # [1] git ls-remote https://github.com/distribution/distribution a01c71e2477eea211bbb83166061e103e0b2ec95 | ||
| 314 | SRCREV_v31="a01c71e2477eea211bbb83166061e103e0b2ec95" | ||
| 315 | SRC_URI += "git://github.com/distribution/distribution;name=v31;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/distribution/distribution/v3" | ||
| 316 | |||
| 317 | # github.com/docker/distribution v2.7.1+incompatible | ||
| 318 | # [1] git ls-remote https://github.com/docker/distribution ea7032ddc60c872197a0f57e49319bb6092548fe | ||
| 319 | SRCREV_distribution="ea7032ddc60c872197a0f57e49319bb6092548fe" | ||
| 320 | SRC_URI += "git://github.com/docker/distribution;name=distribution;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/distribution" | ||
| 321 | |||
| 322 | # github.com/docker/docker-credential-helpers v0.6.4 | ||
| 323 | # [1] git ls-remote https://github.com/docker/docker-credential-helpers fc9290adbcf1594e78910e2f0334090eaee0e1ee | ||
| 324 | SRCREV_docker-credential-helpers="fc9290adbcf1594e78910e2f0334090eaee0e1ee" | ||
| 325 | 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" | ||
| 326 | |||
| 327 | # github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c | ||
| 328 | # [1] git ls-remote https://github.com/docker/go-events e31b211e4f1cd09aa76fe4ac244571fab96ae47f | ||
| 329 | SRCREV_go-events="e31b211e4f1cd09aa76fe4ac244571fab96ae47f" | ||
| 330 | 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" | ||
| 331 | |||
| 332 | # github.com/docker/go-metrics v0.0.1 | ||
| 333 | # [1] git ls-remote https://github.com/docker/go-metrics b619b3592b65de4f087d9f16863a7e6ff905973c | ||
| 334 | SRCREV_go-metrics="b619b3592b65de4f087d9f16863a7e6ff905973c" | ||
| 335 | SRC_URI += "git://github.com/docker/go-metrics;name=go-metrics;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/go-metrics" | ||
| 336 | |||
| 337 | # github.com/godbus/dbus/v5 v5.0.6 | ||
| 338 | # [1] git ls-remote https://github.com/godbus/dbus daa017464e266380cdeb4e6f9613eba9182b59a3 | ||
| 339 | SRCREV_v5="daa017464e266380cdeb4e6f9613eba9182b59a3" | ||
| 340 | 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" | ||
| 341 | |||
| 342 | # github.com/gogo/googleapis v1.4.1 | ||
| 343 | # [1] git ls-remote https://github.com/gogo/googleapis 1f0e43f50bc0606e385ffae1bc80b5b231dcd042 | ||
| 344 | SRCREV_googleapis="1f0e43f50bc0606e385ffae1bc80b5b231dcd042" | ||
| 345 | SRC_URI += "git://github.com/gogo/googleapis;name=googleapis;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gogo/googleapis" | ||
| 346 | |||
| 347 | # github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da | ||
| 348 | # [1] git ls-remote https://github.com/golang/groupcache 41bb18bfe9da5321badc438f91158cd790a33aa3 | ||
| 349 | SRCREV_groupcache="41bb18bfe9da5321badc438f91158cd790a33aa3" | ||
| 350 | SRC_URI += "git://github.com/golang/groupcache;name=groupcache;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/golang/groupcache" | ||
| 351 | |||
| 352 | # github.com/golang/protobuf v1.5.2 | ||
| 353 | # [1] git ls-remote https://github.com/golang/protobuf ae97035608a719c7a1c1c41bed0ae0744bdb0c6f | ||
| 354 | SRCREV_protobuf1="ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" | ||
| 355 | SRC_URI += "git://github.com/golang/protobuf;name=protobuf1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/golang/protobuf" | ||
| 356 | |||
| 357 | # github.com/google/go-cmp v0.5.6 | ||
| 358 | # [1] git ls-remote https://github.com/google/go-cmp d103655696d8ae43c4125ee61454dbf03d8e8324 | ||
| 359 | SRCREV_go-cmp="d103655696d8ae43c4125ee61454dbf03d8e8324" | ||
| 360 | 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" | ||
| 361 | |||
| 362 | # github.com/google/uuid v1.3.0 | ||
| 363 | # [1] git ls-remote https://github.com/google/uuid 44b5fee7c49cf3bcdf723f106b36d56ef13ccc88 | ||
| 364 | SRCREV_uuid="44b5fee7c49cf3bcdf723f106b36d56ef13ccc88" | ||
| 365 | SRC_URI += "git://github.com/google/uuid;name=uuid;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/google/uuid" | ||
| 366 | |||
| 367 | # github.com/gorilla/mux v1.8.0 | ||
| 368 | # [1] git ls-remote https://github.com/gorilla/mux 98cb6bf42e086f6af920b965c38cacc07402d51b | ||
| 369 | SRCREV_mux="98cb6bf42e086f6af920b965c38cacc07402d51b" | ||
| 370 | SRC_URI += "git://github.com/gorilla/mux;name=mux;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gorilla/mux" | ||
| 371 | |||
| 372 | # github.com/hashicorp/errwrap v1.1.0 | ||
| 373 | # [1] git ls-remote https://github.com/hashicorp/errwrap 7b00e5db719c64d14dd0caaacbd13e76254d02c0 | ||
| 374 | SRCREV_errwrap="7b00e5db719c64d14dd0caaacbd13e76254d02c0" | ||
| 375 | SRC_URI += "git://github.com/hashicorp/errwrap;name=errwrap;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/hashicorp/errwrap" | ||
| 376 | |||
| 377 | # github.com/hashicorp/golang-lru v0.5.4 | ||
| 378 | # [1] git ls-remote https://github.com/hashicorp/golang-lru 14eae340515388ca95aa8e7b86f0de668e981f54 | ||
| 379 | SRCREV_golang-lru="14eae340515388ca95aa8e7b86f0de668e981f54" | ||
| 380 | SRC_URI += "git://github.com/hashicorp/golang-lru;name=golang-lru;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/hashicorp/golang-lru" | ||
| 381 | |||
| 382 | # github.com/imdario/mergo v0.3.12 | ||
| 383 | # [1] git ls-remote https://github.com/imdario/mergo 29fb3d3bdc5512887f1dc9aedde6a0fed407fa8f | ||
| 384 | SRCREV_mergo="29fb3d3bdc5512887f1dc9aedde6a0fed407fa8f" | ||
| 385 | SRC_URI += "git://github.com/imdario/mergo;name=mergo;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/imdario/mergo" | ||
| 386 | |||
| 387 | # github.com/inconshreveable/mousetrap v1.0.0 | ||
| 388 | # [1] git ls-remote https://github.com/inconshreveable/mousetrap 76626ae9c91c4f2a10f34cad8ce83ea42c93bb75 | ||
| 389 | SRCREV_mousetrap="76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" | ||
| 390 | SRC_URI += "git://github.com/inconshreveable/mousetrap;name=mousetrap;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/inconshreveable/mousetrap" | ||
| 391 | |||
| 392 | # github.com/ipfs/bbloom v0.0.4 | ||
| 393 | # [1] git ls-remote https://github.com/ipfs/bbloom e4526db325cffd444f0404aa2e3b4ed114650f75 | ||
| 394 | SRCREV_bbloom="e4526db325cffd444f0404aa2e3b4ed114650f75" | ||
| 395 | SRC_URI += "git://github.com/ipfs/bbloom;name=bbloom;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/bbloom" | ||
| 396 | |||
| 397 | # github.com/ipfs/go-block-format v0.0.3 | ||
| 398 | # [1] git ls-remote https://github.com/ipfs/go-block-format b30b45004baf0d2dcd3d1b5b5604fb4c0ccb0825 | ||
| 399 | SRCREV_go-block-format="b30b45004baf0d2dcd3d1b5b5604fb4c0ccb0825" | ||
| 400 | SRC_URI += "git://github.com/ipfs/go-block-format;name=go-block-format;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-block-format" | ||
| 401 | |||
| 402 | # github.com/ipfs/go-blockservice v0.1.7 | ||
| 403 | # [1] git ls-remote https://github.com/ipfs/go-blockservice 7e86180be5c2959033db973c0eae033de03dd423 | ||
| 404 | SRCREV_go-blockservice="7e86180be5c2959033db973c0eae033de03dd423" | ||
| 405 | SRC_URI += "git://github.com/ipfs/go-blockservice;name=go-blockservice;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-blockservice" | ||
| 406 | |||
| 407 | # github.com/ipfs/go-datastore v0.4.5 | ||
| 408 | # [1] git ls-remote https://github.com/ipfs/go-datastore 73ce3192124c5781bc875f2e5d4f483ab8de0d04 | ||
| 409 | SRCREV_go-datastore="73ce3192124c5781bc875f2e5d4f483ab8de0d04" | ||
| 410 | SRC_URI += "git://github.com/ipfs/go-datastore;name=go-datastore;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-datastore" | ||
| 411 | |||
| 412 | # github.com/ipfs/go-ipfs-blockstore v0.1.6 | ||
| 413 | # [1] git ls-remote https://github.com/ipfs/go-ipfs-blockstore 95a1a08b33f8e55a45a4c306f6f05cf91e8f0728 | ||
| 414 | SRCREV_go-ipfs-blockstore="95a1a08b33f8e55a45a4c306f6f05cf91e8f0728" | ||
| 415 | SRC_URI += "git://github.com/ipfs/go-ipfs-blockstore;name=go-ipfs-blockstore;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipfs-blockstore" | ||
| 416 | |||
| 417 | # github.com/ipfs/go-ipfs-cmds v0.6.0 | ||
| 418 | # [1] git ls-remote https://github.com/ipfs/go-ipfs-cmds 4ade007405e5d3befb14184290576c63cc43a6a3 | ||
| 419 | SRCREV_go-ipfs-cmds="4ade007405e5d3befb14184290576c63cc43a6a3" | ||
| 420 | SRC_URI += "git://github.com/ipfs/go-ipfs-cmds;name=go-ipfs-cmds;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipfs-cmds" | ||
| 421 | |||
| 422 | # github.com/ipfs/go-ipfs-ds-help v0.1.1 | ||
| 423 | # [1] git ls-remote https://github.com/ipfs/go-ipfs-ds-help 48b9cc210923d23b39582b5fa6670ed0d08dc2af | ||
| 424 | SRCREV_go-ipfs-ds-help="48b9cc210923d23b39582b5fa6670ed0d08dc2af" | ||
| 425 | SRC_URI += "git://github.com/ipfs/go-ipfs-ds-help;name=go-ipfs-ds-help;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipfs-ds-help" | ||
| 426 | |||
| 427 | # github.com/ipfs/go-ipfs-exchange-interface v0.0.1 | ||
| 428 | # [1] git ls-remote https://github.com/ipfs/go-ipfs-exchange-interface b6e88260772433e18af18bb3f237d78678e65f0b | ||
| 429 | SRCREV_go-ipfs-exchange-interface="b6e88260772433e18af18bb3f237d78678e65f0b" | ||
| 430 | SRC_URI += "git://github.com/ipfs/go-ipfs-exchange-interface;name=go-ipfs-exchange-interface;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipfs-exchange-interface" | ||
| 431 | |||
| 432 | # github.com/ipfs/go-ipfs-util v0.0.2 | ||
| 433 | # [1] git ls-remote https://github.com/ipfs/go-ipfs-util f4952d1c5a6a9431d6a4d5ea57c4818e6d199464 | ||
| 434 | SRCREV_go-ipfs-util="f4952d1c5a6a9431d6a4d5ea57c4818e6d199464" | ||
| 435 | SRC_URI += "git://github.com/ipfs/go-ipfs-util;name=go-ipfs-util;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipfs-util" | ||
| 436 | |||
| 437 | # github.com/ipfs/go-ipld-cbor v0.0.5 | ||
| 438 | # [1] git ls-remote https://github.com/ipfs/go-ipld-cbor f689d2bb3874cf3fafb71721cafb2c945234e781 | ||
| 439 | SRCREV_go-ipld-cbor="f689d2bb3874cf3fafb71721cafb2c945234e781" | ||
| 440 | SRC_URI += "git://github.com/ipfs/go-ipld-cbor;name=go-ipld-cbor;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipld-cbor" | ||
| 441 | |||
| 442 | # github.com/ipfs/go-ipld-format v0.2.0 | ||
| 443 | # [1] git ls-remote https://github.com/ipfs/go-ipld-format c582c36b708672f99752a0b6171adec7820e0049 | ||
| 444 | SRCREV_go-ipld-format="c582c36b708672f99752a0b6171adec7820e0049" | ||
| 445 | SRC_URI += "git://github.com/ipfs/go-ipld-format;name=go-ipld-format;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipld-format" | ||
| 446 | |||
| 447 | # github.com/ipfs/go-ipld-legacy v0.1.0 | ||
| 448 | # [1] git ls-remote https://github.com/ipfs/go-ipld-legacy 5fff53c64ec247be50252c474053d6720ad3e4d9 | ||
| 449 | SRCREV_go-ipld-legacy="5fff53c64ec247be50252c474053d6720ad3e4d9" | ||
| 450 | SRC_URI += "git://github.com/ipfs/go-ipld-legacy;name=go-ipld-legacy;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-ipld-legacy" | ||
| 451 | |||
| 452 | # github.com/ipfs/go-log v1.0.5 | ||
| 453 | # [1] git ls-remote https://github.com/ipfs/go-log 0e04229b160a92ebd2a924d9078e087161c8d53f | ||
| 454 | SRCREV_go-log="0e04229b160a92ebd2a924d9078e087161c8d53f" | ||
| 455 | SRC_URI += "git://github.com/ipfs/go-log;name=go-log;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-log" | ||
| 456 | |||
| 457 | # github.com/ipfs/go-log/v2 v2.1.3 | ||
| 458 | # [1] git ls-remote https://github.com/ipfs/go-log 7f9ba9d7836afbe44710289d1c3a7c111f093149 | ||
| 459 | SRCREV_v212="7f9ba9d7836afbe44710289d1c3a7c111f093149" | ||
| 460 | SRC_URI += "git://github.com/ipfs/go-log;name=v212;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-log/v2" | ||
| 461 | |||
| 462 | # github.com/ipfs/go-merkledag v0.4.0 | ||
| 463 | # [1] git ls-remote https://github.com/ipfs/go-merkledag 8794146d52c211b8af0456e734a248649e636be0 | ||
| 464 | SRCREV_go-merkledag="8794146d52c211b8af0456e734a248649e636be0" | ||
| 465 | SRC_URI += "git://github.com/ipfs/go-merkledag;name=go-merkledag;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-merkledag" | ||
| 466 | |||
| 467 | # github.com/ipfs/go-metrics-interface v0.0.1 | ||
| 468 | # [1] git ls-remote https://github.com/ipfs/go-metrics-interface 87aa106f53272f064ca7956a6db83f17a553f254 | ||
| 469 | SRCREV_go-metrics-interface="87aa106f53272f064ca7956a6db83f17a553f254" | ||
| 470 | SRC_URI += "git://github.com/ipfs/go-metrics-interface;name=go-metrics-interface;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-metrics-interface" | ||
| 471 | |||
| 472 | # github.com/ipfs/go-path v0.1.1 | ||
| 473 | # [1] git ls-remote https://github.com/ipfs/go-path 4eba8368b698abe6de153f2a2e3d579757ef182b | ||
| 474 | SRCREV_go-path="4eba8368b698abe6de153f2a2e3d579757ef182b" | ||
| 475 | SRC_URI += "git://github.com/ipfs/go-path;name=go-path;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-path" | ||
| 476 | |||
| 477 | # github.com/ipfs/go-unixfs v0.2.5 | ||
| 478 | # [1] git ls-remote https://github.com/ipfs/go-unixfs 9009a42bfd1370e009b6dd501c71cb644c789506 | ||
| 479 | SRCREV_go-unixfs="9009a42bfd1370e009b6dd501c71cb644c789506" | ||
| 480 | SRC_URI += "git://github.com/ipfs/go-unixfs;name=go-unixfs;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-unixfs" | ||
| 481 | |||
| 482 | # github.com/ipfs/go-verifcid v0.0.1 | ||
| 483 | # [1] git ls-remote https://github.com/ipfs/go-verifcid 34e41ba962e7ce0211a05915f788486c8db755f1 | ||
| 484 | SRCREV_go-verifcid="34e41ba962e7ce0211a05915f788486c8db755f1" | ||
| 485 | SRC_URI += "git://github.com/ipfs/go-verifcid;name=go-verifcid;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipfs/go-verifcid" | ||
| 486 | |||
| 487 | # github.com/ipld/go-codec-dagpb v1.3.0 | ||
| 488 | # [1] git ls-remote https://github.com/ipld/go-codec-dagpb 1305732016fb5bfec1b28f9fe7a686b12a407d74 | ||
| 489 | SRCREV_go-codec-dagpb="1305732016fb5bfec1b28f9fe7a686b12a407d74" | ||
| 490 | SRC_URI += "git://github.com/ipld/go-codec-dagpb;name=go-codec-dagpb;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipld/go-codec-dagpb" | ||
| 491 | |||
| 492 | # github.com/ipld/go-ipld-prime v0.11.0 | ||
| 493 | # [1] git ls-remote https://github.com/ipld/go-ipld-prime d229c642562a92a2d455b20b6f1ef0a11dc96ef2 | ||
| 494 | SRCREV_go-ipld-prime="d229c642562a92a2d455b20b6f1ef0a11dc96ef2" | ||
| 495 | SRC_URI += "git://github.com/ipld/go-ipld-prime;name=go-ipld-prime;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/ipld/go-ipld-prime" | ||
| 496 | |||
| 497 | # github.com/jbenet/goprocess v0.1.4 | ||
| 498 | # [1] git ls-remote https://github.com/jbenet/goprocess 23d20c20149e1f362afda26f4500cb9d6393f0ad | ||
| 499 | SRCREV_goprocess="23d20c20149e1f362afda26f4500cb9d6393f0ad" | ||
| 500 | SRC_URI += "git://github.com/jbenet/goprocess;name=goprocess;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/jbenet/goprocess" | ||
| 501 | |||
| 502 | # github.com/klauspost/compress v1.14.2 | ||
| 503 | # [1] git ls-remote https://github.com/klauspost/compress 7f260be218b66dc1c5b2d6be2d5c0925aa9a4a0d | ||
| 504 | SRCREV_compress="7f260be218b66dc1c5b2d6be2d5c0925aa9a4a0d" | ||
| 505 | SRC_URI += "git://github.com/klauspost/compress;name=compress;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/klauspost/compress" | ||
| 506 | |||
| 507 | # github.com/klauspost/cpuid/v2 v2.0.6 | ||
| 508 | # [1] git ls-remote https://github.com/klauspost/cpuid c6a3519c8125843cc14161fb2349bc3fd8b19643 | ||
| 509 | SRCREV_v2123="c6a3519c8125843cc14161fb2349bc3fd8b19643" | ||
| 510 | SRC_URI += "git://github.com/klauspost/cpuid;name=v2123;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/klauspost/cpuid/v2" | ||
| 511 | |||
| 512 | # github.com/libp2p/go-buffer-pool v0.0.2 | ||
| 513 | # [1] git ls-remote https://github.com/libp2p/go-buffer-pool e648d396dc83d0f1bddda8520042ae2380501dca | ||
| 514 | SRCREV_go-buffer-pool="e648d396dc83d0f1bddda8520042ae2380501dca" | ||
| 515 | SRC_URI += "git://github.com/libp2p/go-buffer-pool;name=go-buffer-pool;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/libp2p/go-buffer-pool" | ||
| 516 | |||
| 517 | # github.com/libp2p/go-libp2p-core v0.8.6 | ||
| 518 | # [1] git ls-remote https://github.com/libp2p/go-libp2p-core ef6e277df7422a37b1bbd92ac97f933d63d4cd97 | ||
| 519 | SRCREV_go-libp2p-core="ef6e277df7422a37b1bbd92ac97f933d63d4cd97" | ||
| 520 | SRC_URI += "git://github.com/libp2p/go-libp2p-core;name=go-libp2p-core;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/libp2p/go-libp2p-core" | ||
| 521 | |||
| 522 | # github.com/libp2p/go-openssl v0.0.7 | ||
| 523 | # [1] git ls-remote https://github.com/libp2p/go-openssl d9b640282843752442a8f28637156e13b1abd3f4 | ||
| 524 | SRCREV_go-openssl="d9b640282843752442a8f28637156e13b1abd3f4" | ||
| 525 | SRC_URI += "git://github.com/libp2p/go-openssl;name=go-openssl;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/libp2p/go-openssl" | ||
| 526 | |||
| 527 | # github.com/mattn/go-colorable v0.1.12 | ||
| 528 | # [1] git ls-remote https://github.com/mattn/go-colorable e1bb79c8d53c38a60962ad4b8f658226cc983710 | ||
| 529 | SRCREV_go-colorable="e1bb79c8d53c38a60962ad4b8f658226cc983710" | ||
| 530 | 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" | ||
| 531 | |||
| 532 | # github.com/mattn/go-shellwords v1.0.12 | ||
| 533 | # [1] git ls-remote https://github.com/mattn/go-shellwords 973b9d5391598d4ee601db46fa32f6e186a356ac | ||
| 534 | SRCREV_go-shellwords="973b9d5391598d4ee601db46fa32f6e186a356ac" | ||
| 535 | 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" | ||
| 536 | |||
| 537 | # github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 | ||
| 538 | # [1] git ls-remote https://github.com/matttproud/golang_protobuf_extensions c182affec369e30f25d3eb8cd8a478dee585ae7d | ||
| 539 | SRCREV_golang_protobuf_extensions="c182affec369e30f25d3eb8cd8a478dee585ae7d" | ||
| 540 | SRC_URI += "git://github.com/matttproud/golang_protobuf_extensions;name=golang_protobuf_extensions;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/matttproud/golang_protobuf_extensions" | ||
| 541 | |||
| 542 | # github.com/miekg/pkcs11 v1.0.3 | ||
| 543 | # [1] git ls-remote https://github.com/miekg/pkcs11 210dc1e16747c5ba98a03bcbcf728c38086ea357 | ||
| 544 | SRCREV_pkcs11="210dc1e16747c5ba98a03bcbcf728c38086ea357" | ||
| 545 | SRC_URI += "git://github.com/miekg/pkcs11;name=pkcs11;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/miekg/pkcs11" | ||
| 546 | |||
| 547 | # github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 | ||
| 548 | # [1] git ls-remote https://github.com/minio/blake2b-simd 3f5f724cb5b182a5c278d6d3d55b40e7f8c2efb4 | ||
| 549 | SRCREV_blake2b-simd="3f5f724cb5b182a5c278d6d3d55b40e7f8c2efb4" | ||
| 550 | SRC_URI += "git://github.com/minio/blake2b-simd;name=blake2b-simd;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/minio/blake2b-simd" | ||
| 551 | |||
| 552 | # github.com/minio/sha256-simd v1.0.0 | ||
| 553 | # [1] git ls-remote https://github.com/minio/sha256-simd 6a57409d8e0fa3ae883aee331b71aaa40d5a7dd9 | ||
| 554 | SRCREV_sha256-simd="6a57409d8e0fa3ae883aee331b71aaa40d5a7dd9" | ||
| 555 | 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" | ||
| 556 | |||
| 557 | # github.com/mitchellh/go-homedir v1.1.0 | ||
| 558 | # [1] git ls-remote https://github.com/mitchellh/go-homedir af06845cf3004701891bf4fdb884bfe4920b3727 | ||
| 559 | SRCREV_go-homedir="af06845cf3004701891bf4fdb884bfe4920b3727" | ||
| 560 | 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" | ||
| 561 | |||
| 562 | # github.com/mitchellh/mapstructure v1.4.3 | ||
| 563 | # [1] git ls-remote https://github.com/mitchellh/mapstructure b9b99d7d59762a5b2a43df840adc318b2fa229ee | ||
| 564 | SRCREV_mapstructure="b9b99d7d59762a5b2a43df840adc318b2fa229ee" | ||
| 565 | SRC_URI += "git://github.com/mitchellh/mapstructure;name=mapstructure;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mitchellh/mapstructure" | ||
| 566 | |||
| 567 | # github.com/moby/locker v1.0.1 | ||
| 568 | # [1] git ls-remote https://github.com/moby/locker e15721d7a0126008853f3cefbdbb368685cd1f4d | ||
| 569 | SRCREV_locker="e15721d7a0126008853f3cefbdbb368685cd1f4d" | ||
| 570 | SRC_URI += "git://github.com/moby/locker;name=locker;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/locker" | ||
| 571 | |||
| 572 | # github.com/moby/term v0.0.0-20210610120745-9d4ed1856297 | ||
| 573 | # [1] git ls-remote https://github.com/moby/term 9d4ed185629744f381f269030675cb1957e2da94 | ||
| 574 | SRCREV_term1="9d4ed185629744f381f269030675cb1957e2da94" | ||
| 575 | SRC_URI += "git://github.com/moby/term;name=term1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/term" | ||
| 576 | |||
| 577 | # github.com/morikuni/aec v1.0.0 | ||
| 578 | # [1] git ls-remote https://github.com/morikuni/aec 39771216ff4c63d11f5e604076f9c45e8be1067b | ||
| 579 | SRCREV_aec="39771216ff4c63d11f5e604076f9c45e8be1067b" | ||
| 580 | SRC_URI += "git://github.com/morikuni/aec;name=aec;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/morikuni/aec" | ||
| 581 | |||
| 582 | # github.com/mr-tron/base58 v1.2.0 | ||
| 583 | # [1] git ls-remote https://github.com/mr-tron/base58 cd0e5141f51dfcadb8311fd8e495eb11126a8010 | ||
| 584 | SRCREV_base58="cd0e5141f51dfcadb8311fd8e495eb11126a8010" | ||
| 585 | 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" | ||
| 586 | |||
| 587 | # github.com/multiformats/go-base32 v0.0.3 | ||
| 588 | # [1] git ls-remote https://github.com/multiformats/go-base32 a9c2755c3d1672dbe6a7e4a5d182169fa30b6a8e | ||
| 589 | SRCREV_go-base32="a9c2755c3d1672dbe6a7e4a5d182169fa30b6a8e" | ||
| 590 | 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" | ||
| 591 | |||
| 592 | # github.com/multiformats/go-base36 v0.1.0 | ||
| 593 | # [1] git ls-remote https://github.com/multiformats/go-base36 dc4afa6ad3b0720f4a1b282776db2a59ca9c8be7 | ||
| 594 | SRCREV_go-base36="dc4afa6ad3b0720f4a1b282776db2a59ca9c8be7" | ||
| 595 | 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" | ||
| 596 | |||
| 597 | # github.com/multiformats/go-multibase v0.0.3 | ||
| 598 | # [1] git ls-remote https://github.com/multiformats/go-multibase e2260b5ff35e4a37375ca184662ae0b9b0a661be | ||
| 599 | SRCREV_go-multibase="e2260b5ff35e4a37375ca184662ae0b9b0a661be" | ||
| 600 | 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" | ||
| 601 | |||
| 602 | # github.com/multiformats/go-multihash v0.0.15 | ||
| 603 | # [1] git ls-remote https://github.com/multiformats/go-multihash c3ba253d50cbad04fa3856bcda82b64d24711d3a | ||
| 604 | SRCREV_go-multihash="c3ba253d50cbad04fa3856bcda82b64d24711d3a" | ||
| 605 | 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" | ||
| 606 | |||
| 607 | # github.com/multiformats/go-varint v0.0.6 | ||
| 608 | # [1] git ls-remote https://github.com/multiformats/go-varint a3ded45ab16ca9f2f2a516e68053ffa7ebd9bb0e | ||
| 609 | SRCREV_go-varint="a3ded45ab16ca9f2f2a516e68053ffa7ebd9bb0e" | ||
| 610 | 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" | ||
| 611 | |||
| 612 | # github.com/opencontainers/runc v1.1.0 | ||
| 613 | # [1] git ls-remote https://github.com/opencontainers/runc b083ef4992ddc33fc7e699170c4abafa74d17818 | ||
| 614 | SRCREV_runc="b083ef4992ddc33fc7e699170c4abafa74d17818" | ||
| 615 | SRC_URI += "git://github.com/opencontainers/runc;name=runc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/opencontainers/runc" | ||
| 616 | |||
| 617 | # github.com/opencontainers/selinux v1.10.0 | ||
| 618 | # [1] git ls-remote https://github.com/opencontainers/selinux 036780110200290e6decd05ce62d7086bf0546f5 | ||
| 619 | SRCREV_selinux="036780110200290e6decd05ce62d7086bf0546f5" | ||
| 620 | SRC_URI += "git://github.com/opencontainers/selinux;name=selinux;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/opencontainers/selinux" | ||
| 621 | |||
| 622 | # github.com/opentracing/opentracing-go v1.2.0 | ||
| 623 | # [1] git ls-remote https://github.com/opentracing/opentracing-go d34af3eaa63c4d08ab54863a4bdd0daa45212e12 | ||
| 624 | SRCREV_opentracing-go="d34af3eaa63c4d08ab54863a4bdd0daa45212e12" | ||
| 625 | SRC_URI += "git://github.com/opentracing/opentracing-go;name=opentracing-go;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/opentracing/opentracing-go" | ||
| 626 | |||
| 627 | # github.com/pkg/errors v0.9.1 | ||
| 628 | # [1] git ls-remote https://github.com/pkg/errors 614d223910a179a466c1767a985424175c39b465 | ||
| 629 | SRCREV_errors="614d223910a179a466c1767a985424175c39b465" | ||
| 630 | SRC_URI += "git://github.com/pkg/errors;name=errors;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/pkg/errors" | ||
| 631 | |||
| 632 | # github.com/polydawn/refmt v0.0.0-20201211092308-30ac6d18308e | ||
| 633 | # [1] git ls-remote https://github.com/polydawn/refmt 30ac6d18308e584ca6a2e74ba81475559db94c5f | ||
| 634 | SRCREV_refmt="30ac6d18308e584ca6a2e74ba81475559db94c5f" | ||
| 635 | SRC_URI += "git://github.com/polydawn/refmt;name=refmt;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/polydawn/refmt" | ||
| 636 | |||
| 637 | # github.com/prometheus/client_golang v1.12.0 | ||
| 638 | # [1] git ls-remote https://github.com/prometheus/client_golang 01087964d02726ef7438fdb19c2672e6e5d0b48a | ||
| 639 | SRCREV_client_golang="01087964d02726ef7438fdb19c2672e6e5d0b48a" | ||
| 640 | SRC_URI += "git://github.com/prometheus/client_golang;name=client_golang;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/prometheus/client_golang" | ||
| 641 | |||
| 642 | # github.com/prometheus/client_model v0.2.0 | ||
| 643 | # [1] git ls-remote https://github.com/prometheus/client_model f44e7adcba5ee54c8a94709e6fc300d83245f171 | ||
| 644 | SRCREV_client_model="f44e7adcba5ee54c8a94709e6fc300d83245f171" | ||
| 645 | SRC_URI += "git://github.com/prometheus/client_model;name=client_model;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/prometheus/client_model" | ||
| 646 | |||
| 647 | # github.com/prometheus/common v0.32.1 | ||
| 648 | # [1] git ls-remote https://github.com/prometheus/common a8301e4aa43c56eadd119b45e363a94166508d45 | ||
| 649 | SRCREV_common="a8301e4aa43c56eadd119b45e363a94166508d45" | ||
| 650 | SRC_URI += "git://github.com/prometheus/common;name=common;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/prometheus/common" | ||
| 651 | |||
| 652 | # github.com/prometheus/procfs v0.7.3 | ||
| 653 | # [1] git ls-remote https://github.com/prometheus/procfs f436cbb89ece38bf080d446b3ca27053b305eaac | ||
| 654 | SRCREV_procfs="f436cbb89ece38bf080d446b3ca27053b305eaac" | ||
| 655 | SRC_URI += "git://github.com/prometheus/procfs;name=procfs;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/prometheus/procfs" | ||
| 656 | |||
| 657 | # github.com/rs/cors v1.7.0 | ||
| 658 | # [1] git ls-remote https://github.com/rs/cors db0fe48135e83b5812a5a31be0eea66984b1b521 | ||
| 659 | SRCREV_cors="db0fe48135e83b5812a5a31be0eea66984b1b521" | ||
| 660 | SRC_URI += "git://github.com/rs/cors;name=cors;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/rs/cors" | ||
| 661 | |||
| 662 | # github.com/russross/blackfriday/v2 v2.1.0 | ||
| 663 | # [1] git ls-remote https://github.com/russross/blackfriday 4c9bf9512682b995722660a4196c0013228e2049 | ||
| 664 | SRCREV_v21234="4c9bf9512682b995722660a4196c0013228e2049" | ||
| 665 | SRC_URI += "git://github.com/russross/blackfriday;name=v21234;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/russross/blackfriday/v2" | ||
| 666 | |||
| 667 | # github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 | ||
| 668 | # [1] git ls-remote https://github.com/spacemonkeygo/spacelog 2296661a0572a51438413369004fa931c2641923 | ||
| 669 | SRCREV_spacelog="2296661a0572a51438413369004fa931c2641923" | ||
| 670 | SRC_URI += "git://github.com/spacemonkeygo/spacelog;name=spacelog;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/spacemonkeygo/spacelog" | ||
| 671 | |||
| 672 | # github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 | ||
| 673 | # [1] git ls-remote https://github.com/stefanberger/go-pkcs11uri 78d3cae3a9805d89aa4fa80a362ca944c89a1b99 | ||
| 674 | SRCREV_go-pkcs11uri="78d3cae3a9805d89aa4fa80a362ca944c89a1b99" | ||
| 675 | 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" | ||
| 676 | |||
| 677 | # github.com/tidwall/match v1.1.1 | ||
| 678 | # [1] git ls-remote https://github.com/tidwall/match 4c9fc61b493b7aa0a3d347e9190aa78c5bec09cf | ||
| 679 | SRCREV_match="4c9fc61b493b7aa0a3d347e9190aa78c5bec09cf" | ||
| 680 | SRC_URI += "git://github.com/tidwall/match;name=match;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tidwall/match" | ||
| 681 | |||
| 682 | # github.com/tidwall/pretty v1.2.0 | ||
| 683 | # [1] git ls-remote https://github.com/tidwall/pretty aaa765e7476acb0028a854b85675801362cbdaa2 | ||
| 684 | SRCREV_pretty="aaa765e7476acb0028a854b85675801362cbdaa2" | ||
| 685 | SRC_URI += "git://github.com/tidwall/pretty;name=pretty;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tidwall/pretty" | ||
| 686 | |||
| 687 | # github.com/urfave/cli v1.22.4 | ||
| 688 | # [1] git ls-remote https://github.com/urfave/cli 053ba9dd02d2bfb768da2c1c50370c59d41dc04b | ||
| 689 | SRCREV_cli1="053ba9dd02d2bfb768da2c1c50370c59d41dc04b" | ||
| 690 | SRC_URI += "git://github.com/urfave/cli;name=cli1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/urfave/cli" | ||
| 691 | |||
| 692 | # github.com/vbatts/tar-split v0.11.2 | ||
| 693 | # [1] git ls-remote https://github.com/vbatts/tar-split 6f35a43a158e8592b08db7e910de4236256df15f | ||
| 694 | SRCREV_tar-split="6f35a43a158e8592b08db7e910de4236256df15f" | ||
| 695 | 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" | ||
| 696 | |||
| 697 | # github.com/whyrusleeping/cbor-gen v0.0.0-20200123233031-1cdf64d27158 | ||
| 698 | # [1] git ls-remote https://github.com/whyrusleeping/cbor-gen 1cdf64d27158b5db2dd11d30591f4a9be0cd55ab | ||
| 699 | SRCREV_cbor-gen="1cdf64d27158b5db2dd11d30591f4a9be0cd55ab" | ||
| 700 | SRC_URI += "git://github.com/whyrusleeping/cbor-gen;name=cbor-gen;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/whyrusleeping/cbor-gen" | ||
| 701 | |||
| 702 | # github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f | ||
| 703 | # [1] git ls-remote https://github.com/xeipuuv/gojsonpointer 4e3ac2762d5f479393488629ee9370b50873b3a6 | ||
| 704 | SRCREV_gojsonpointer="4e3ac2762d5f479393488629ee9370b50873b3a6" | ||
| 705 | SRC_URI += "git://github.com/xeipuuv/gojsonpointer;name=gojsonpointer;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonpointer" | ||
| 706 | |||
| 707 | # github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 | ||
| 708 | # [1] git ls-remote https://github.com/xeipuuv/gojsonreference bd5ef7bd5415a7ac448318e64f11a24cd21e594b | ||
| 709 | SRCREV_gojsonreference="bd5ef7bd5415a7ac448318e64f11a24cd21e594b" | ||
| 710 | SRC_URI += "git://github.com/xeipuuv/gojsonreference;name=gojsonreference;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonreference" | ||
| 711 | |||
| 712 | # github.com/xeipuuv/gojsonschema v1.2.0 | ||
| 713 | # [1] git ls-remote https://github.com/xeipuuv/gojsonschema 82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927 | ||
| 714 | SRCREV_gojsonschema="82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927" | ||
| 715 | SRC_URI += "git://github.com/xeipuuv/gojsonschema;name=gojsonschema;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonschema" | ||
| 716 | |||
| 717 | # go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 | ||
| 718 | # [1] git ls-remote https://github.com/mozilla-services/pkcs7 432b2356ecb18209c1cec25680b8a23632794f21 | ||
| 719 | SRCREV_pkcs7="432b2356ecb18209c1cec25680b8a23632794f21" | ||
| 720 | 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" | ||
| 721 | |||
| 722 | # go.opencensus.io v0.23.0 | ||
| 723 | # [1] git ls-remote https://github.com/census-instrumentation/opencensus-go 49838f207d61097fc0ebb8aeef306913388376ca | ||
| 724 | SRCREV_go.opencensus.io="49838f207d61097fc0ebb8aeef306913388376ca" | ||
| 725 | 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" | ||
| 726 | |||
| 727 | # go.uber.org/atomic v1.7.0 | ||
| 728 | # [1] git ls-remote https://github.com/uber-go/atomic 3f685f518c6a22050970a225fdf0097079f525f8 | ||
| 729 | SRCREV_atomic="3f685f518c6a22050970a225fdf0097079f525f8" | ||
| 730 | SRC_URI += "git://github.com/uber-go/atomic;name=atomic;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.uber.org/atomic" | ||
| 731 | |||
| 732 | # go.uber.org/multierr v1.7.0 | ||
| 733 | # [1] git ls-remote https://github.com/uber-go/multierr 19d9fff1d3b66750a134671435786579bc994737 | ||
| 734 | SRCREV_multierr="19d9fff1d3b66750a134671435786579bc994737" | ||
| 735 | SRC_URI += "git://github.com/uber-go/multierr;name=multierr;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.uber.org/multierr" | ||
| 736 | |||
| 737 | # go.uber.org/zap v1.17.0 | ||
| 738 | # [1] git ls-remote https://github.com/uber-go/zap 2908d3000567b86f0b7f1e99cc6bc5c9f30d43a0 | ||
| 739 | SRCREV_zap="2908d3000567b86f0b7f1e99cc6bc5c9f30d43a0" | ||
| 740 | SRC_URI += "git://github.com/uber-go/zap;name=zap;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.uber.org/zap" | ||
| 741 | |||
| 742 | # golang.org/x/text v0.3.7 | ||
| 743 | # [1] git ls-remote https://go.googlesource.com/text 3cd4007149f3f883d229d707172ed356727aae99 | ||
| 744 | SRCREV_text="3cd4007149f3f883d229d707172ed356727aae99" | ||
| 745 | SRC_URI += "git://go.googlesource.com/text;name=text;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.googlesource.com/text" | ||
| 746 | |||
| 747 | # golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 | ||
| 748 | # [1] git ls-remote https://go.googlesource.com/xerrors 5ec99f83aff198f5fbd629d6c8d8eb38a04218ca | ||
| 749 | SRCREV_xerrors="5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" | ||
| 750 | SRC_URI += "git://go.googlesource.com/xerrors;name=xerrors;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.googlesource.com/xerrors" | ||
| 751 | |||
| 752 | # google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350 | ||
| 753 | # [1] git ls-remote https://github.com/googleapis/go-genproto 9970aeb2e350469c6bdc3e220a3ddecf38a85f61 | ||
| 754 | SRCREV_genproto="9970aeb2e350469c6bdc3e220a3ddecf38a85f61" | ||
| 755 | 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" | ||
| 756 | |||
| 757 | # google.golang.org/grpc v1.44.0 | ||
| 758 | # [1] git ls-remote https://github.com/grpc/grpc-go b4c5e24c7373b22c6c38d68379c39ecdc616a968 | ||
| 759 | SRCREV_grpc="b4c5e24c7373b22c6c38d68379c39ecdc616a968" | ||
| 760 | 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" | ||
| 761 | |||
| 762 | # google.golang.org/protobuf v1.27.1 | ||
| 763 | # [1] git ls-remote https://github.com/protocolbuffers/protobuf-go b92717ecb630d4a4824b372bf98c729d87311a4d | ||
| 764 | SRCREV_protobuf12="b92717ecb630d4a4824b372bf98c729d87311a4d" | ||
| 765 | SRC_URI += "git://github.com/protocolbuffers/protobuf-go;name=protobuf12;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/google.golang.org/protobuf" | ||
| 766 | |||
| 767 | # gopkg.in/square/go-jose.v2 v2.5.1 | ||
| 768 | # [1] git ls-remote https://gopkg.in/square/go-jose.v2 c2ee37cc2bdff7151b3aaad8d7f3c62a5834ac75 | ||
| 769 | SRCREV_go-jose.v2="c2ee37cc2bdff7151b3aaad8d7f3c62a5834ac75" | ||
| 770 | SRC_URI += "git://gopkg.in/square/go-jose.v2;name=go-jose.v2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/gopkg.in/square/go-jose.v2" | ||
| 771 | |||
| 772 | # github.com/ktock/golang-lru v0.5.5-0.20211029085301-ec551be6f75c | ||
| 773 | # [1] git ls-remote https://github.com/ktock/golang-lru ec551be6f75c10a4f18e3c70a823d03420ee3d4f | ||
| 774 | SRCREV_golang-lru1="ec551be6f75c10a4f18e3c70a823d03420ee3d4f" | ||
| 775 | SRC_URI += "git://github.com/ktock/golang-lru;name=golang-lru1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/hashicorp/golang-lru " | ||
| 776 | |||
| 777 | |||
| 778 | |||
| 779 | # patches and config | ||
| 780 | SRC_URI += "file://0001-Makefile-allow-external-specification-of-build-setti.patch \ | ||
| 781 | file://modules.txt \ | ||
| 782 | " | ||
| 783 | |||
| 784 | SRC_URI[sha256sum] = "d7b05a9bff34dfb25abe7e5b1e54cf2607f953d91cb33fb231a4775a1a4afa3d" | ||
| 785 | |||
| 786 | LICENSE = "Apache-2.0" | ||
| 787 | LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
| 788 | |||
| 789 | GO_IMPORT = "import" | ||
| 790 | |||
| 791 | # S = "${WORKDIR}/git" | ||
| 792 | |||
| 793 | PV = "v0.17.0" | ||
| 794 | |||
| 795 | NERDCTL_PKG = "github.com/containerd/nerdctl" | ||
| 796 | |||
| 797 | inherit go goarch | ||
| 798 | inherit systemd pkgconfig | ||
| 799 | |||
| 800 | do_configure[noexec] = "1" | ||
| 801 | |||
| 802 | EXTRA_OEMAKE = " \ | ||
| 803 | PREFIX=${prefix} BINDIR=${bindir} LIBEXECDIR=${libexecdir} \ | ||
| 804 | ETCDIR=${sysconfdir} TMPFILESDIR=${nonarch_libdir}/tmpfiles.d \ | ||
| 805 | SYSTEMDDIR=${systemd_unitdir}/system USERSYSTEMDDIR=${systemd_unitdir}/user \ | ||
| 806 | " | ||
| 807 | |||
| 808 | PACKAGECONFIG ?= "" | ||
| 809 | |||
| 810 | do_compile() { | ||
| 811 | |||
| 812 | cd ${S}/src/import | ||
| 813 | |||
| 814 | export GOPATH="$GOPATH:${S}/src/import/.gopath" | ||
| 815 | |||
| 816 | # Pass the needed cflags/ldflags so that cgo | ||
| 817 | # can find the needed headers files and libraries | ||
| 818 | export GOARCH=${TARGET_GOARCH} | ||
| 819 | export CGO_ENABLED="1" | ||
| 820 | export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}" | ||
| 821 | export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" | ||
| 822 | |||
| 823 | export GOFLAGS="-mod=vendor" | ||
| 824 | |||
| 825 | # this moves all the fetches into the proper vendor structure | ||
| 826 | # expected for build | ||
| 827 | sites="github.com/Microsoft/go-winio:github.com/Microsoft/go-winio github.com/compose-spec/compose-go:github.com/compose-spec/compose-go github.com/containerd/cgroups:github.com/containerd/cgroups github.com/containerd/console:github.com/containerd/console github.com/containerd/containerd:github.com/containerd/containerd github.com/containerd/continuity:github.com/containerd/continuity github.com/containerd/go-cni:github.com/containerd/go-cni github.com/containerd/imgcrypt:github.com/containerd/imgcrypt github.com/containerd/stargz-snapshotter:github.com/containerd/stargz-snapshotter github.com/containerd/stargz-snapshotter/estargz:github.com/containerd/stargz-snapshotter//estargz github.com/containerd/stargz-snapshotter/ipfs:github.com/containerd/stargz-snapshotter//ipfs github.com/containerd/typeurl:github.com/containerd/typeurl github.com/containernetworking/cni:github.com/containernetworking/cni github.com/containernetworking/plugins:github.com/containernetworking/plugins github.com/cyphar/filepath-securejoin:github.com/cyphar/filepath-securejoin github.com/docker/cli:github.com/docker/cli github.com/docker/docker:github.com/docker/docker github.com/docker/go-connections:github.com/docker/go-connections github.com/docker/go-units:github.com/docker/go-units github.com/fatih/color:github.com/fatih/color github.com/gogo/protobuf:github.com/gogo/protobuf github.com/hashicorp/go-multierror:github.com/hashicorp/go-multierror github.com/ipfs/go-cid:github.com/ipfs/go-cid github.com/ipfs/go-ipfs-files:github.com/ipfs/go-ipfs-files github.com/ipfs/go-ipfs-http-client:github.com/ipfs/go-ipfs-http-client github.com/ipfs/interface-go-ipfs-core:github.com/ipfs/interface-go-ipfs-core github.com/jaytaylor/go-hostsfile:github.com/jaytaylor/go-hostsfile github.com/mattn/go-isatty:github.com/mattn/go-isatty github.com/moby/sys/mount:github.com/moby/sys/mount//mount github.com/moby/sys/mountinfo:github.com/moby/sys/mount//mountinfo github.com/moby/sys/signal:github.com/moby/sys/mount//signal github.com/multiformats/go-multiaddr:github.com/multiformats/go-multiaddr github.com/opencontainers/go-digest:github.com/opencontainers/go-digest github.com/opencontainers/image-spec:github.com/opencontainers/image-spec github.com/opencontainers/runtime-spec:github.com/opencontainers/runtime-spec github.com/pelletier/go-toml:github.com/pelletier/go-toml github.com/rootless-containers/bypass4netns:github.com/rootless-containers/bypass4netns github.com/rootless-containers/rootlesskit:github.com/rootless-containers/rootlesskit github.com/sirupsen/logrus:github.com/sirupsen/logrus github.com/spf13/cobra:github.com/spf13/cobra github.com/spf13/pflag:github.com/spf13/pflag github.com/tidwall/gjson:github.com/tidwall/gjson github.com/vishvananda/netlink:github.com/vishvananda/netlink github.com/vishvananda/netns:github.com/vishvananda/netns golang.org/x/crypto:go.googlesource.com/crypto golang.org/x/net:go.googlesource.com/net golang.org/x/sync:go.googlesource.com/sync golang.org/x/sys:go.googlesource.com/sys golang.org/x/term:go.googlesource.com/term gopkg.in/yaml.v2:gopkg.in/yaml.v2 gotest.tools/v3:github.com/gotestyourself/gotest.tools/v3 github.com/Azure/go-ansiterm:github.com/Azure/go-ansiterm github.com/Microsoft/hcsshim:github.com/Microsoft/hcsshim github.com/beorn7/perks:github.com/beorn7/perks github.com/btcsuite/btcd:github.com/btcsuite/btcd github.com/cespare/xxhash/v2:github.com/cespare/xxhash/v2 github.com/cilium/ebpf:github.com/cilium/ebpf github.com/containerd/fifo:github.com/containerd/fifo github.com/containerd/ttrpc:github.com/containerd/ttrpc github.com/containers/ocicrypt:github.com/containers/ocicrypt github.com/coreos/go-systemd/v22:github.com/coreos/go-systemd/v22 github.com/cpuguy83/go-md2man/v2:github.com/cpuguy83/go-md2man/v2 github.com/crackcomm/go-gitignore:github.com/crackcomm/go-gitignore github.com/distribution/distribution/v3:github.com/distribution/distribution/v3 github.com/docker/distribution:github.com/docker/distribution github.com/docker/docker-credential-helpers:github.com/docker/docker-credential-helpers github.com/docker/go-events:github.com/docker/go-events github.com/docker/go-metrics:github.com/docker/go-metrics github.com/godbus/dbus/v5:github.com/godbus/dbus/v5 github.com/gogo/googleapis:github.com/gogo/googleapis github.com/golang/groupcache:github.com/golang/groupcache github.com/golang/protobuf:github.com/golang/protobuf github.com/google/go-cmp:github.com/google/go-cmp github.com/google/uuid:github.com/google/uuid github.com/gorilla/mux:github.com/gorilla/mux github.com/hashicorp/errwrap:github.com/hashicorp/errwrap github.com/hashicorp/golang-lru:github.com/hashicorp/golang-lru github.com/imdario/mergo:github.com/imdario/mergo github.com/inconshreveable/mousetrap:github.com/inconshreveable/mousetrap github.com/ipfs/bbloom:github.com/ipfs/bbloom github.com/ipfs/go-block-format:github.com/ipfs/go-block-format github.com/ipfs/go-blockservice:github.com/ipfs/go-blockservice github.com/ipfs/go-datastore:github.com/ipfs/go-datastore github.com/ipfs/go-ipfs-blockstore:github.com/ipfs/go-ipfs-blockstore github.com/ipfs/go-ipfs-cmds:github.com/ipfs/go-ipfs-cmds github.com/ipfs/go-ipfs-ds-help:github.com/ipfs/go-ipfs-ds-help github.com/ipfs/go-ipfs-exchange-interface:github.com/ipfs/go-ipfs-exchange-interface github.com/ipfs/go-ipfs-util:github.com/ipfs/go-ipfs-util github.com/ipfs/go-ipld-cbor:github.com/ipfs/go-ipld-cbor github.com/ipfs/go-ipld-format:github.com/ipfs/go-ipld-format github.com/ipfs/go-ipld-legacy:github.com/ipfs/go-ipld-legacy github.com/ipfs/go-log:github.com/ipfs/go-log github.com/ipfs/go-log/v2:github.com/ipfs/go-log/v2 github.com/ipfs/go-merkledag:github.com/ipfs/go-merkledag github.com/ipfs/go-metrics-interface:github.com/ipfs/go-metrics-interface github.com/ipfs/go-path:github.com/ipfs/go-path github.com/ipfs/go-unixfs:github.com/ipfs/go-unixfs github.com/ipfs/go-verifcid:github.com/ipfs/go-verifcid github.com/ipld/go-codec-dagpb:github.com/ipld/go-codec-dagpb github.com/ipld/go-ipld-prime:github.com/ipld/go-ipld-prime github.com/jbenet/goprocess:github.com/jbenet/goprocess github.com/klauspost/compress:github.com/klauspost/compress github.com/klauspost/cpuid/v2:github.com/klauspost/cpuid/v2 github.com/libp2p/go-buffer-pool:github.com/libp2p/go-buffer-pool github.com/libp2p/go-libp2p-core:github.com/libp2p/go-libp2p-core github.com/libp2p/go-openssl:github.com/libp2p/go-openssl github.com/mattn/go-colorable:github.com/mattn/go-colorable github.com/mattn/go-shellwords:github.com/mattn/go-shellwords github.com/matttproud/golang_protobuf_extensions:github.com/matttproud/golang_protobuf_extensions github.com/miekg/pkcs11:github.com/miekg/pkcs11 github.com/minio/blake2b-simd:github.com/minio/blake2b-simd github.com/minio/sha256-simd:github.com/minio/sha256-simd github.com/mitchellh/go-homedir:github.com/mitchellh/go-homedir github.com/mitchellh/mapstructure:github.com/mitchellh/mapstructure github.com/moby/locker:github.com/moby/locker github.com/moby/term:github.com/moby/term github.com/morikuni/aec:github.com/morikuni/aec github.com/mr-tron/base58:github.com/mr-tron/base58 github.com/multiformats/go-base32:github.com/multiformats/go-base32 github.com/multiformats/go-base36:github.com/multiformats/go-base36 github.com/multiformats/go-multibase:github.com/multiformats/go-multibase github.com/multiformats/go-multihash:github.com/multiformats/go-multihash github.com/multiformats/go-varint:github.com/multiformats/go-varint github.com/opencontainers/runc:github.com/opencontainers/runc github.com/opencontainers/selinux:github.com/opencontainers/selinux github.com/opentracing/opentracing-go:github.com/opentracing/opentracing-go github.com/pkg/errors:github.com/pkg/errors github.com/polydawn/refmt:github.com/polydawn/refmt github.com/prometheus/client_golang:github.com/prometheus/client_golang github.com/prometheus/client_model:github.com/prometheus/client_model github.com/prometheus/common:github.com/prometheus/common github.com/prometheus/procfs:github.com/prometheus/procfs github.com/rs/cors:github.com/rs/cors github.com/russross/blackfriday/v2:github.com/russross/blackfriday/v2 github.com/spacemonkeygo/spacelog:github.com/spacemonkeygo/spacelog github.com/stefanberger/go-pkcs11uri:github.com/stefanberger/go-pkcs11uri github.com/tidwall/match:github.com/tidwall/match github.com/tidwall/pretty:github.com/tidwall/pretty github.com/urfave/cli:github.com/urfave/cli github.com/vbatts/tar-split:github.com/vbatts/tar-split github.com/whyrusleeping/cbor-gen:github.com/whyrusleeping/cbor-gen github.com/xeipuuv/gojsonpointer:github.com/xeipuuv/gojsonpointer github.com/xeipuuv/gojsonreference:github.com/xeipuuv/gojsonreference github.com/xeipuuv/gojsonschema:github.com/xeipuuv/gojsonschema go.mozilla.org/pkcs7:go.mozilla.org/pkcs7 go.opencensus.io:go.opencensus.io go.uber.org/atomic:go.uber.org/atomic go.uber.org/multierr:go.uber.org/multierr go.uber.org/zap:go.uber.org/zap golang.org/x/text:go.googlesource.com/text golang.org/x/xerrors:go.googlesource.com/xerrors google.golang.org/genproto:google.golang.org/genproto google.golang.org/grpc:google.golang.org/grpc google.golang.org/protobuf:google.golang.org/protobuf gopkg.in/square/go-jose.v2:gopkg.in/square/go-jose.v2 github.com/hashicorp/golang-lru :github.com/hashicorp/golang-lru " | ||
| 828 | for s in $sites; do | ||
| 829 | site_dest=$(echo $s | cut -d: -f1) | ||
| 830 | site_source=$(echo $s | cut -d: -f2) | ||
| 831 | mkdir -p vendor.copy/$site_dest | ||
| 832 | [ -n "$(ls -A vendor.copy/$site_dest/*.go 2> /dev/null)" ] && { echo "[INFO] vendor.fetch/$site_source -> $site_dest: go copy skipped (files present)" ; true ; } || { echo "[INFO] $site_dest: copying .go files" ; rsync -a --exclude='vendor/' --exclude='.git/' vendor.fetch/$site_source/ vendor.copy/$site_dest ; } | ||
| 833 | done | ||
| 834 | |||
| 835 | # our copied .go files are to be used for the build | ||
| 836 | ln -sf vendor.copy vendor | ||
| 837 | # inform go that we know what we are doing | ||
| 838 | cp ${WORKDIR}/modules.txt vendor/ | ||
| 839 | |||
| 840 | oe_runmake GO=${GO} BUILDTAGS="${BUILDTAGS}" binaries | ||
| 841 | } | ||
| 842 | |||
| 843 | do_install() { | ||
| 844 | install -d "${D}${BIN_PREFIX}/bin" | ||
| 845 | install -m 755 "${S}/src/import/_output/nerdctl" "${D}${BIN_PREFIX}/bin" | ||
| 846 | } | ||
| 847 | |||
| 848 | INHIBIT_PACKAGE_STRIP = "1" | ||
| 849 | INSANE_SKIP:${PN} += "ldflags already-stripped" | ||
| 850 | |||
