diff options
| author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-10-15 21:36:20 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-10-25 15:08:39 -0400 |
| commit | 75de565e3b5ef4372f4d5849fbb1fb42cac00ced (patch) | |
| tree | 2055e44b9e7ad000afc37d72d48a3dbbd579eb1f | |
| parent | a2c5c5280fc1640e67095fa1bfe9e0a3396e7a65 (diff) | |
| download | meta-virtualization-75de565e3b5ef4372f4d5849fbb1fb42cac00ced.tar.gz | |
docker-compose2: introduce go version of docker-compose
Introducing a recipe to build (and create a vendor directory) for the
docker-compose2 command, which is a go implementation of he formely
python3 docker-compose.
This co-exists (for now) with the python version.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
| -rw-r--r-- | recipes-containers/docker-compose/docker-compose_git.bb | 81 | ||||
| -rw-r--r-- | recipes-containers/docker-compose/files/modules.txt | 273 | ||||
| -rw-r--r-- | recipes-containers/docker-compose/relocation.inc | 157 | ||||
| -rw-r--r-- | recipes-containers/docker-compose/src_uri.inc | 658 |
4 files changed, 1169 insertions, 0 deletions
diff --git a/recipes-containers/docker-compose/docker-compose_git.bb b/recipes-containers/docker-compose/docker-compose_git.bb new file mode 100644 index 00000000..abc5b0ea --- /dev/null +++ b/recipes-containers/docker-compose/docker-compose_git.bb | |||
| @@ -0,0 +1,81 @@ | |||
| 1 | HOMEPAGE = "https://github.com/docker/compose" | ||
| 2 | SUMMARY = "Multi-container orchestration for Docker" | ||
| 3 | DESCRIPTION = "Docker compose v2" | ||
| 4 | |||
| 5 | DEPENDS = " \ | ||
| 6 | go-md2man \ | ||
| 7 | rsync-native \ | ||
| 8 | " | ||
| 9 | |||
| 10 | # Specify the first two important SRCREVs as the format | ||
| 11 | SRCREV_FORMAT="compose_survey" | ||
| 12 | SRCREV_compose = "b15df818c759b355b03ed70505ffa451301eb566" | ||
| 13 | |||
| 14 | SRC_URI = "git://github.com/docker/compose;name=compose;branch=v2;protocol=https" | ||
| 15 | |||
| 16 | include src_uri.inc | ||
| 17 | |||
| 18 | # patches and config | ||
| 19 | SRC_URI += "file://modules.txt" | ||
| 20 | |||
| 21 | SRC_URI[sha256sum] = "d7b05a9bff34dfb25abe7e5b1e54cf2607f953d91cb33fb231a4775a1a4afa3d" | ||
| 22 | |||
| 23 | LICENSE = "Apache-2.0" | ||
| 24 | LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=175792518e4ac015ab6696d16c4f607e" | ||
| 25 | |||
| 26 | GO_IMPORT = "import" | ||
| 27 | |||
| 28 | PV = "v2.11.2" | ||
| 29 | |||
| 30 | COMPOSE_PKG = "github.com/docker/compose/v2" | ||
| 31 | |||
| 32 | inherit go goarch | ||
| 33 | inherit pkgconfig | ||
| 34 | |||
| 35 | do_configure[noexec] = "1" | ||
| 36 | |||
| 37 | PACKAGECONFIG ?= "" | ||
| 38 | |||
| 39 | include relocation.inc | ||
| 40 | |||
| 41 | do_compile() { | ||
| 42 | cd ${S}/src/import | ||
| 43 | |||
| 44 | export GOPATH="$GOPATH:${S}/src/import/.gopath" | ||
| 45 | |||
| 46 | # Pass the needed cflags/ldflags so that cgo | ||
| 47 | # can find the needed headers files and libraries | ||
| 48 | export GOARCH=${TARGET_GOARCH} | ||
| 49 | export CGO_ENABLED="1" | ||
| 50 | export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}" | ||
| 51 | export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" | ||
| 52 | |||
| 53 | export GOFLAGS="-mod=vendor -trimpath" | ||
| 54 | |||
| 55 | # our copied .go files are to be used for the build | ||
| 56 | ln -sf vendor.copy vendor | ||
| 57 | # inform go that we know what we are doing | ||
| 58 | cp ${WORKDIR}/modules.txt vendor/ | ||
| 59 | |||
| 60 | GO_LDFLAGS="-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}" | ||
| 61 | GO_BUILDTAGS="" | ||
| 62 | mkdir -p ./bin | ||
| 63 | ${GO} build $GOFLAGS -tags "$GO_BUILDTAGS" -ldflags "$GO_LDFLAGS" -o ./bin/docker-compose ./cmd | ||
| 64 | } | ||
| 65 | |||
| 66 | do_install() { | ||
| 67 | #install -d "${D}${BIN_PREFIX}/bin" | ||
| 68 | #install -m 755 "${S}/src/import/bin/docker-compose" "${D}${BIN_PREFIX}/bin" | ||
| 69 | |||
| 70 | # commonly installed to: /usr/lib/docker/cli-plugins/ | ||
| 71 | install -d "${D}${libdir}/docker/cli-plugins/" | ||
| 72 | install -m 755 "${S}/src/import/bin/docker-compose" "${D}${libdir}/docker/cli-plugins/" | ||
| 73 | |||
| 74 | } | ||
| 75 | |||
| 76 | RDEPENDS:${PN} += " docker" | ||
| 77 | |||
| 78 | FILES:${PN} += " ${libdir}/docker/cli-plugins/" | ||
| 79 | |||
| 80 | INHIBIT_PACKAGE_STRIP = "1" | ||
| 81 | INSANE_SKIP:${PN} += "ldflags already-stripped" | ||
diff --git a/recipes-containers/docker-compose/files/modules.txt b/recipes-containers/docker-compose/files/modules.txt new file mode 100644 index 00000000..c132fbff --- /dev/null +++ b/recipes-containers/docker-compose/files/modules.txt | |||
| @@ -0,0 +1,273 @@ | |||
| 1 | # github.com/AlecAivazis/survey/v2 v2.3.6 | ||
| 2 | ## explicit | ||
| 3 | # github.com/buger/goterm v1.0.4 | ||
| 4 | ## explicit | ||
| 5 | # github.com/cnabio/cnab-to-oci v0.3.7 | ||
| 6 | ## explicit | ||
| 7 | # github.com/compose-spec/compose-go v1.6.0 | ||
| 8 | ## explicit | ||
| 9 | # github.com/containerd/console v1.0.3 | ||
| 10 | ## explicit | ||
| 11 | # github.com/containerd/containerd v1.6.8 | ||
| 12 | ## explicit | ||
| 13 | # github.com/distribution/distribution/v3 v3.0.0-20220907155224-78b9c98c5c31 | ||
| 14 | ## explicit | ||
| 15 | # github.com/docker/buildx v0.8.2 | ||
| 16 | ## explicit | ||
| 17 | # github.com/docker/cli v20.10.17+incompatible | ||
| 18 | ## explicit | ||
| 19 | # github.com/docker/cli-docs-tool v0.5.0 | ||
| 20 | ## explicit | ||
| 21 | # github.com/docker/docker v20.10.17+incompatible | ||
| 22 | ## explicit | ||
| 23 | # github.com/docker/go-connections v0.4.0 | ||
| 24 | ## explicit | ||
| 25 | # github.com/docker/go-units v0.5.0 | ||
| 26 | ## explicit | ||
| 27 | # github.com/golang/mock v1.6.0 | ||
| 28 | ## explicit | ||
| 29 | # github.com/hashicorp/go-multierror v1.1.1 | ||
| 30 | ## explicit | ||
| 31 | # github.com/hashicorp/go-version v1.6.0 | ||
| 32 | ## explicit | ||
| 33 | # github.com/mattn/go-isatty v0.0.16 | ||
| 34 | ## explicit | ||
| 35 | # github.com/mattn/go-shellwords v1.0.12 | ||
| 36 | ## explicit | ||
| 37 | # github.com/moby/buildkit v0.10.4 | ||
| 38 | ## explicit | ||
| 39 | # github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae | ||
| 40 | ## explicit | ||
| 41 | # github.com/morikuni/aec v1.0.0 | ||
| 42 | ## explicit | ||
| 43 | # github.com/opencontainers/go-digest v1.0.0 | ||
| 44 | ## explicit | ||
| 45 | # github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 | ||
| 46 | ## explicit | ||
| 47 | # github.com/pkg/errors v0.9.1 | ||
| 48 | ## explicit | ||
| 49 | # github.com/sirupsen/logrus v1.9.0 | ||
| 50 | ## explicit | ||
| 51 | # github.com/spf13/cobra v1.6.0 | ||
| 52 | ## explicit | ||
| 53 | # github.com/spf13/pflag v1.0.5 | ||
| 54 | ## explicit | ||
| 55 | # github.com/stretchr/testify v1.8.0 | ||
| 56 | ## explicit | ||
| 57 | # github.com/theupdateframework/notary v0.7.0 | ||
| 58 | ## explicit | ||
| 59 | # golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde | ||
| 60 | ## explicit | ||
| 61 | # gopkg.in/yaml.v2 v2.4.0 | ||
| 62 | ## explicit | ||
| 63 | # gotest.tools v2.2.0+incompatible | ||
| 64 | ## explicit | ||
| 65 | # gotest.tools/v3 v3.4.0 | ||
| 66 | ## explicit | ||
| 67 | # github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 | ||
| 68 | ## explicit | ||
| 69 | # github.com/Masterminds/semver v1.5.0 | ||
| 70 | ## explicit | ||
| 71 | # github.com/Microsoft/go-winio v0.5.2 | ||
| 72 | ## explicit | ||
| 73 | # github.com/beorn7/perks v1.0.1 | ||
| 74 | ## explicit | ||
| 75 | # github.com/cespare/xxhash/v2 v2.1.2 | ||
| 76 | ## explicit | ||
| 77 | # github.com/cnabio/cnab-go v0.23.4 | ||
| 78 | ## explicit | ||
| 79 | # github.com/containerd/continuity v0.2.3-0.20220330195504-d132b287edc8 | ||
| 80 | ## explicit | ||
| 81 | # github.com/containerd/ttrpc v1.1.0 | ||
| 82 | ## explicit | ||
| 83 | # github.com/containerd/typeurl v1.0.2 | ||
| 84 | ## explicit | ||
| 85 | # github.com/davecgh/go-spew v1.1.1 | ||
| 86 | ## explicit | ||
| 87 | # github.com/docker/distribution v2.8.1+incompatible | ||
| 88 | ## explicit | ||
| 89 | # github.com/docker/docker-credential-helpers v0.6.4 | ||
| 90 | ## explicit | ||
| 91 | # github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c | ||
| 92 | ## explicit | ||
| 93 | # github.com/docker/go-metrics v0.0.1 | ||
| 94 | ## explicit | ||
| 95 | # github.com/felixge/httpsnoop v1.0.2 | ||
| 96 | ## explicit | ||
| 97 | # github.com/fvbommel/sortorder v1.0.2 | ||
| 98 | ## explicit | ||
| 99 | # github.com/go-logr/logr v1.2.3 | ||
| 100 | ## explicit | ||
| 101 | # github.com/go-logr/stdr v1.2.2 | ||
| 102 | ## explicit | ||
| 103 | # github.com/gofrs/flock v0.8.0 | ||
| 104 | ## explicit | ||
| 105 | # github.com/gogo/googleapis v1.4.1 | ||
| 106 | ## explicit | ||
| 107 | # github.com/gogo/protobuf v1.3.2 | ||
| 108 | ## explicit | ||
| 109 | # github.com/golang/protobuf v1.5.2 | ||
| 110 | ## explicit | ||
| 111 | # github.com/google/go-cmp v0.5.8 | ||
| 112 | ## explicit | ||
| 113 | # github.com/google/gofuzz v1.2.0 | ||
| 114 | ## explicit | ||
| 115 | # github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 | ||
| 116 | ## explicit | ||
| 117 | # github.com/gorilla/mux v1.8.0 | ||
| 118 | ## explicit | ||
| 119 | # github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 | ||
| 120 | ## explicit | ||
| 121 | # github.com/grpc-ecosystem/grpc-gateway v1.16.0 | ||
| 122 | ## explicit | ||
| 123 | # github.com/hashicorp/errwrap v1.1.0 | ||
| 124 | ## explicit | ||
| 125 | # github.com/imdario/mergo v0.3.13 | ||
| 126 | ## explicit | ||
| 127 | # github.com/inconshreveable/mousetrap v1.0.1 | ||
| 128 | ## explicit | ||
| 129 | # github.com/json-iterator/go v1.1.12 | ||
| 130 | ## explicit | ||
| 131 | # github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 | ||
| 132 | ## explicit | ||
| 133 | # github.com/klauspost/compress v1.15.1 | ||
| 134 | ## explicit | ||
| 135 | # github.com/mattn/go-colorable v0.1.12 | ||
| 136 | ## explicit | ||
| 137 | # github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 | ||
| 138 | ## explicit | ||
| 139 | # github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b | ||
| 140 | ## explicit | ||
| 141 | # github.com/miekg/pkcs11 v1.1.1 | ||
| 142 | ## explicit | ||
| 143 | # github.com/mitchellh/mapstructure v1.5.0 | ||
| 144 | ## explicit | ||
| 145 | # github.com/moby/locker v1.0.1 | ||
| 146 | ## explicit | ||
| 147 | # github.com/moby/sys/signal v0.6.0 | ||
| 148 | ## explicit | ||
| 149 | # github.com/moby/sys/symlink v0.2.0 | ||
| 150 | ## explicit | ||
| 151 | # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd | ||
| 152 | ## explicit | ||
| 153 | # github.com/modern-go/reflect2 v1.0.2 | ||
| 154 | ## explicit | ||
| 155 | # github.com/opencontainers/runc v1.1.2 | ||
| 156 | ## explicit | ||
| 157 | # github.com/pelletier/go-toml v1.9.4 | ||
| 158 | ## explicit | ||
| 159 | # github.com/pmezard/go-difflib v1.0.0 | ||
| 160 | ## explicit | ||
| 161 | # github.com/prometheus/client_golang v1.12.1 | ||
| 162 | ## explicit | ||
| 163 | # github.com/prometheus/client_model v0.2.0 | ||
| 164 | ## explicit | ||
| 165 | # github.com/prometheus/common v0.32.1 | ||
| 166 | ## explicit | ||
| 167 | # github.com/prometheus/procfs v0.7.3 | ||
| 168 | ## explicit | ||
| 169 | # github.com/qri-io/jsonpointer v0.1.1 | ||
| 170 | ## explicit | ||
| 171 | # github.com/qri-io/jsonschema v0.2.2-0.20210831022256-780655b2ba0e | ||
| 172 | ## explicit | ||
| 173 | # github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 | ||
| 174 | ## explicit | ||
| 175 | # github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea | ||
| 176 | ## explicit | ||
| 177 | # github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f | ||
| 178 | ## explicit | ||
| 179 | # github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb | ||
| 180 | ## explicit | ||
| 181 | # github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 | ||
| 182 | ## explicit | ||
| 183 | # github.com/xeipuuv/gojsonschema v1.2.0 | ||
| 184 | ## explicit | ||
| 185 | # go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 | ||
| 186 | ## explicit | ||
| 187 | # go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 | ||
| 188 | ## explicit | ||
| 189 | # go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 | ||
| 190 | ## explicit | ||
| 191 | # go.opentelemetry.io/otel v1.10.0 | ||
| 192 | ## explicit | ||
| 193 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 | ||
| 194 | ## explicit | ||
| 195 | # go.opentelemetry.io/otel/internal/metric v0.27.0 | ||
| 196 | ## explicit | ||
| 197 | # go.opentelemetry.io/otel/metric v0.27.0 | ||
| 198 | ## explicit | ||
| 199 | # go.opentelemetry.io/otel/sdk v1.4.1 | ||
| 200 | ## explicit | ||
| 201 | # go.opentelemetry.io/otel/trace v1.10.0 | ||
| 202 | ## explicit | ||
| 203 | # go.opentelemetry.io/proto/otlp v0.12.0 | ||
| 204 | ## explicit | ||
| 205 | # golang.org/x/crypto v0.0.0-20220214200702-86341886e292 | ||
| 206 | ## explicit | ||
| 207 | # golang.org/x/net v0.0.0-20220906165146-f3363e06e74c | ||
| 208 | ## explicit | ||
| 209 | # golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 | ||
| 210 | ## explicit | ||
| 211 | # golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab | ||
| 212 | ## explicit | ||
| 213 | # golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 | ||
| 214 | ## explicit | ||
| 215 | # golang.org/x/text v0.3.7 | ||
| 216 | ## explicit | ||
| 217 | # golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 | ||
| 218 | ## explicit | ||
| 219 | # google.golang.org/appengine v1.6.7 | ||
| 220 | ## explicit | ||
| 221 | # google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106 | ||
| 222 | ## explicit | ||
| 223 | # google.golang.org/grpc v1.45.0 | ||
| 224 | ## explicit | ||
| 225 | # google.golang.org/protobuf v1.27.1 | ||
| 226 | ## explicit | ||
| 227 | # gopkg.in/inf.v0 v0.9.1 | ||
| 228 | ## explicit | ||
| 229 | # gopkg.in/yaml.v3 v3.0.1 | ||
| 230 | ## explicit | ||
| 231 | # k8s.io/apimachinery v0.24.1 | ||
| 232 | ## explicit | ||
| 233 | # k8s.io/client-go v0.24.1 | ||
| 234 | ## explicit | ||
| 235 | # k8s.io/klog/v2 v2.60.1 | ||
| 236 | ## explicit | ||
| 237 | # k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 | ||
| 238 | ## explicit | ||
| 239 | # sigs.k8s.io/structured-merge-diff/v4 v4.2.1 | ||
| 240 | ## explicit | ||
| 241 | # sigs.k8s.io/yaml v1.2.0 | ||
| 242 | ## explicit | ||
| 243 | # github.com/cenkalti/backoff/v4 v4.1.2 | ||
| 244 | ## explicit | ||
| 245 | # github.com/cyberphone/json-canonicalization v0.0.0-20210303052042-6bc126869bf4 | ||
| 246 | ## explicit | ||
| 247 | # github.com/googleapis/gnostic v0.5.5 | ||
| 248 | ## explicit | ||
| 249 | # github.com/moby/spdystream v0.2.0 | ||
| 250 | ## explicit | ||
| 251 | # github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 | ||
| 252 | ## explicit | ||
| 253 | # github.com/zmap/zcrypto v0.0.0-20220605182715-4dfcec6e9a8c | ||
| 254 | ## explicit | ||
| 255 | # github.com/zmap/zlint v1.1.0 | ||
| 256 | ## explicit | ||
| 257 | # go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 | ||
| 258 | ## explicit | ||
| 259 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.4.1 | ||
| 260 | ## explicit | ||
| 261 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.4.1 | ||
| 262 | ## explicit | ||
| 263 | # k8s.io/api v0.24.1 | ||
| 264 | ## explicit | ||
| 265 | # github.com/docker/cli => github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible | ||
| 266 | # github.com/docker/docker => github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible | ||
| 267 | # github.com/opencontainers/runc => github.com/opencontainers/runc v1.1.2 | ||
| 268 | # k8s.io/api => k8s.io/api v0.22.4 | ||
| 269 | # k8s.io/apimachinery => k8s.io/apimachinery v0.22.4 | ||
| 270 | # k8s.io/client-go => k8s.io/client-go v0.22.4 | ||
| 271 | |||
| 272 | # github.com/gofrs/uuid v4.2.0+incompatible | ||
| 273 | ## explicit | ||
diff --git a/recipes-containers/docker-compose/relocation.inc b/recipes-containers/docker-compose/relocation.inc new file mode 100644 index 00000000..54810ee4 --- /dev/null +++ b/recipes-containers/docker-compose/relocation.inc | |||
| @@ -0,0 +1,157 @@ | |||
| 1 | sites="github.com/AlecAivazis/survey/v2:github.com/AlecAivazis/survey/v2 \ | ||
| 2 | github.com/buger/goterm:github.com/buger/goterm \ | ||
| 3 | github.com/cnabio/cnab-to-oci:github.com/cnabio/cnab-to-oci \ | ||
| 4 | github.com/compose-spec/compose-go:github.com/compose-spec/compose-go \ | ||
| 5 | github.com/containerd/console:github.com/containerd/console \ | ||
| 6 | github.com/containerd/containerd:github.com/containerd/containerd \ | ||
| 7 | github.com/distribution/distribution/v3:github.com/distribution/distribution/v3 \ | ||
| 8 | github.com/docker/cli:github.com/docker/cli \ | ||
| 9 | github.com/docker/cli-docs-tool:github.com/docker/cli-docs-tool \ | ||
| 10 | github.com/docker/docker:github.com/docker/docker \ | ||
| 11 | github.com/docker/docker:github.com/docker/docker83b51522df43866e39f7c757a6ab84ef4050eeb3 \ | ||
| 12 | github.com/docker/go-connections:github.com/docker/go-connections \ | ||
| 13 | github.com/docker/go-units:github.com/docker/go-units \ | ||
| 14 | github.com/golang/mock:github.com/golang/mock \ | ||
| 15 | github.com/hashicorp/go-multierror:github.com/hashicorp/go-multierror \ | ||
| 16 | github.com/hashicorp/go-version:github.com/hashicorp/go-version \ | ||
| 17 | github.com/mattn/go-isatty:github.com/mattn/go-isatty \ | ||
| 18 | github.com/mattn/go-shellwords:github.com/mattn/go-shellwords \ | ||
| 19 | github.com/moby/buildkit:github.com/moby/buildkit \ | ||
| 20 | github.com/moby/term:github.com/moby/term \ | ||
| 21 | github.com/morikuni/aec:github.com/morikuni/aec \ | ||
| 22 | github.com/opencontainers/go-digest:github.com/opencontainers/go-digest \ | ||
| 23 | github.com/opencontainers/image-spec:github.com/opencontainers/image-spec \ | ||
| 24 | github.com/pkg/errors:github.com/pkg/errors \ | ||
| 25 | github.com/sirupsen/logrus:github.com/sirupsen/logrus \ | ||
| 26 | github.com/spf13/cobra:github.com/spf13/cobra \ | ||
| 27 | github.com/spf13/pflag:github.com/spf13/pflag \ | ||
| 28 | github.com/stretchr/testify:github.com/stretchr/testify \ | ||
| 29 | github.com/theupdateframework/notary:github.com/theupdateframework/notary \ | ||
| 30 | golang.org/x/sync:golang.org/x/sync \ | ||
| 31 | gopkg.in/yaml.v2:gopkg.in/yaml.v2 \ | ||
| 32 | gotest.tools:github.com/gotestyourself/gotest.tools \ | ||
| 33 | gotest.tools/v3:github.com/gotestyourself/gotest.toolsf086d2783c5b3a2a21b482ec19c1c310e68f4d18 \ | ||
| 34 | github.com/Azure/go-ansiterm:github.com/Azure/go-ansiterm \ | ||
| 35 | github.com/Masterminds/semver:github.com/Masterminds/semver \ | ||
| 36 | github.com/Microsoft/go-winio:github.com/Microsoft/go-winio \ | ||
| 37 | github.com/beorn7/perks:github.com/beorn7/perks \ | ||
| 38 | github.com/cespare/xxhash/v2:github.com/cespare/xxhash/v2 \ | ||
| 39 | github.com/cnabio/cnab-go:github.com/cnabio/cnab-go \ | ||
| 40 | github.com/containerd/continuity:github.com/containerd/continuity \ | ||
| 41 | github.com/containerd/ttrpc:github.com/containerd/ttrpc \ | ||
| 42 | github.com/containerd/typeurl:github.com/containerd/typeurl \ | ||
| 43 | github.com/davecgh/go-spew:github.com/davecgh/go-spew \ | ||
| 44 | github.com/docker/distribution:github.com/docker/distribution \ | ||
| 45 | github.com/docker/docker-credential-helpers:github.com/docker/docker-credential-helpers \ | ||
| 46 | github.com/docker/go:github.com/docker/go \ | ||
| 47 | github.com/docker/go-metrics:github.com/docker/go-metrics \ | ||
| 48 | github.com/felixge/httpsnoop:github.com/felixge/httpsnoop \ | ||
| 49 | github.com/fvbommel/sortorder:github.com/fvbommel/sortorder \ | ||
| 50 | github.com/go-logr/logr:github.com/go-logr/logr \ | ||
| 51 | github.com/go-logr/stdr:github.com/go-logr/stdr \ | ||
| 52 | github.com/gofrs/flock:github.com/gofrs/flock \ | ||
| 53 | github.com/gogo/googleapis:github.com/gogo/googleapis \ | ||
| 54 | github.com/gogo/protobuf:github.com/gogo/protobuf \ | ||
| 55 | github.com/golang/protobuf:github.com/golang/protobuf \ | ||
| 56 | github.com/google/go-cmp:github.com/google/go-cmp \ | ||
| 57 | github.com/google/gofuzz:github.com/google/gofuzz \ | ||
| 58 | github.com/google/shlex:github.com/google/shlex \ | ||
| 59 | github.com/gorilla/mux:github.com/gorilla/mux \ | ||
| 60 | github.com/grpc-ecosystem/go-grpc-middleware:github.com/grpc-ecosystem/go-grpc-middleware \ | ||
| 61 | github.com/grpc-ecosystem/grpc-gateway:github.com/grpc-ecosystem/grpc-gateway \ | ||
| 62 | github.com/hashicorp/errwrap:github.com/hashicorp/errwrap \ | ||
| 63 | github.com/imdario/mergo:github.com/imdario/mergo \ | ||
| 64 | github.com/inconshreveable/mousetrap:github.com/inconshreveable/mousetrap \ | ||
| 65 | github.com/json-iterator/go:github.com/json-iterator/go \ | ||
| 66 | github.com/kballard/go-shellquote:github.com/kballard/go-shellquote \ | ||
| 67 | github.com/klauspost/compress:github.com/klauspost/compress \ | ||
| 68 | github.com/mattn/go-colorable:github.com/mattn/go-colorable \ | ||
| 69 | github.com/matttproud/golang_protobuf_extensions:github.com/matttproud/golang_protobuf_extensions \ | ||
| 70 | github.com/mgutz/ansi:github.com/mgutz/ansi \ | ||
| 71 | github.com/miekg/pkcs11:github.com/miekg/pkcs11 \ | ||
| 72 | github.com/mitchellh/mapstructure:github.com/mitchellh/mapstructure \ | ||
| 73 | github.com/moby/locker:github.com/moby/locker \ | ||
| 74 | github.com/moby/sys/signal:github.com/moby/sys/signal//signal \ | ||
| 75 | github.com/moby/sys/symlink:github.com/moby/sys/symlink//symlink \ | ||
| 76 | github.com/modern-go/concurrent:github.com/modern-go/concurrent \ | ||
| 77 | github.com/modern-go/reflect2:github.com/modern-go/reflect2 \ | ||
| 78 | github.com/opencontainers/runc:github.com/opencontainers/runc \ | ||
| 79 | github.com/pelletier/go-toml:github.com/pelletier/go-toml \ | ||
| 80 | github.com/pmezard/go-difflib:github.com/pmezard/go-difflib \ | ||
| 81 | github.com/prometheus/client_golang:github.com/prometheus/client_golang \ | ||
| 82 | github.com/prometheus/client_model:github.com/prometheus/client_model \ | ||
| 83 | github.com/prometheus/common:github.com/prometheus/common \ | ||
| 84 | github.com/prometheus/procfs:github.com/prometheus/procfs \ | ||
| 85 | github.com/qri-io/jsonpointer:github.com/qri-io/jsonpointer \ | ||
| 86 | github.com/qri-io/jsonschema:github.com/qri-io/jsonschema \ | ||
| 87 | github.com/tonistiigi/fsutil:github.com/tonistiigi/fsutil \ | ||
| 88 | github.com/tonistiigi/units:github.com/tonistiigi/units \ | ||
| 89 | github.com/tonistiigi/vt100:github.com/tonistiigi/vt100 \ | ||
| 90 | github.com/xeipuuv/gojsonpointer:github.com/xeipuuv/gojsonpointer \ | ||
| 91 | github.com/xeipuuv/gojsonreference:github.com/xeipuuv/gojsonreference \ | ||
| 92 | github.com/xeipuuv/gojsonschema:github.com/xeipuuv/gojsonschema \ | ||
| 93 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc:github.com/open-telemetry/opentelemetry-go-contrib/instrumentation/google.golang.org/grpc/otelgrpc//instrumentation/google.golang.org/grpc/otelgrpc \ | ||
| 94 | go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace:github.com/open-telemetry/opentelemetry-go-contrib/instrumentation/google.golang.org/grpc/otelgrpc//instrumentation/net/http/httptrace/otelhttptrace \ | ||
| 95 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp:github.com/open-telemetry/opentelemetry-go-contrib/instrumentation/google.golang.org/grpc/otelgrpc//instrumentation/net/http/otelhttp \ | ||
| 96 | go.opentelemetry.io/otel:go.opentelemetry.io/otel \ | ||
| 97 | go.opentelemetry.io/otel/exporters/otlp/otlptrace:github.com/open-telemetry/opentelemetry-go/exporters/otlp/otlptrace//exporters/otlp/otlptrace:force \ | ||
| 98 | go.opentelemetry.io/otel/internal/metric:github.com/open-telemetry/opentelemetry-go/internal/metric//internal/metric:force \ | ||
| 99 | go.opentelemetry.io/otel/metric:github.com/open-telemetry/opentelemetry-go/metric//metric:force \ | ||
| 100 | go.opentelemetry.io/otel/sdk:github.com/open-telemetry/opentelemetry-go/exporters/otlp/otlptrace//sdk:force \ | ||
| 101 | go.opentelemetry.io/otel/trace:go.opentelemetry.io/otel//trace:force \ | ||
| 102 | go.opentelemetry.io/otel/exporters/otlp/internal/retry:github.com/open-telemetry/opentelemetry-go/exporters/otlp/otlptrace//exporters/otlp/internal/retry:force \ | ||
| 103 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc:github.com/open-telemetry/opentelemetry-go/exporters/otlp/otlptrace//exporters/otlp/otlptrace/otlptracegrpc:force \ | ||
| 104 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp:github.com/open-telemetry/opentelemetry-go/exporters/otlp/otlptrace//exporters/otlp/otlptrace/otlptracehttp:force \ | ||
| 105 | go.opentelemetry.io/proto/otlp:github.com/open-telemetry/opentelemetry-proto-go/otlp//otlp:force \ | ||
| 106 | golang.org/x/crypto:golang.org/x/crypto \ | ||
| 107 | golang.org/x/net:golang.org/x/net \ | ||
| 108 | golang.org/x/oauth2:golang.org/x/oauth2 \ | ||
| 109 | golang.org/x/sys:golang.org/x/sys \ | ||
| 110 | golang.org/x/term:golang.org/x/term \ | ||
| 111 | golang.org/x/text:golang.org/x/text \ | ||
| 112 | golang.org/x/time:golang.org/x/time \ | ||
| 113 | google.golang.org/appengine:github.com/golang/appengine \ | ||
| 114 | google.golang.org/genproto:github.com/googleapis/go-genproto \ | ||
| 115 | google.golang.org/grpc:github.com/grpc/grpc-go \ | ||
| 116 | google.golang.org/protobuf:github.com/protocolbuffers/protobuf-go \ | ||
| 117 | gopkg.in/inf.v0:gopkg.in/inf.v0 \ | ||
| 118 | gopkg.in/yaml.v3:gopkg.in/yaml.v3 \ | ||
| 119 | k8s.io/klog/v2:k8s.io/klog/v2 \ | ||
| 120 | k8s.io/utils:k8s.io/utils \ | ||
| 121 | sigs.k8s.io/structured-merge-diff/v4:sigs.k8s.io/structured-merge-diff/v4 \ | ||
| 122 | sigs.k8s.io/yaml:sigs.k8s.io/yaml \ | ||
| 123 | github.com/cenkalti/backoff/v4:github.com/cenkalti/backoff/v4 \ | ||
| 124 | github.com/cyberphone/json-canonicalization:github.com/cyberphone/json-canonicalization \ | ||
| 125 | github.com/googleapis/gnostic:github.com/googleapis/gnostic \ | ||
| 126 | github.com/moby/spdystream:github.com/moby/spdystream \ | ||
| 127 | github.com/serialx/hashring:github.com/serialx/hashring \ | ||
| 128 | github.com/zmap/zcrypto:github.com/zmap/zcrypto \ | ||
| 129 | github.com/zmap/zlint:github.com/zmap/zlint \ | ||
| 130 | k8s.io/api:k8s.io/api \ | ||
| 131 | k8s.io/apimachinery:k8s.io/apimachinery \ | ||
| 132 | k8s.io/client-go:k8s.io/client-go \ | ||
| 133 | github.com/docker/buildx:github.com/docker/buildx \ | ||
| 134 | github.com/moby/sys/mount:github.com/moby/sys/mount//mount \ | ||
| 135 | github.com/moby/sys/mountinfo:github.com/moby/sys/mountinfo//mountinfo \ | ||
| 136 | github.com/moby/sys/signal:github.com/moby/sys/mountinfo//signal \ | ||
| 137 | github.com/moby/sys/symlink:github.com/moby/sys/symlink//symlink \ | ||
| 138 | " | ||
| 139 | |||
| 140 | do_compile:prepend() { | ||
| 141 | cd ${S}/src/import | ||
| 142 | # this moves all the fetches into the proper vendor structure | ||
| 143 | # expected for build | ||
| 144 | for s in ${sites}; do | ||
| 145 | site_dest=$(echo $s | cut -d: -f1) | ||
| 146 | site_source=$(echo $s | cut -d: -f2) | ||
| 147 | force_flag=$(echo $s | cut -d: -f3) | ||
| 148 | mkdir -p vendor.copy/$site_dest | ||
| 149 | if [ -n "$force_flag" ]; then | ||
| 150 | echo "[INFO] $site_dest: force copying .go files" | ||
| 151 | rm -rf vendor.copy/$site_dest | ||
| 152 | rsync -a --exclude='vendor/' --exclude='.git/' vendor.fetch/$site_source/ vendor.copy/$site_dest | ||
| 153 | else | ||
| 154 | [ -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 ; } | ||
| 155 | fi | ||
| 156 | done | ||
| 157 | } \ No newline at end of file | ||
diff --git a/recipes-containers/docker-compose/src_uri.inc b/recipes-containers/docker-compose/src_uri.inc new file mode 100644 index 00000000..b3fdf248 --- /dev/null +++ b/recipes-containers/docker-compose/src_uri.inc | |||
| @@ -0,0 +1,658 @@ | |||
| 1 | # github.com/AlecAivazis/survey/v2 v2.3.6 | ||
| 2 | # [1] git ls-remote https://github.com/AlecAivazis/survey 55474c34196ae637a7633f511e63509d19188b59 | ||
| 3 | SRCREV_v2="55474c34196ae637a7633f511e63509d19188b59" | ||
| 4 | SRC_URI += "git://github.com/AlecAivazis/survey;name=v2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/AlecAivazis/survey/v2" | ||
| 5 | |||
| 6 | # github.com/buger/goterm v1.0.4 | ||
| 7 | # [1] git ls-remote https://github.com/buger/goterm a73545aae7d693f786ce4cc687460efca4845f31 | ||
| 8 | SRCREV_goterm="a73545aae7d693f786ce4cc687460efca4845f31" | ||
| 9 | SRC_URI += "git://github.com/buger/goterm;name=goterm;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/buger/goterm" | ||
| 10 | |||
| 11 | # github.com/cnabio/cnab-to-oci v0.3.7 | ||
| 12 | # [1] git ls-remote https://github.com/cnabio/cnab-to-oci fadbd1723115c53acb8007c36a855af1bac57d34 | ||
| 13 | SRCREV_cnab-to-oci="fadbd1723115c53acb8007c36a855af1bac57d34" | ||
| 14 | SRC_URI += "git://github.com/cnabio/cnab-to-oci;name=cnab-to-oci;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cnabio/cnab-to-oci" | ||
| 15 | |||
| 16 | # github.com/compose-spec/compose-go v1.6.0 | ||
| 17 | # [1] git ls-remote https://github.com/compose-spec/compose-go 08a21dff3db4be06ac783b3eaea2cd9de9cc0f81 | ||
| 18 | SRCREV_compose-go="08a21dff3db4be06ac783b3eaea2cd9de9cc0f81" | ||
| 19 | 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" | ||
| 20 | |||
| 21 | # github.com/containerd/console v1.0.3 | ||
| 22 | # [1] git ls-remote https://github.com/containerd/console b5cb846c9186d67bcae3ce3c324e47cd317d9527 | ||
| 23 | SRCREV_console="b5cb846c9186d67bcae3ce3c324e47cd317d9527" | ||
| 24 | SRC_URI += "git://github.com/containerd/console;name=console;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/console" | ||
| 25 | |||
| 26 | # github.com/containerd/containerd v1.6.8 | ||
| 27 | # [1] git ls-remote https://github.com/containerd/containerd 9cd3357b7fd7218e4aec3eae239db1f68a5a6ec6 | ||
| 28 | SRCREV_containerd="9cd3357b7fd7218e4aec3eae239db1f68a5a6ec6" | ||
| 29 | SRC_URI += "git://github.com/containerd/containerd;name=containerd;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/containerd" | ||
| 30 | |||
| 31 | # github.com/distribution/distribution/v3 v3.0.0-20220907155224-78b9c98c5c31 | ||
| 32 | # [1] git ls-remote https://github.com/distribution/distribution 78b9c98c5c31c30d74f9acb7d96f98552f2cf78f | ||
| 33 | SRCREV_v3="78b9c98c5c31c30d74f9acb7d96f98552f2cf78f" | ||
| 34 | SRC_URI += "git://github.com/distribution/distribution;name=v3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/distribution/distribution/v3" | ||
| 35 | |||
| 36 | # github.com/docker/cli-docs-tool v0.5.0 | ||
| 37 | # [1] git ls-remote https://github.com/docker/cli-docs-tool 77abede22166eaea4af7335096bdcedd043f5b19 | ||
| 38 | SRCREV_cli-docs-tool="77abede22166eaea4af7335096bdcedd043f5b19" | ||
| 39 | SRC_URI += "git://github.com/docker/cli-docs-tool;name=cli-docs-tool;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/cli-docs-tool" | ||
| 40 | |||
| 41 | # github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible | ||
| 42 | # [1] git ls-remote https://github.com/docker/docker 83b51522df43866e39f7c757a6ab84ef4050eeb3 | ||
| 43 | SRCREV_docker="83b51522df43866e39f7c757a6ab84ef4050eeb3" | ||
| 44 | SRC_URI += "git://github.com/docker/docker;name=docker;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/docker" | ||
| 45 | |||
| 46 | # github.com/docker/go-connections v0.4.0 | ||
| 47 | # [1] git ls-remote https://github.com/docker/go-connections 7395e3f8aa162843a74ed6d48e79627d9792ac55 | ||
| 48 | SRCREV_go-connections="7395e3f8aa162843a74ed6d48e79627d9792ac55" | ||
| 49 | 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" | ||
| 50 | |||
| 51 | # github.com/docker/go-units v0.5.0 | ||
| 52 | # [1] git ls-remote https://github.com/docker/go-units e682442797b36348f8e1f98defdbf32bac0b6c6f | ||
| 53 | SRCREV_go-units="e682442797b36348f8e1f98defdbf32bac0b6c6f" | ||
| 54 | 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" | ||
| 55 | |||
| 56 | # github.com/golang/mock v1.6.0 | ||
| 57 | # [1] git ls-remote https://github.com/golang/mock aba2ff9a6844d5e3289e8472d3217d5b3090f083 | ||
| 58 | SRCREV_mock="aba2ff9a6844d5e3289e8472d3217d5b3090f083" | ||
| 59 | SRC_URI += "git://github.com/golang/mock;name=mock;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/golang/mock" | ||
| 60 | |||
| 61 | # github.com/hashicorp/go-multierror v1.1.1 | ||
| 62 | # [1] git ls-remote https://github.com/hashicorp/go-multierror 9974e9ec57696378079ecc3accd3d6f29401b3a0 | ||
| 63 | SRCREV_go-multierror="9974e9ec57696378079ecc3accd3d6f29401b3a0" | ||
| 64 | 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" | ||
| 65 | |||
| 66 | # github.com/hashicorp/go-version v1.6.0 | ||
| 67 | # [1] git ls-remote https://github.com/hashicorp/go-version 78d058c5618891f74d604bd15356fca690b64d8a | ||
| 68 | SRCREV_go-version="78d058c5618891f74d604bd15356fca690b64d8a" | ||
| 69 | SRC_URI += "git://github.com/hashicorp/go-version;name=go-version;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/hashicorp/go-version" | ||
| 70 | |||
| 71 | # github.com/mattn/go-isatty v0.0.16 | ||
| 72 | # [1] git ls-remote https://github.com/mattn/go-isatty 13e91bf4058fb93d5629deb7b2e3763ec8f4fdf8 | ||
| 73 | SRCREV_go-isatty="13e91bf4058fb93d5629deb7b2e3763ec8f4fdf8" | ||
| 74 | 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" | ||
| 75 | |||
| 76 | # github.com/mattn/go-shellwords v1.0.12 | ||
| 77 | # [1] git ls-remote https://github.com/mattn/go-shellwords 973b9d5391598d4ee601db46fa32f6e186a356ac | ||
| 78 | SRCREV_go-shellwords="973b9d5391598d4ee601db46fa32f6e186a356ac" | ||
| 79 | 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" | ||
| 80 | |||
| 81 | # github.com/moby/buildkit v0.10.4 | ||
| 82 | # [1] git ls-remote https://github.com/moby/buildkit a2ba6869363812a210fcc3ded6926757ab780b5f | ||
| 83 | SRCREV_buildkit="a2ba6869363812a210fcc3ded6926757ab780b5f" | ||
| 84 | SRC_URI += "git://github.com/moby/buildkit;name=buildkit;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/buildkit" | ||
| 85 | |||
| 86 | # github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae | ||
| 87 | # [1] git ls-remote https://github.com/moby/term 39b0c02b01ae42267247a54c2bd47c43672d3315 | ||
| 88 | SRCREV_term="39b0c02b01ae42267247a54c2bd47c43672d3315" | ||
| 89 | SRC_URI += "git://github.com/moby/term;name=term;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/term" | ||
| 90 | |||
| 91 | # github.com/morikuni/aec v1.0.0 | ||
| 92 | # [1] git ls-remote https://github.com/morikuni/aec 39771216ff4c63d11f5e604076f9c45e8be1067b | ||
| 93 | SRCREV_aec="39771216ff4c63d11f5e604076f9c45e8be1067b" | ||
| 94 | SRC_URI += "git://github.com/morikuni/aec;name=aec;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/morikuni/aec" | ||
| 95 | |||
| 96 | # github.com/opencontainers/go-digest v1.0.0 | ||
| 97 | # [1] git ls-remote https://github.com/opencontainers/go-digest ea51bea511f75cfa3ef6098cc253c5c3609b037a | ||
| 98 | SRCREV_go-digest="ea51bea511f75cfa3ef6098cc253c5c3609b037a" | ||
| 99 | 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" | ||
| 100 | |||
| 101 | # github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 | ||
| 102 | # [1] git ls-remote https://github.com/opencontainers/image-spec c5a74bcca799bef045e7fbe74e1b75580fd18d4c | ||
| 103 | SRCREV_image-spec="c5a74bcca799bef045e7fbe74e1b75580fd18d4c" | ||
| 104 | 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" | ||
| 105 | |||
| 106 | # github.com/pkg/errors v0.9.1 | ||
| 107 | # [1] git ls-remote https://github.com/pkg/errors 614d223910a179a466c1767a985424175c39b465 | ||
| 108 | SRCREV_errors="614d223910a179a466c1767a985424175c39b465" | ||
| 109 | SRC_URI += "git://github.com/pkg/errors;name=errors;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/pkg/errors" | ||
| 110 | |||
| 111 | # github.com/sirupsen/logrus v1.9.0 | ||
| 112 | # [1] git ls-remote https://github.com/sirupsen/logrus f8bf7650dccb756cea26edaf9217aab85500fe07 | ||
| 113 | SRCREV_logrus="f8bf7650dccb756cea26edaf9217aab85500fe07" | ||
| 114 | SRC_URI += "git://github.com/sirupsen/logrus;name=logrus;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/sirupsen/logrus" | ||
| 115 | |||
| 116 | # github.com/spf13/cobra v1.6.0 | ||
| 117 | # [1] git ls-remote https://github.com/spf13/cobra 860791844ed3a2e544a9b9bbbcb14144a948ad20 | ||
| 118 | SRCREV_cobra="860791844ed3a2e544a9b9bbbcb14144a948ad20" | ||
| 119 | SRC_URI += "git://github.com/spf13/cobra;name=cobra;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/spf13/cobra" | ||
| 120 | |||
| 121 | # github.com/spf13/pflag v1.0.5 | ||
| 122 | # [1] git ls-remote https://github.com/spf13/pflag 2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab | ||
| 123 | SRCREV_pflag="2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" | ||
| 124 | SRC_URI += "git://github.com/spf13/pflag;name=pflag;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/spf13/pflag" | ||
| 125 | |||
| 126 | # github.com/stretchr/testify v1.8.0 | ||
| 127 | # [1] git ls-remote https://github.com/stretchr/testify 181cea6eab8b2de7071383eca4be32a424db38dd | ||
| 128 | SRCREV_testify="181cea6eab8b2de7071383eca4be32a424db38dd" | ||
| 129 | SRC_URI += "git://github.com/stretchr/testify;name=testify;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/stretchr/testify" | ||
| 130 | |||
| 131 | # github.com/theupdateframework/notary v0.7.0 | ||
| 132 | # [1] git ls-remote https://github.com/theupdateframework/notary b0b6bfdd4933081e8d5ae026b24e8337311dd598 | ||
| 133 | SRCREV_notary="b0b6bfdd4933081e8d5ae026b24e8337311dd598" | ||
| 134 | SRC_URI += "git://github.com/theupdateframework/notary;name=notary;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/theupdateframework/notary" | ||
| 135 | |||
| 136 | # golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde | ||
| 137 | # [1] git ls-remote https://github.com/golang/sync 7fc1605a5dde7535a0fc1770ca44238629ff29ac | ||
| 138 | SRCREV_sync="7fc1605a5dde7535a0fc1770ca44238629ff29ac" | ||
| 139 | SRC_URI += "git://github.com/golang/sync;name=sync;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/sync" | ||
| 140 | |||
| 141 | # gopkg.in/yaml.v2 v2.4.0 | ||
| 142 | # [1] git ls-remote https://gopkg.in/yaml.v2 7649d4548cb53a614db133b2a8ac1f31859dda8c | ||
| 143 | SRCREV_yaml.v2="7649d4548cb53a614db133b2a8ac1f31859dda8c" | ||
| 144 | 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" | ||
| 145 | |||
| 146 | # gotest.tools v2.2.0+incompatible | ||
| 147 | # [1] git ls-remote https://github.com/gotestyourself/gotest.tools 7c797b5133e5460410dbb22ba779bf35e6975dea | ||
| 148 | SRCREV_gotest.tools="7c797b5133e5460410dbb22ba779bf35e6975dea" | ||
| 149 | SRC_URI += "git://github.com/gotestyourself/gotest.tools;name=gotest.tools;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gotestyourself/gotest.tools" | ||
| 150 | |||
| 151 | # gotest.tools/v3 v3.4.0 | ||
| 152 | # [1] git ls-remote https://github.com/gotestyourself/gotest.tools f086d2783c5b3a2a21b482ec19c1c310e68f4d18 | ||
| 153 | SRCREV_v31="f086d2783c5b3a2a21b482ec19c1c310e68f4d18" | ||
| 154 | SRC_URI += "git://github.com/gotestyourself/gotest.tools;name=v31;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gotestyourself/gotest.toolsf086d2783c5b3a2a21b482ec19c1c310e68f4d18" | ||
| 155 | |||
| 156 | # github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 | ||
| 157 | # [1] git ls-remote https://github.com/Azure/go-ansiterm d185dfc1b5a126116ea5a19e148e29d16b4574c9 | ||
| 158 | SRCREV_go-ansiterm="d185dfc1b5a126116ea5a19e148e29d16b4574c9" | ||
| 159 | 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" | ||
| 160 | |||
| 161 | # github.com/Masterminds/semver v1.5.0 | ||
| 162 | # [1] git ls-remote https://github.com/Masterminds/semver 805c489aa98f412e79eb308a37996bf9d8b1c91e | ||
| 163 | SRCREV_semver="805c489aa98f412e79eb308a37996bf9d8b1c91e" | ||
| 164 | SRC_URI += "git://github.com/Masterminds/semver;name=semver;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/Masterminds/semver" | ||
| 165 | |||
| 166 | # github.com/Microsoft/go-winio v0.5.2 | ||
| 167 | # [1] git ls-remote https://github.com/Microsoft/go-winio dfd7da8f92a382999d77b5d9cfe8cc6bec1894c6 | ||
| 168 | SRCREV_go-winio="dfd7da8f92a382999d77b5d9cfe8cc6bec1894c6" | ||
| 169 | 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" | ||
| 170 | |||
| 171 | # github.com/beorn7/perks v1.0.1 | ||
| 172 | # [1] git ls-remote https://github.com/beorn7/perks 37c8de3658fcb183f997c4e13e8337516ab753e6 | ||
| 173 | SRCREV_perks="37c8de3658fcb183f997c4e13e8337516ab753e6" | ||
| 174 | SRC_URI += "git://github.com/beorn7/perks;name=perks;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/beorn7/perks" | ||
| 175 | |||
| 176 | # github.com/cespare/xxhash/v2 v2.1.2 | ||
| 177 | # [1] git ls-remote https://github.com/cespare/xxhash e7a6b52374f7e2abfb8abb27249d53a1997b09a7 | ||
| 178 | SRCREV_v21="e7a6b52374f7e2abfb8abb27249d53a1997b09a7" | ||
| 179 | SRC_URI += "git://github.com/cespare/xxhash;name=v21;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cespare/xxhash/v2" | ||
| 180 | |||
| 181 | # github.com/cnabio/cnab-go v0.23.4 | ||
| 182 | # [1] git ls-remote https://github.com/cnabio/cnab-go 91140cbcd7633af4715aa9767609da084e4799e9 | ||
| 183 | SRCREV_cnab-go="91140cbcd7633af4715aa9767609da084e4799e9" | ||
| 184 | SRC_URI += "git://github.com/cnabio/cnab-go;name=cnab-go;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cnabio/cnab-go" | ||
| 185 | |||
| 186 | # github.com/containerd/continuity v0.2.3-0.20220330195504-d132b287edc8 | ||
| 187 | # [1] git ls-remote https://github.com/containerd/continuity d132b287edc8ffc79dafab5b941f4acf69e060d0 | ||
| 188 | SRCREV_continuity="d132b287edc8ffc79dafab5b941f4acf69e060d0" | ||
| 189 | SRC_URI += "git://github.com/containerd/continuity;name=continuity;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/continuity" | ||
| 190 | |||
| 191 | # github.com/containerd/ttrpc v1.1.0 | ||
| 192 | # [1] git ls-remote https://github.com/containerd/ttrpc 0247db16a1f98bb76731a12ad72b8d49705b38b3 | ||
| 193 | SRCREV_ttrpc="0247db16a1f98bb76731a12ad72b8d49705b38b3" | ||
| 194 | SRC_URI += "git://github.com/containerd/ttrpc;name=ttrpc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/ttrpc" | ||
| 195 | |||
| 196 | # github.com/containerd/typeurl v1.0.2 | ||
| 197 | # [1] git ls-remote https://github.com/containerd/typeurl 5e43fb8b75ed2f2305fc04e6918c8d10636771bc | ||
| 198 | SRCREV_typeurl="5e43fb8b75ed2f2305fc04e6918c8d10636771bc" | ||
| 199 | SRC_URI += "git://github.com/containerd/typeurl;name=typeurl;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/containerd/typeurl" | ||
| 200 | |||
| 201 | # github.com/davecgh/go-spew v1.1.1 | ||
| 202 | # [1] git ls-remote https://github.com/davecgh/go-spew 8991bc29aa16c548c550c7ff78260e27b9ab7c73 | ||
| 203 | SRCREV_go-spew="8991bc29aa16c548c550c7ff78260e27b9ab7c73" | ||
| 204 | SRC_URI += "git://github.com/davecgh/go-spew;name=go-spew;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/davecgh/go-spew" | ||
| 205 | |||
| 206 | # github.com/docker/distribution v2.8.1+incompatible | ||
| 207 | # [1] git ls-remote https://github.com/docker/distribution b5ca020cfbe998e5af3457fda087444cf5116496 | ||
| 208 | SRCREV_distribution="b5ca020cfbe998e5af3457fda087444cf5116496" | ||
| 209 | SRC_URI += "git://github.com/docker/distribution;name=distribution;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/distribution" | ||
| 210 | |||
| 211 | # github.com/docker/docker-credential-helpers v0.6.4 | ||
| 212 | # [1] git ls-remote https://github.com/docker/docker-credential-helpers fc9290adbcf1594e78910e2f0334090eaee0e1ee | ||
| 213 | SRCREV_docker-credential-helpers="fc9290adbcf1594e78910e2f0334090eaee0e1ee" | ||
| 214 | 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" | ||
| 215 | |||
| 216 | # github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c | ||
| 217 | # [1] git ls-remote https://github.com/docker/go d30aec9fd63c35133f8f79c3412ad91a3b08be06 | ||
| 218 | SRCREV_go="d30aec9fd63c35133f8f79c3412ad91a3b08be06" | ||
| 219 | SRC_URI += "git://github.com/docker/go;name=go;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/go" | ||
| 220 | |||
| 221 | # github.com/docker/go-metrics v0.0.1 | ||
| 222 | # [1] git ls-remote https://github.com/docker/go-metrics b619b3592b65de4f087d9f16863a7e6ff905973c | ||
| 223 | SRCREV_go-metrics="b619b3592b65de4f087d9f16863a7e6ff905973c" | ||
| 224 | 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" | ||
| 225 | |||
| 226 | # github.com/felixge/httpsnoop v1.0.2 | ||
| 227 | # [1] git ls-remote https://github.com/felixge/httpsnoop 42c30f944879059639bcf7b2ca4aba06f4a83198 | ||
| 228 | SRCREV_httpsnoop="42c30f944879059639bcf7b2ca4aba06f4a83198" | ||
| 229 | SRC_URI += "git://github.com/felixge/httpsnoop;name=httpsnoop;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/felixge/httpsnoop" | ||
| 230 | |||
| 231 | # github.com/fvbommel/sortorder v1.0.2 | ||
| 232 | # [1] git ls-remote https://github.com/fvbommel/sortorder 26fad50c6b32a3064c09ed089865c16f2f3615f6 | ||
| 233 | SRCREV_sortorder="26fad50c6b32a3064c09ed089865c16f2f3615f6" | ||
| 234 | SRC_URI += "git://github.com/fvbommel/sortorder;name=sortorder;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/fvbommel/sortorder" | ||
| 235 | |||
| 236 | # github.com/go-logr/logr v1.2.3 | ||
| 237 | # [1] git ls-remote https://github.com/go-logr/logr 47e013cee9b1f91c987cc70a218639655431b607 | ||
| 238 | SRCREV_logr="47e013cee9b1f91c987cc70a218639655431b607" | ||
| 239 | SRC_URI += "git://github.com/go-logr/logr;name=logr;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/go-logr/logr" | ||
| 240 | |||
| 241 | # github.com/go-logr/stdr v1.2.2 | ||
| 242 | # [1] git ls-remote https://github.com/go-logr/stdr 521af2addfa7c81c8a65d0e85ed34bb6bb6dc262 | ||
| 243 | SRCREV_stdr="521af2addfa7c81c8a65d0e85ed34bb6bb6dc262" | ||
| 244 | SRC_URI += "git://github.com/go-logr/stdr;name=stdr;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/go-logr/stdr" | ||
| 245 | |||
| 246 | # github.com/gofrs/flock v0.8.0 | ||
| 247 | # [1] git ls-remote https://github.com/gofrs/flock 75ec202958fd1654ff47064ba3ebffe14443f391 | ||
| 248 | SRCREV_flock="75ec202958fd1654ff47064ba3ebffe14443f391" | ||
| 249 | SRC_URI += "git://github.com/gofrs/flock;name=flock;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gofrs/flock" | ||
| 250 | |||
| 251 | # github.com/gogo/googleapis v1.4.1 | ||
| 252 | # [1] git ls-remote https://github.com/gogo/googleapis 1f0e43f50bc0606e385ffae1bc80b5b231dcd042 | ||
| 253 | SRCREV_googleapis="1f0e43f50bc0606e385ffae1bc80b5b231dcd042" | ||
| 254 | SRC_URI += "git://github.com/gogo/googleapis;name=googleapis;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gogo/googleapis" | ||
| 255 | |||
| 256 | # github.com/gogo/protobuf v1.3.2 | ||
| 257 | # [1] git ls-remote https://github.com/gogo/protobuf b03c65ea87cdc3521ede29f62fe3ce239267c1bc | ||
| 258 | SRCREV_protobuf="b03c65ea87cdc3521ede29f62fe3ce239267c1bc" | ||
| 259 | SRC_URI += "git://github.com/gogo/protobuf;name=protobuf;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gogo/protobuf" | ||
| 260 | |||
| 261 | # github.com/golang/protobuf v1.5.2 | ||
| 262 | # [1] git ls-remote https://github.com/golang/protobuf ae97035608a719c7a1c1c41bed0ae0744bdb0c6f | ||
| 263 | SRCREV_protobuf1="ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" | ||
| 264 | SRC_URI += "git://github.com/golang/protobuf;name=protobuf1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/golang/protobuf" | ||
| 265 | |||
| 266 | # github.com/google/go-cmp v0.5.8 | ||
| 267 | # [1] git ls-remote https://github.com/google/go-cmp f144a35ed4ac538fae93fa3783175108738f71b9 | ||
| 268 | SRCREV_go-cmp="f144a35ed4ac538fae93fa3783175108738f71b9" | ||
| 269 | 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" | ||
| 270 | |||
| 271 | # github.com/google/gofuzz v1.2.0 | ||
| 272 | # [1] git ls-remote https://github.com/google/gofuzz 379e164120fbc98885a8f494b5aa41ba94f64c56 | ||
| 273 | SRCREV_gofuzz="379e164120fbc98885a8f494b5aa41ba94f64c56" | ||
| 274 | SRC_URI += "git://github.com/google/gofuzz;name=gofuzz;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/google/gofuzz" | ||
| 275 | |||
| 276 | # github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 | ||
| 277 | # [1] git ls-remote https://github.com/google/shlex e7afc7fbc51079733e9468cdfd1efcd7d196cd1d | ||
| 278 | SRCREV_shlex="e7afc7fbc51079733e9468cdfd1efcd7d196cd1d" | ||
| 279 | SRC_URI += "git://github.com/google/shlex;name=shlex;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/google/shlex" | ||
| 280 | |||
| 281 | # github.com/gorilla/mux v1.8.0 | ||
| 282 | # [1] git ls-remote https://github.com/gorilla/mux 98cb6bf42e086f6af920b965c38cacc07402d51b | ||
| 283 | SRCREV_mux="98cb6bf42e086f6af920b965c38cacc07402d51b" | ||
| 284 | SRC_URI += "git://github.com/gorilla/mux;name=mux;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/gorilla/mux" | ||
| 285 | |||
| 286 | # github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 | ||
| 287 | # [1] git ls-remote https://github.com/grpc-ecosystem/go-grpc-middleware df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd | ||
| 288 | SRCREV_go-grpc-middleware="df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" | ||
| 289 | SRC_URI += "git://github.com/grpc-ecosystem/go-grpc-middleware;name=go-grpc-middleware;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/grpc-ecosystem/go-grpc-middleware" | ||
| 290 | |||
| 291 | # github.com/grpc-ecosystem/grpc-gateway v1.16.0 | ||
| 292 | # [1] git ls-remote https://github.com/grpc-ecosystem/grpc-gateway 094a6fe78b3ca888297d090185cdf30f0e42e157 | ||
| 293 | SRCREV_grpc-gateway="094a6fe78b3ca888297d090185cdf30f0e42e157" | ||
| 294 | SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;name=grpc-gateway;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/grpc-ecosystem/grpc-gateway" | ||
| 295 | |||
| 296 | # github.com/hashicorp/errwrap v1.1.0 | ||
| 297 | # [1] git ls-remote https://github.com/hashicorp/errwrap 7b00e5db719c64d14dd0caaacbd13e76254d02c0 | ||
| 298 | SRCREV_errwrap="7b00e5db719c64d14dd0caaacbd13e76254d02c0" | ||
| 299 | SRC_URI += "git://github.com/hashicorp/errwrap;name=errwrap;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/hashicorp/errwrap" | ||
| 300 | |||
| 301 | # github.com/imdario/mergo v0.3.13 | ||
| 302 | # [1] git ls-remote https://github.com/imdario/mergo 194978757031c1a5c8ff8e059ae75fc2fc2a04f7 | ||
| 303 | SRCREV_mergo="194978757031c1a5c8ff8e059ae75fc2fc2a04f7" | ||
| 304 | SRC_URI += "git://github.com/imdario/mergo;name=mergo;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/imdario/mergo" | ||
| 305 | |||
| 306 | # github.com/inconshreveable/mousetrap v1.0.1 | ||
| 307 | # [1] git ls-remote https://github.com/inconshreveable/mousetrap 3a66f25f8779fad208598f21472174ef7b35c3ec | ||
| 308 | SRCREV_mousetrap="3a66f25f8779fad208598f21472174ef7b35c3ec" | ||
| 309 | SRC_URI += "git://github.com/inconshreveable/mousetrap;name=mousetrap;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/inconshreveable/mousetrap" | ||
| 310 | |||
| 311 | # github.com/json-iterator/go v1.1.12 | ||
| 312 | # [1] git ls-remote https://github.com/json-iterator/go 024077e996b048517130b21ea6bf12aa23055d3d | ||
| 313 | SRCREV_go1="024077e996b048517130b21ea6bf12aa23055d3d" | ||
| 314 | SRC_URI += "git://github.com/json-iterator/go;name=go1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/json-iterator/go" | ||
| 315 | |||
| 316 | # github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 | ||
| 317 | # [1] git ls-remote https://github.com/kballard/go-shellquote 95032a82bc518f77982ea72343cc1ade730072f0 | ||
| 318 | SRCREV_go-shellquote="95032a82bc518f77982ea72343cc1ade730072f0" | ||
| 319 | SRC_URI += "git://github.com/kballard/go-shellquote;name=go-shellquote;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/kballard/go-shellquote" | ||
| 320 | |||
| 321 | # github.com/klauspost/compress v1.15.1 | ||
| 322 | # [1] git ls-remote https://github.com/klauspost/compress 7c7079ec1ed2c07fd15e6f3f369dbae5288051d5 | ||
| 323 | SRCREV_compress="7c7079ec1ed2c07fd15e6f3f369dbae5288051d5" | ||
| 324 | SRC_URI += "git://github.com/klauspost/compress;name=compress;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/klauspost/compress" | ||
| 325 | |||
| 326 | # github.com/mattn/go-colorable v0.1.12 | ||
| 327 | # [1] git ls-remote https://github.com/mattn/go-colorable e1bb79c8d53c38a60962ad4b8f658226cc983710 | ||
| 328 | SRCREV_go-colorable="e1bb79c8d53c38a60962ad4b8f658226cc983710" | ||
| 329 | 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" | ||
| 330 | |||
| 331 | # github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 | ||
| 332 | # [1] git ls-remote https://github.com/matttproud/golang_protobuf_extensions c182affec369e30f25d3eb8cd8a478dee585ae7d | ||
| 333 | SRCREV_golang_protobuf_extensions="c182affec369e30f25d3eb8cd8a478dee585ae7d" | ||
| 334 | 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" | ||
| 335 | |||
| 336 | # github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b | ||
| 337 | # [1] git ls-remote https://github.com/mgutz/ansi 9520e82c474b0a04dd04f8a40959027271bab992 | ||
| 338 | SRCREV_ansi="9520e82c474b0a04dd04f8a40959027271bab992" | ||
| 339 | SRC_URI += "git://github.com/mgutz/ansi;name=ansi;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mgutz/ansi" | ||
| 340 | |||
| 341 | # github.com/miekg/pkcs11 v1.1.1 | ||
| 342 | # [1] git ls-remote https://github.com/miekg/pkcs11 f3481918a208bd212aa995a41f92d786eb418a7d | ||
| 343 | SRCREV_pkcs11="f3481918a208bd212aa995a41f92d786eb418a7d" | ||
| 344 | SRC_URI += "git://github.com/miekg/pkcs11;name=pkcs11;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/miekg/pkcs11" | ||
| 345 | |||
| 346 | # github.com/mitchellh/mapstructure v1.5.0 | ||
| 347 | # [1] git ls-remote https://github.com/mitchellh/mapstructure ab69d8d93410fce4361f4912bb1ff88110a81311 | ||
| 348 | SRCREV_mapstructure="ab69d8d93410fce4361f4912bb1ff88110a81311" | ||
| 349 | SRC_URI += "git://github.com/mitchellh/mapstructure;name=mapstructure;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/mitchellh/mapstructure" | ||
| 350 | |||
| 351 | # github.com/moby/locker v1.0.1 | ||
| 352 | # [1] git ls-remote https://github.com/moby/locker 281af2d563954745bea9d1487c965f24d30742fe | ||
| 353 | SRCREV_locker="281af2d563954745bea9d1487c965f24d30742fe" | ||
| 354 | SRC_URI += "git://github.com/moby/locker;name=locker;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/locker" | ||
| 355 | |||
| 356 | # github.com/moby/sys/signal v0.6.0 | ||
| 357 | # [1] git ls-remote https://github.com/moby/sys d01e595199e1213f509d8ee6e4b03217e6e54517 | ||
| 358 | SRCREV_signal="d01e595199e1213f509d8ee6e4b03217e6e54517" | ||
| 359 | SRC_URI += "git://github.com/moby/sys;name=signal;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/signal" | ||
| 360 | |||
| 361 | # github.com/moby/sys/symlink v0.2.0 | ||
| 362 | # [1] git ls-remote https://github.com/moby/sys 03b9f8d59a07f5206a2264105f4903a222aea964 | ||
| 363 | SRCREV_symlink="03b9f8d59a07f5206a2264105f4903a222aea964" | ||
| 364 | SRC_URI += "git://github.com/moby/sys;name=symlink;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/symlink" | ||
| 365 | |||
| 366 | # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd | ||
| 367 | # [1] git ls-remote https://github.com/modern-go/concurrent bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94 | ||
| 368 | SRCREV_concurrent="bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" | ||
| 369 | SRC_URI += "git://github.com/modern-go/concurrent;name=concurrent;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/modern-go/concurrent" | ||
| 370 | |||
| 371 | # github.com/modern-go/reflect2 v1.0.2 | ||
| 372 | # [1] git ls-remote https://github.com/modern-go/reflect2 2b33151c9bbc5231aea69b8861c540102b087070 | ||
| 373 | SRCREV_reflect2="2b33151c9bbc5231aea69b8861c540102b087070" | ||
| 374 | SRC_URI += "git://github.com/modern-go/reflect2;name=reflect2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/modern-go/reflect2" | ||
| 375 | |||
| 376 | # github.com/opencontainers/runc v1.1.2 | ||
| 377 | # [1] git ls-remote https://github.com/opencontainers/runc a916309fff0f838eb94e928713dbc3c0d0ac7aa4 | ||
| 378 | SRCREV_runc="a916309fff0f838eb94e928713dbc3c0d0ac7aa4" | ||
| 379 | SRC_URI += "git://github.com/opencontainers/runc;name=runc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/opencontainers/runc" | ||
| 380 | |||
| 381 | # github.com/pelletier/go-toml v1.9.4 | ||
| 382 | # [1] git ls-remote https://github.com/pelletier/go-toml b8ba995eaaba4be30c8a8090bdfb4aa61af52054 | ||
| 383 | SRCREV_go-toml="b8ba995eaaba4be30c8a8090bdfb4aa61af52054" | ||
| 384 | 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" | ||
| 385 | |||
| 386 | # github.com/pmezard/go-difflib v1.0.0 | ||
| 387 | # [1] git ls-remote https://github.com/pmezard/go-difflib 792786c7400a136282c1664665ae0a8db921c6c2 | ||
| 388 | SRCREV_go-difflib="792786c7400a136282c1664665ae0a8db921c6c2" | ||
| 389 | SRC_URI += "git://github.com/pmezard/go-difflib;name=go-difflib;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/pmezard/go-difflib" | ||
| 390 | |||
| 391 | # github.com/prometheus/client_golang v1.12.1 | ||
| 392 | # [1] git ls-remote https://github.com/prometheus/client_golang 2e1c4818ccfdcf953ce399cadad615ff2bed968c | ||
| 393 | SRCREV_client_golang="2e1c4818ccfdcf953ce399cadad615ff2bed968c" | ||
| 394 | 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" | ||
| 395 | |||
| 396 | # github.com/prometheus/client_model v0.2.0 | ||
| 397 | # [1] git ls-remote https://github.com/prometheus/client_model 7bc5445566f0fe75b15de23e6b93886e982d7bf9 | ||
| 398 | SRCREV_client_model="7bc5445566f0fe75b15de23e6b93886e982d7bf9" | ||
| 399 | 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" | ||
| 400 | |||
| 401 | # github.com/prometheus/common v0.32.1 | ||
| 402 | # [1] git ls-remote https://github.com/prometheus/common 2af6d036253eee1a9a08c6ddf6be6d67537bcdff | ||
| 403 | SRCREV_common="2af6d036253eee1a9a08c6ddf6be6d67537bcdff" | ||
| 404 | SRC_URI += "git://github.com/prometheus/common;name=common;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/prometheus/common" | ||
| 405 | |||
| 406 | # github.com/prometheus/procfs v0.7.3 | ||
| 407 | # [1] git ls-remote https://github.com/prometheus/procfs f436cbb89ece38bf080d446b3ca27053b305eaac | ||
| 408 | SRCREV_procfs="f436cbb89ece38bf080d446b3ca27053b305eaac" | ||
| 409 | SRC_URI += "git://github.com/prometheus/procfs;name=procfs;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/prometheus/procfs" | ||
| 410 | |||
| 411 | # github.com/qri-io/jsonpointer v0.1.1 | ||
| 412 | # [1] git ls-remote https://github.com/qri-io/jsonpointer d7bf6a8decdffbc01aec9d49b33fc589041b3335 | ||
| 413 | SRCREV_jsonpointer="d7bf6a8decdffbc01aec9d49b33fc589041b3335" | ||
| 414 | SRC_URI += "git://github.com/qri-io/jsonpointer;name=jsonpointer;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/qri-io/jsonpointer" | ||
| 415 | |||
| 416 | # github.com/qri-io/jsonschema v0.2.2-0.20210831022256-780655b2ba0e | ||
| 417 | # [1] git ls-remote https://github.com/qri-io/jsonschema 780655b2ba0ed03f11ecc8606a8f6e7380bb57be | ||
| 418 | SRCREV_jsonschema="780655b2ba0ed03f11ecc8606a8f6e7380bb57be" | ||
| 419 | SRC_URI += "git://github.com/qri-io/jsonschema;name=jsonschema;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/qri-io/jsonschema" | ||
| 420 | |||
| 421 | # github.com/tonistiigi/fsutil v0.0.0-20220315205639-9ed612626da3 | ||
| 422 | # [1] git ls-remote https://github.com/tonistiigi/fsutil 9ed612626da3acfc8902f36759d2c4d1ec326132 | ||
| 423 | SRCREV_fsutil="9ed612626da3acfc8902f36759d2c4d1ec326132" | ||
| 424 | SRC_URI += "git://github.com/tonistiigi/fsutil;name=fsutil;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tonistiigi/fsutil" | ||
| 425 | |||
| 426 | # github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea | ||
| 427 | # [1] git ls-remote https://github.com/tonistiigi/units 6950e57a87eaf136bbe44ef2ec8e75b9e3569de2 | ||
| 428 | SRCREV_units="6950e57a87eaf136bbe44ef2ec8e75b9e3569de2" | ||
| 429 | SRC_URI += "git://github.com/tonistiigi/units;name=units;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tonistiigi/units" | ||
| 430 | |||
| 431 | # github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f | ||
| 432 | # [1] git ls-remote https://github.com/tonistiigi/vt100 8066bb97264f56c603341d3fce837bb504e662ef | ||
| 433 | SRCREV_vt100="8066bb97264f56c603341d3fce837bb504e662ef" | ||
| 434 | SRC_URI += "git://github.com/tonistiigi/vt100;name=vt100;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/tonistiigi/vt100" | ||
| 435 | |||
| 436 | # github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb | ||
| 437 | # [1] git ls-remote https://github.com/xeipuuv/gojsonpointer 02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb | ||
| 438 | SRCREV_gojsonpointer="02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb" | ||
| 439 | SRC_URI += "git://github.com/xeipuuv/gojsonpointer;name=gojsonpointer;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonpointer" | ||
| 440 | |||
| 441 | # github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 | ||
| 442 | # [1] git ls-remote https://github.com/xeipuuv/gojsonreference bd5ef7bd5415a7ac448318e64f11a24cd21e594b | ||
| 443 | SRCREV_gojsonreference="bd5ef7bd5415a7ac448318e64f11a24cd21e594b" | ||
| 444 | SRC_URI += "git://github.com/xeipuuv/gojsonreference;name=gojsonreference;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonreference" | ||
| 445 | |||
| 446 | # github.com/xeipuuv/gojsonschema v1.2.0 | ||
| 447 | # [1] git ls-remote https://github.com/xeipuuv/gojsonschema 82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927 | ||
| 448 | SRCREV_gojsonschema="82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927" | ||
| 449 | SRC_URI += "git://github.com/xeipuuv/gojsonschema;name=gojsonschema;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/xeipuuv/gojsonschema" | ||
| 450 | |||
| 451 | # go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 | ||
| 452 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go-contrib c17e0db0bb02938fccfa497f72a7c9c5a9ec6e71 | ||
| 453 | SRCREV_otelgrpc="c17e0db0bb02938fccfa497f72a7c9c5a9ec6e71" | ||
| 454 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;name=otelgrpc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/open-telemetry/opentelemetry-go-contrib/instrumentation/google.golang.org/grpc/otelgrpc" | ||
| 455 | |||
| 456 | # go.opentelemetry.io/otel v1.10.0 | ||
| 457 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 0e6f9c29c10d6078e8131418e1d1d166c7195d61 | ||
| 458 | SRCREV_otel="78a1d2d810e0ec42a407f5cc4eb8e9867aad061f" | ||
| 459 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otel;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.opentelemetry.io/otel" | ||
| 460 | |||
| 461 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 | ||
| 462 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 065ba75c4b9750665d8b577b170997cafeb8f903 | ||
| 463 | SRCREV_otlptrace="065ba75c4b9750665d8b577b170997cafeb8f903" | ||
| 464 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otlptrace;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/open-telemetry/opentelemetry-go/exporters/otlp/otlptrace" | ||
| 465 | |||
| 466 | # go.opentelemetry.io/otel/internal/metric v0.27.0 | ||
| 467 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 1bda06288e6df99bdb0705c4ca4870b1f2c82a16 | ||
| 468 | SRCREV_metric="7c7ba772b9d7784e7c6392f1499f7357ce723b52" | ||
| 469 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=metric;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/open-telemetry/opentelemetry-go/internal/metric" | ||
| 470 | |||
| 471 | # go.opentelemetry.io/otel/metric v0.27.0 | ||
| 472 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 1bda06288e6df99bdb0705c4ca4870b1f2c82a16 | ||
| 473 | SRCREV_metric1="5b57299c902bd296de5de2297ebe3096b0a8688b" | ||
| 474 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=metric1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/open-telemetry/opentelemetry-go/metric" | ||
| 475 | |||
| 476 | # go.opentelemetry.io/otel/sdk v1.4.1 | ||
| 477 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 065ba75c4b9750665d8b577b170997cafeb8f903 | ||
| 478 | SRCREV_sdk="065ba75c4b9750665d8b577b170997cafeb8f903" | ||
| 479 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=sdk;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/open-telemetry/opentelemetry-go/exporters/otlp/otlptrace" | ||
| 480 | |||
| 481 | # go.opentelemetry.io/otel/trace v1.10.0 | ||
| 482 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 0e6f9c29c10d6078e8131418e1d1d166c7195d61 | ||
| 483 | SRCREV_trace="0e6f9c29c10d6078e8131418e1d1d166c7195d61" | ||
| 484 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=trace;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/go.opentelemetry.io/otel" | ||
| 485 | |||
| 486 | # go.opentelemetry.io/proto/otlp v0.12.0 | ||
| 487 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-proto-go 24bea1abad46b49ccc25cee455e09afca9a19250 | ||
| 488 | SRCREV_otlp="24bea1abad46b49ccc25cee455e09afca9a19250" | ||
| 489 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-proto-go;name=otlp;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/open-telemetry/opentelemetry-proto-go/otlp" | ||
| 490 | |||
| 491 | # golang.org/x/crypto v0.0.0-20220214200702-86341886e292 | ||
| 492 | # [1] git ls-remote https://github.com/golang/crypto 86341886e2925764dc890ad96c141a1bc76043af | ||
| 493 | SRCREV_crypto="86341886e2925764dc890ad96c141a1bc76043af" | ||
| 494 | SRC_URI += "git://github.com/golang/crypto;name=crypto;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/crypto" | ||
| 495 | |||
| 496 | # golang.org/x/net v0.0.0-20220906165146-f3363e06e74c | ||
| 497 | # [1] git ls-remote https://github.com/golang/net f3363e06e74cdc304618bf31d898b78590103527 | ||
| 498 | SRCREV_net="f3363e06e74cdc304618bf31d898b78590103527" | ||
| 499 | SRC_URI += "git://github.com/golang/net;name=net;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/net" | ||
| 500 | |||
| 501 | # golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 | ||
| 502 | # [1] git ls-remote https://github.com/golang/oauth2 d3ed0bb246c8d3c75b63937d9a5eecff9c74d7fe | ||
| 503 | SRCREV_oauth2="d3ed0bb246c8d3c75b63937d9a5eecff9c74d7fe" | ||
| 504 | SRC_URI += "git://github.com/golang/oauth2;name=oauth2;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/oauth2" | ||
| 505 | |||
| 506 | # golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab | ||
| 507 | # [1] git ls-remote https://github.com/golang/sys fbc7d0a398ab184f5d1050e8035f3b19a3b9003f | ||
| 508 | SRCREV_sys="fbc7d0a398ab184f5d1050e8035f3b19a3b9003f" | ||
| 509 | SRC_URI += "git://github.com/golang/sys;name=sys;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/sys" | ||
| 510 | |||
| 511 | # golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 | ||
| 512 | # [1] git ls-remote https://github.com/golang/term 03fcf44c2211dcd5eb77510b5f7c1fb02d6ded50 | ||
| 513 | SRCREV_term1="03fcf44c2211dcd5eb77510b5f7c1fb02d6ded50" | ||
| 514 | SRC_URI += "git://github.com/golang/term;name=term1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/term" | ||
| 515 | |||
| 516 | # golang.org/x/text v0.3.7 | ||
| 517 | # [1] git ls-remote https://github.com/golang/text 383b2e75a7a4198c42f8f87833eefb772868a56f | ||
| 518 | SRCREV_text="383b2e75a7a4198c42f8f87833eefb772868a56f" | ||
| 519 | SRC_URI += "git://github.com/golang/text;name=text;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/text" | ||
| 520 | |||
| 521 | # golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 | ||
| 522 | # [1] git ls-remote https://github.com/golang/time 90d013bbcef8e15b6f78023a0e3b996267153e7d | ||
| 523 | SRCREV_time="90d013bbcef8e15b6f78023a0e3b996267153e7d" | ||
| 524 | SRC_URI += "git://github.com/golang/time;name=time;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/golang.org/x/time" | ||
| 525 | |||
| 526 | # google.golang.org/appengine v1.6.7 | ||
| 527 | # [1] git ls-remote https://github.com/golang/appengine 5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a | ||
| 528 | SRCREV_appengine="5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a" | ||
| 529 | SRC_URI += "git://github.com/golang/appengine;name=appengine;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/golang/appengine" | ||
| 530 | |||
| 531 | # google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106 | ||
| 532 | # [1] git ls-remote https://github.com/googleapis/go-genproto 57ef72a4c106086f9e50d41d88cdb1dbbce5486e | ||
| 533 | SRCREV_genproto="57ef72a4c106086f9e50d41d88cdb1dbbce5486e" | ||
| 534 | SRC_URI += "git://github.com/googleapis/go-genproto;name=genproto;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/googleapis/go-genproto" | ||
| 535 | |||
| 536 | # google.golang.org/grpc v1.45.0 | ||
| 537 | # [1] git ls-remote https://github.com/grpc/grpc-go a82cc96f07c960e02623688e4067ae6b7895334a | ||
| 538 | SRCREV_grpc="a82cc96f07c960e02623688e4067ae6b7895334a" | ||
| 539 | SRC_URI += "git://github.com/grpc/grpc-go;name=grpc;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/grpc/grpc-go" | ||
| 540 | |||
| 541 | # google.golang.org/protobuf v1.27.1 | ||
| 542 | # [1] git ls-remote https://github.com/protocolbuffers/protobuf-go b92717ecb630d4a4824b372bf98c729d87311a4d | ||
| 543 | SRCREV_protobuf12="b92717ecb630d4a4824b372bf98c729d87311a4d" | ||
| 544 | SRC_URI += "git://github.com/protocolbuffers/protobuf-go;name=protobuf12;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/protocolbuffers/protobuf-go" | ||
| 545 | |||
| 546 | # gopkg.in/inf.v0 v0.9.1 | ||
| 547 | # [1] git ls-remote https://gopkg.in/inf.v0 d2d2541c53f18d2a059457998ce2876cc8e67cbf | ||
| 548 | SRCREV_inf.v0="d2d2541c53f18d2a059457998ce2876cc8e67cbf" | ||
| 549 | SRC_URI += "git://gopkg.in/inf.v0;name=inf.v0;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/gopkg.in/inf.v0" | ||
| 550 | |||
| 551 | # gopkg.in/yaml.v3 v3.0.1 | ||
| 552 | # [1] git ls-remote https://gopkg.in/yaml.v3 f6f7691b1fdeb513f56608cd2c32c51f8194bf51 | ||
| 553 | SRCREV_yaml.v3="f6f7691b1fdeb513f56608cd2c32c51f8194bf51" | ||
| 554 | SRC_URI += "git://gopkg.in/yaml.v3;name=yaml.v3;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/gopkg.in/yaml.v3" | ||
| 555 | |||
| 556 | # k8s.io/klog/v2 v2.60.1 | ||
| 557 | # [1] git ls-remote https://github.com/kubernetes/klog b46e95d6825a8558b8ca00afc4fbc26acfb5605a | ||
| 558 | SRCREV_v212="b46e95d6825a8558b8ca00afc4fbc26acfb5605a" | ||
| 559 | SRC_URI += "git://github.com/kubernetes/klog;name=v212;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/k8s.io/klog/v2" | ||
| 560 | |||
| 561 | # k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 | ||
| 562 | # [1] git ls-remote https://github.com/kubernetes/utils 3a6ce19ff2f91f3dc49243f90f7834a0f1e4aaf3 | ||
| 563 | SRCREV_utils="3a6ce19ff2f91f3dc49243f90f7834a0f1e4aaf3" | ||
| 564 | SRC_URI += "git://github.com/kubernetes/utils;name=utils;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/k8s.io/utils" | ||
| 565 | |||
| 566 | # sigs.k8s.io/structured-merge-diff/v4 v4.2.1 | ||
| 567 | # [1] git ls-remote https://github.com/kubernetes-sigs/structured-merge-diff 65611e5f7fc60e909529889c29faa9cac17cb485 | ||
| 568 | SRCREV_v4="65611e5f7fc60e909529889c29faa9cac17cb485" | ||
| 569 | SRC_URI += "git://github.com/kubernetes-sigs/structured-merge-diff;name=v4;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/sigs.k8s.io/structured-merge-diff/v4" | ||
| 570 | |||
| 571 | # sigs.k8s.io/yaml v1.2.0 | ||
| 572 | # [1] git ls-remote https://github.com/kubernetes-sigs/yaml 9fc95527decd95bb9d28cc2eab08179b2d0f6971 | ||
| 573 | SRCREV_yaml="9fc95527decd95bb9d28cc2eab08179b2d0f6971" | ||
| 574 | SRC_URI += "git://github.com/kubernetes-sigs/yaml;name=yaml;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/sigs.k8s.io/yaml" | ||
| 575 | |||
| 576 | # github.com/cenkalti/backoff/v4 v4.1.2 | ||
| 577 | # [1] git ls-remote https://github.com/cenkalti/backoff a78d3804c2c84f0a3178648138442c9b07665bda | ||
| 578 | SRCREV_v41="a78d3804c2c84f0a3178648138442c9b07665bda" | ||
| 579 | SRC_URI += "git://github.com/cenkalti/backoff;name=v41;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cenkalti/backoff/v4" | ||
| 580 | |||
| 581 | # github.com/cyberphone/json-canonicalization v0.0.0-20210303052042-6bc126869bf4 | ||
| 582 | # [1] git ls-remote https://github.com/cyberphone/json-canonicalization 6bc126869bf4f04aeb0e2b98346a376c976691fa | ||
| 583 | SRCREV_json-canonicalization="6bc126869bf4f04aeb0e2b98346a376c976691fa" | ||
| 584 | SRC_URI += "git://github.com/cyberphone/json-canonicalization;name=json-canonicalization;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cyberphone/json-canonicalization" | ||
| 585 | |||
| 586 | # github.com/googleapis/gnostic v0.5.5 | ||
| 587 | # [1] git ls-remote https://github.com/googleapis/gnostic 1550ae29653d42db69c8a98d368648be7f2c488d | ||
| 588 | SRCREV_gnostic="1550ae29653d42db69c8a98d368648be7f2c488d" | ||
| 589 | SRC_URI += "git://github.com/googleapis/gnostic;name=gnostic;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/googleapis/gnostic" | ||
| 590 | |||
| 591 | # github.com/moby/spdystream v0.2.0 | ||
| 592 | # [1] git ls-remote https://github.com/moby/spdystream dbc715126c0e3fa07721879c6d265b2b82c71e5b | ||
| 593 | SRCREV_spdystream="dbc715126c0e3fa07721879c6d265b2b82c71e5b" | ||
| 594 | SRC_URI += "git://github.com/moby/spdystream;name=spdystream;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/spdystream" | ||
| 595 | |||
| 596 | # github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 | ||
| 597 | # [1] git ls-remote https://github.com/serialx/hashring 8b2912629002c928de72c69aae20c8600bef41a6 | ||
| 598 | SRCREV_hashring="8b2912629002c928de72c69aae20c8600bef41a6" | ||
| 599 | SRC_URI += "git://github.com/serialx/hashring;name=hashring;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/serialx/hashring" | ||
| 600 | |||
| 601 | # github.com/zmap/zcrypto v0.0.0-20220605182715-4dfcec6e9a8c | ||
| 602 | # [1] git ls-remote https://github.com/zmap/zcrypto 4dfcec6e9a8c2014f73dd584e64dc797129d77b8 | ||
| 603 | SRCREV_zcrypto="4dfcec6e9a8c2014f73dd584e64dc797129d77b8" | ||
| 604 | SRC_URI += "git://github.com/zmap/zcrypto;name=zcrypto;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/zmap/zcrypto" | ||
| 605 | |||
| 606 | # github.com/zmap/zlint v1.1.0 | ||
| 607 | # [1] git ls-remote https://github.com/zmap/zlint 71201e7f6c374a07357066504a13577aed052cf6 | ||
| 608 | SRCREV_zlint="71201e7f6c374a07357066504a13577aed052cf6" | ||
| 609 | SRC_URI += "git://github.com/zmap/zlint;name=zlint;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/zmap/zlint" | ||
| 610 | |||
| 611 | # go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 | ||
| 612 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 065ba75c4b9750665d8b577b170997cafeb8f903 | ||
| 613 | SRCREV_retry="065ba75c4b9750665d8b577b170997cafeb8f903" | ||
| 614 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=retry;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/open-telemetry/opentelemetry-go/exporters/otlp/otlptrace" | ||
| 615 | |||
| 616 | # github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible | ||
| 617 | # [1] git ls-remote https://github.com/docker/cli 2b52f62e962783ef39b53d1cb95e1d435b33f3cd | ||
| 618 | SRCREV_cli1="2b52f62e962783ef39b53d1cb95e1d435b33f3cd" | ||
| 619 | SRC_URI += "git://github.com/docker/cli;name=cli1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/cli" | ||
| 620 | |||
| 621 | # github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible | ||
| 622 | # [1] git ls-remote https://github.com/docker/docker 83b51522df43866e39f7c757a6ab84ef4050eeb3 | ||
| 623 | SRCREV_docker1="83b51522df43866e39f7c757a6ab84ef4050eeb3" | ||
| 624 | SRC_URI += "git://github.com/docker/docker;name=docker1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/docker83b51522df43866e39f7c757a6ab84ef4050eeb3" | ||
| 625 | |||
| 626 | # k8s.io/api v0.22.4 | ||
| 627 | # [1] git ls-remote https://github.com/kubernetes/api 7b9552ec29b4eb9d6e647f705bae66e800311011 | ||
| 628 | SRCREV_api1="7b9552ec29b4eb9d6e647f705bae66e800311011" | ||
| 629 | SRC_URI += "git://github.com/kubernetes/api;name=api1;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/k8s.io/api" | ||
| 630 | |||
| 631 | # k8s.io/apimachinery v0.22.4 | ||
| 632 | # [1] git ls-remote https://github.com/kubernetes/apimachinery e757da007984b92fc3d1da457f4bc3b900606642 | ||
| 633 | SRCREV_apimachinery="e757da007984b92fc3d1da457f4bc3b900606642" | ||
| 634 | SRC_URI += "git://github.com/kubernetes/apimachinery;name=apimachinery;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/k8s.io/apimachinery" | ||
| 635 | |||
| 636 | # k8s.io/client-go v0.22.4 | ||
| 637 | # [1] git ls-remote https://github.com/kubernetes/client-go 29f81448d77a50b041e21e44cbf0269450e8ae03 | ||
| 638 | SRCREV_client-go="29f81448d77a50b041e21e44cbf0269450e8ae03" | ||
| 639 | SRC_URI += "git://github.com/kubernetes/client-go;name=client-go;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/k8s.io/client-go" | ||
| 640 | |||
| 641 | SRCREV_buildx="6224def4dd2c3d347eee19db595348c50d7cb491" | ||
| 642 | SRC_URI += "git://github.com/docker/buildx;name=buildx;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/docker/buildx" | ||
| 643 | |||
| 644 | # github.com/moby/sys/mount v0.3.0 | ||
| 645 | # [1] git ls-remote https://github.com/moby/sys a03c53e37993851f541c803edc422854ac9a8ef9 | ||
| 646 | SRCREV_mount="a03c53e37993851f541c803edc422854ac9a8ef9" | ||
| 647 | 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" | ||
| 648 | |||
| 649 | # github.com/moby/sys/mountinfo v0.6.0 | ||
| 650 | # [1] git ls-remote https://github.com/moby/sys d01e595199e1213f509d8ee6e4b03217e6e54517 | ||
| 651 | SRCREV_mountinfo="d01e595199e1213f509d8ee6e4b03217e6e54517" | ||
| 652 | SRC_URI += "git://github.com/moby/sys;name=mountinfo;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/mountinfo" | ||
| 653 | |||
| 654 | # github.com/moby/sys/symlink v0.2.0 | ||
| 655 | # [1] git ls-remote https://github.com/moby/sys 03b9f8d59a07f5206a2264105f4903a222aea964 | ||
| 656 | SRCREV_symlink="03b9f8d59a07f5206a2264105f4903a222aea964" | ||
| 657 | SRC_URI += "git://github.com/moby/sys;name=symlink;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/moby/sys/symlink" | ||
| 658 | |||
