git: 0b5621a47fb7 - main - www/fabio: fix build on riscv64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Mar 2023 09:03:11 UTC
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=0b5621a47fb7f220f61f66f5bebe48c92b0f9799 commit 0b5621a47fb7f220f61f66f5bebe48c92b0f9799 Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2023-03-15 10:29:25 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2023-03-17 09:02:19 +0000 www/fabio: fix build on riscv64 Bump golang.org/x/sys dependency to a version new enough to support riscv64-freebsd. Sponsored by: Berliner Linux User Group e.V. Approved by: portmgr (build fix blanket) --- www/fabio/Makefile | 8 +- www/fabio/distinfo | 4 +- www/fabio/files/patch-go.mod | 114 ++++++++++++ www/fabio/files/patch-go.sum | 19 ++ www/fabio/files/patch-vendor_modules.txt | 299 +++++++++++++++++++++++++++++++ 5 files changed, 442 insertions(+), 2 deletions(-) diff --git a/www/fabio/Makefile b/www/fabio/Makefile index 342de8d507b5..0e506595abb3 100644 --- a/www/fabio/Makefile +++ b/www/fabio/Makefile @@ -1,6 +1,6 @@ PORTNAME= fabio PORTVERSION= 1.6.0 -PORTREVISION= 10 +PORTREVISION= 11 DISTVERSIONPREFIX= v CATEGORIES= www @@ -12,6 +12,8 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= go:modules +USE_GITHUB= nodefault +GH_TUPLE= golang:sys:v0.6.0:sys USE_RC_SUBR= fabio @@ -22,6 +24,10 @@ GO_BUILDFLAGS= -ldflags "-X main.GitDescribe=v${PORTVERSION}" PLIST_FILES= "@sample etc/fabio.properties.sample" \ sbin/fabio +pre-patch: + ${RM} -r ${WRKSRC}/vendor/golang.org/x/sys + ${LN} -s ${WRKDIR}/sys-* ${WRKSRC}/vendor/golang.org/x/sys + post-install: ${INSTALL_DATA} ${GO_WRKSRC}/fabio.properties ${STAGEDIR}${PREFIX}/etc/fabio.properties.sample diff --git a/www/fabio/distinfo b/www/fabio/distinfo index bd7b422bc5a1..3090b897fe89 100644 --- a/www/fabio/distinfo +++ b/www/fabio/distinfo @@ -1,5 +1,7 @@ -TIMESTAMP = 1649779794 +TIMESTAMP = 1678875668 SHA256 (go/www_fabio/fabio-v1.6.0/v1.6.0.mod) = b63819db52f7160ef63b6778ae55c69d36de0c5cd1bf6fb60e7c8f5a2edfe802 SIZE (go/www_fabio/fabio-v1.6.0/v1.6.0.mod) = 2898 SHA256 (go/www_fabio/fabio-v1.6.0/v1.6.0.zip) = 00060f244368f43c9c7db349f07f7c8579322c40164955c2c3eb75d7bfe88ad2 SIZE (go/www_fabio/fabio-v1.6.0/v1.6.0.zip) = 1996461 +SHA256 (go/www_fabio/fabio-v1.6.0/golang-sys-v0.6.0_GH0.tar.gz) = b4f6d17c7a128f76169964b437cb66b3f2dbf9a33361928ec19dfecf7b03fc54 +SIZE (go/www_fabio/fabio-v1.6.0/golang-sys-v0.6.0_GH0.tar.gz) = 1434234 diff --git a/www/fabio/files/patch-go.mod b/www/fabio/files/patch-go.mod new file mode 100644 index 000000000000..d6e7130a4ce6 --- /dev/null +++ b/www/fabio/files/patch-go.mod @@ -0,0 +1,114 @@ +--- go.mod.orig 2023-03-15 10:25:00 UTC ++++ go.mod +@@ -1,62 +1,86 @@ + module github.com/fabiolb/fabio + + require ( ++ github.com/armon/go-proxyproto v0.0.0-20180202201750-5b7edb60ff5f ++ github.com/circonus-labs/circonus-gometrics/v3 v3.2.0 ++ github.com/go-kit/kit v0.9.0 ++ github.com/gobwas/glob v0.0.0-20180208211842-19c076cdf202 ++ github.com/hashicorp/consul/api v1.7.0 ++ github.com/hashicorp/go-sockaddr v1.0.2 ++ github.com/hashicorp/vault/api v1.0.4 ++ github.com/hashicorp/vault/sdk v0.1.13 ++ github.com/inetaf/tcpproxy v0.0.0-20200125044825-b6bb9b5b8252 ++ github.com/magiconair/properties v1.8.4 ++ github.com/mwitkow/grpc-proxy v0.0.0-20181017164139-0f1106ef9c76 ++ github.com/opentracing/opentracing-go v1.2.0 ++ github.com/openzipkin-contrib/zipkin-go-opentracing v0.3.5 ++ github.com/pascaldekloe/goe v0.1.0 ++ github.com/pkg/profile v1.5.0 ++ github.com/prometheus/client_golang v1.4.0 ++ github.com/rakyll/statik v0.1.7 ++ github.com/rogpeppe/fastuuid v1.2.0 ++ github.com/sergi/go-diff v1.1.0 ++ github.com/tg123/go-htpasswd v1.0.0 ++ golang.org/x/net v0.0.0-20201021035429-f5854403a974 ++ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 ++ google.golang.org/grpc v1.33.0 ++) ++ ++require ( + github.com/Shopify/sarama v1.19.0 // indirect + github.com/Shopify/toxiproxy v2.1.4+incompatible // indirect + github.com/VividCortex/gohistogram v1.0.0 // indirect + github.com/apache/thrift v0.13.0 // indirect + github.com/armon/go-metrics v0.3.4 // indirect +- github.com/armon/go-proxyproto v0.0.0-20180202201750-5b7edb60ff5f +- github.com/circonus-labs/circonus-gometrics/v3 v3.2.0 ++ github.com/beorn7/perks v1.0.1 // indirect ++ github.com/cespare/xxhash/v2 v2.1.1 // indirect ++ github.com/circonus-labs/circonusllhist v0.1.4 // indirect + github.com/circonus-labs/go-apiclient v0.7.9 // indirect ++ github.com/davecgh/go-spew v1.1.1 // indirect + github.com/eapache/go-resiliency v1.1.0 // indirect + github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect + github.com/eapache/queue v1.1.0 // indirect ++ github.com/fatih/color v1.9.0 // indirect + github.com/frankban/quicktest v1.11.1 // indirect +- github.com/go-kit/kit v0.9.0 + github.com/go-logfmt/logfmt v0.5.0 // indirect +- github.com/gobwas/glob v0.0.0-20180208211842-19c076cdf202 + github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/protobuf v1.4.3 // indirect + github.com/golang/snappy v0.0.2 // indirect + github.com/google/btree v1.0.0 // indirect +- github.com/hashicorp/consul/api v1.7.0 ++ github.com/google/go-cmp v0.5.2 // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect ++ github.com/hashicorp/go-cleanhttp v0.5.1 // indirect + github.com/hashicorp/go-hclog v0.14.1 // indirect + github.com/hashicorp/go-immutable-radix v1.3.0 // indirect + github.com/hashicorp/go-msgpack v0.5.5 // indirect ++ github.com/hashicorp/go-multierror v1.1.0 // indirect + github.com/hashicorp/go-retryablehttp v0.6.7 // indirect +- github.com/hashicorp/go-sockaddr v1.0.2 ++ github.com/hashicorp/go-rootcerts v1.0.2 // indirect + github.com/hashicorp/golang-lru v0.5.4 // indirect ++ github.com/hashicorp/hcl v1.0.0 // indirect + github.com/hashicorp/serf v0.9.5 // indirect +- github.com/hashicorp/vault/api v1.0.4 +- github.com/hashicorp/vault/sdk v0.1.13 +- github.com/inetaf/tcpproxy v0.0.0-20200125044825-b6bb9b5b8252 +- github.com/magiconair/properties v1.8.4 + github.com/mattn/go-colorable v0.1.8 // indirect ++ github.com/mattn/go-isatty v0.0.12 // indirect ++ github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect ++ github.com/mitchellh/go-homedir v1.1.0 // indirect + github.com/mitchellh/mapstructure v1.3.3 // indirect +- github.com/mwitkow/grpc-proxy v0.0.0-20181017164139-0f1106ef9c76 + github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492 // indirect +- github.com/opentracing/opentracing-go v1.2.0 +- github.com/openzipkin-contrib/zipkin-go-opentracing v0.3.5 +- github.com/pascaldekloe/goe v0.1.0 + github.com/pierrec/lz4 v2.5.2+incompatible // indirect +- github.com/pkg/profile v1.5.0 +- github.com/prometheus/client_golang v1.4.0 +- github.com/rakyll/statik v0.1.7 ++ github.com/pkg/errors v0.9.1 // indirect ++ github.com/prometheus/client_model v0.2.0 // indirect ++ github.com/prometheus/common v0.9.1 // indirect ++ github.com/prometheus/procfs v0.0.8 // indirect + github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect +- github.com/rogpeppe/fastuuid v1.2.0 +- github.com/sergi/go-diff v1.1.0 +- github.com/tg123/go-htpasswd v1.0.0 ++ github.com/ryanuber/go-glob v1.0.0 // indirect ++ github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c // indirect + golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect +- golang.org/x/net v0.0.0-20201021035429-f5854403a974 +- golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 +- golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12 // indirect ++ golang.org/x/sys v0.6.0 // indirect ++ golang.org/x/text v0.3.3 // indirect + golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect +- google.golang.org/grpc v1.33.0 ++ google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect + google.golang.org/protobuf v1.25.0 // indirect + gopkg.in/square/go-jose.v2 v2.5.1 // indirect + gopkg.in/yaml.v2 v2.3.0 // indirect + ) + +-go 1.13 ++go 1.17 diff --git a/www/fabio/files/patch-go.sum b/www/fabio/files/patch-go.sum new file mode 100644 index 000000000000..2ffb31de0577 --- /dev/null +++ b/www/fabio/files/patch-go.sum @@ -0,0 +1,19 @@ +--- go.sum.orig 2023-03-15 10:25:03 UTC ++++ go.sum +@@ -348,6 +348,8 @@ golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go + golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= + golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12 h1:QyVthZKMsyaQwBTJE04jdNN0Pp5Fn9Qga0mrgxyERQM= + golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= ++golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= ++golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= + golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= + golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= + golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +@@ -398,7 +400,6 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMe + gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= + gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d/go.mod h1:cuepJuh7vyXfUyUwEgHQXw849cJrilpS5NeIjOWESAw= + gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +-gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= + gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= + gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= + gopkg.in/square/go-jose.v2 v2.5.1 h1:7odma5RETjNHWJnR32wx8t+Io4djHE1PqxCFx3iiZ2w= diff --git a/www/fabio/files/patch-vendor_modules.txt b/www/fabio/files/patch-vendor_modules.txt new file mode 100644 index 000000000000..b4654a0b335e --- /dev/null +++ b/www/fabio/files/patch-vendor_modules.txt @@ -0,0 +1,299 @@ +--- vendor/modules.txt.orig 2023-03-15 10:26:13 UTC ++++ vendor/modules.txt +@@ -1,36 +1,56 @@ + # github.com/Shopify/sarama v1.19.0 ++## explicit + github.com/Shopify/sarama ++# github.com/Shopify/toxiproxy v2.1.4+incompatible ++## explicit + # github.com/VividCortex/gohistogram v1.0.0 ++## explicit + github.com/VividCortex/gohistogram + # github.com/apache/thrift v0.13.0 ++## explicit + github.com/apache/thrift/lib/go/thrift + # github.com/armon/go-metrics v0.3.4 ++## explicit; go 1.12 + github.com/armon/go-metrics + # github.com/armon/go-proxyproto v0.0.0-20180202201750-5b7edb60ff5f ++## explicit + github.com/armon/go-proxyproto + # github.com/beorn7/perks v1.0.1 ++## explicit; go 1.11 + github.com/beorn7/perks/quantile + # github.com/cespare/xxhash/v2 v2.1.1 ++## explicit; go 1.11 + github.com/cespare/xxhash/v2 + # github.com/circonus-labs/circonus-gometrics/v3 v3.2.0 ++## explicit; go 1.14 + github.com/circonus-labs/circonus-gometrics/v3 + github.com/circonus-labs/circonus-gometrics/v3/checkmgr + # github.com/circonus-labs/circonusllhist v0.1.4 ++## explicit + github.com/circonus-labs/circonusllhist + # github.com/circonus-labs/go-apiclient v0.7.9 ++## explicit; go 1.13 + github.com/circonus-labs/go-apiclient + github.com/circonus-labs/go-apiclient/config + # github.com/davecgh/go-spew v1.1.1 ++## explicit + github.com/davecgh/go-spew/spew + # github.com/eapache/go-resiliency v1.1.0 ++## explicit + github.com/eapache/go-resiliency/breaker + # github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 ++## explicit + github.com/eapache/go-xerial-snappy + # github.com/eapache/queue v1.1.0 ++## explicit + github.com/eapache/queue + # github.com/fatih/color v1.9.0 ++## explicit; go 1.13 + github.com/fatih/color ++# github.com/frankban/quicktest v1.11.1 ++## explicit; go 1.13 + # github.com/go-kit/kit v0.9.0 ++## explicit + github.com/go-kit/kit/log + github.com/go-kit/kit/metrics + github.com/go-kit/kit/metrics/discard +@@ -43,8 +63,10 @@ github.com/go-kit/kit/metrics/prometheus + github.com/go-kit/kit/metrics/statsd + github.com/go-kit/kit/util/conn + # github.com/go-logfmt/logfmt v0.5.0 ++## explicit; go 1.13 + github.com/go-logfmt/logfmt + # github.com/gobwas/glob v0.0.0-20180208211842-19c076cdf202 ++## explicit + github.com/gobwas/glob + github.com/gobwas/glob/compiler + github.com/gobwas/glob/match +@@ -54,37 +76,57 @@ github.com/gobwas/glob/syntax/lexer + github.com/gobwas/glob/util/runes + github.com/gobwas/glob/util/strings + # github.com/gogo/protobuf v1.3.2 ++## explicit; go 1.15 + github.com/gogo/protobuf/proto + # github.com/golang/protobuf v1.4.3 ++## explicit; go 1.9 + github.com/golang/protobuf/proto + github.com/golang/protobuf/ptypes + github.com/golang/protobuf/ptypes/any + github.com/golang/protobuf/ptypes/duration + github.com/golang/protobuf/ptypes/timestamp + # github.com/golang/snappy v0.0.2 ++## explicit + github.com/golang/snappy ++# github.com/google/btree v1.0.0 ++## explicit ++# github.com/google/go-cmp v0.5.2 ++## explicit; go 1.8 + # github.com/hashicorp/consul/api v1.7.0 ++## explicit; go 1.12 + github.com/hashicorp/consul/api + # github.com/hashicorp/errwrap v1.1.0 ++## explicit + github.com/hashicorp/errwrap + # github.com/hashicorp/go-cleanhttp v0.5.1 ++## explicit + github.com/hashicorp/go-cleanhttp + # github.com/hashicorp/go-hclog v0.14.1 ++## explicit; go 1.13 + github.com/hashicorp/go-hclog + # github.com/hashicorp/go-immutable-radix v1.3.0 ++## explicit + github.com/hashicorp/go-immutable-radix ++# github.com/hashicorp/go-msgpack v0.5.5 ++## explicit + # github.com/hashicorp/go-multierror v1.1.0 ++## explicit; go 1.14 + github.com/hashicorp/go-multierror + # github.com/hashicorp/go-retryablehttp v0.6.7 ++## explicit; go 1.13 + github.com/hashicorp/go-retryablehttp + # github.com/hashicorp/go-rootcerts v1.0.2 ++## explicit; go 1.12 + github.com/hashicorp/go-rootcerts + # github.com/hashicorp/go-sockaddr v1.0.2 ++## explicit + github.com/hashicorp/go-sockaddr + github.com/hashicorp/go-sockaddr/template + # github.com/hashicorp/golang-lru v0.5.4 ++## explicit; go 1.12 + github.com/hashicorp/golang-lru/simplelru + # github.com/hashicorp/hcl v1.0.0 ++## explicit + github.com/hashicorp/hcl + github.com/hashicorp/hcl/hcl/ast + github.com/hashicorp/hcl/hcl/parser +@@ -95,10 +137,13 @@ github.com/hashicorp/hcl/json/parser + github.com/hashicorp/hcl/json/scanner + github.com/hashicorp/hcl/json/token + # github.com/hashicorp/serf v0.9.5 ++## explicit; go 1.12 + github.com/hashicorp/serf/coordinate + # github.com/hashicorp/vault/api v1.0.4 ++## explicit; go 1.12 + github.com/hashicorp/vault/api + # github.com/hashicorp/vault/sdk v0.1.13 ++## explicit; go 1.12 + github.com/hashicorp/vault/sdk/helper/compressutil + github.com/hashicorp/vault/sdk/helper/consts + github.com/hashicorp/vault/sdk/helper/hclutil +@@ -106,29 +151,40 @@ github.com/hashicorp/vault/sdk/helper/jsonutil + github.com/hashicorp/vault/sdk/helper/parseutil + github.com/hashicorp/vault/sdk/helper/strutil + # github.com/inetaf/tcpproxy v0.0.0-20200125044825-b6bb9b5b8252 ++## explicit + github.com/inetaf/tcpproxy + # github.com/magiconair/properties v1.8.4 ++## explicit; go 1.13 + github.com/magiconair/properties + # github.com/mattn/go-colorable v0.1.8 ++## explicit; go 1.13 + github.com/mattn/go-colorable + # github.com/mattn/go-isatty v0.0.12 ++## explicit; go 1.12 + github.com/mattn/go-isatty + # github.com/matttproud/golang_protobuf_extensions v1.0.1 ++## explicit + github.com/matttproud/golang_protobuf_extensions/pbutil + # github.com/mitchellh/go-homedir v1.1.0 ++## explicit + github.com/mitchellh/go-homedir + # github.com/mitchellh/mapstructure v1.3.3 ++## explicit; go 1.14 + github.com/mitchellh/mapstructure + # github.com/mwitkow/grpc-proxy v0.0.0-20181017164139-0f1106ef9c76 ++## explicit + github.com/mwitkow/grpc-proxy/proxy + # github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492 ++## explicit + github.com/opentracing-contrib/go-observer + # github.com/opentracing/opentracing-go v1.2.0 ++## explicit; go 1.14 + github.com/opentracing/opentracing-go + github.com/opentracing/opentracing-go/ext + github.com/opentracing/opentracing-go/log + github.com/opentracing/opentracing-go/mocktracer + # github.com/openzipkin-contrib/zipkin-go-opentracing v0.3.5 ++## explicit + github.com/openzipkin-contrib/zipkin-go-opentracing + github.com/openzipkin-contrib/zipkin-go-opentracing/flag + github.com/openzipkin-contrib/zipkin-go-opentracing/thrift/gen-go/scribe +@@ -136,50 +192,67 @@ github.com/openzipkin-contrib/zipkin-go-opentracing/th + github.com/openzipkin-contrib/zipkin-go-opentracing/types + github.com/openzipkin-contrib/zipkin-go-opentracing/wire + # github.com/pascaldekloe/goe v0.1.0 ++## explicit + github.com/pascaldekloe/goe/verify + # github.com/pierrec/lz4 v2.5.2+incompatible ++## explicit + github.com/pierrec/lz4 + github.com/pierrec/lz4/internal/xxh32 + # github.com/pkg/errors v0.9.1 ++## explicit + github.com/pkg/errors + # github.com/pkg/profile v1.5.0 ++## explicit; go 1.13 + github.com/pkg/profile + # github.com/prometheus/client_golang v1.4.0 ++## explicit; go 1.11 + github.com/prometheus/client_golang/prometheus + github.com/prometheus/client_golang/prometheus/internal + github.com/prometheus/client_golang/prometheus/promhttp + # github.com/prometheus/client_model v0.2.0 ++## explicit; go 1.9 + github.com/prometheus/client_model/go + # github.com/prometheus/common v0.9.1 ++## explicit; go 1.11 + github.com/prometheus/common/expfmt + github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg + github.com/prometheus/common/model + # github.com/prometheus/procfs v0.0.8 ++## explicit; go 1.12 + github.com/prometheus/procfs + github.com/prometheus/procfs/internal/fs + github.com/prometheus/procfs/internal/util + # github.com/rakyll/statik v0.1.7 ++## explicit; go 1.12 + github.com/rakyll/statik + github.com/rakyll/statik/fs + # github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 ++## explicit + github.com/rcrowley/go-metrics + # github.com/rogpeppe/fastuuid v1.2.0 ++## explicit; go 1.12 + github.com/rogpeppe/fastuuid + # github.com/ryanuber/go-glob v1.0.0 ++## explicit + github.com/ryanuber/go-glob + # github.com/sergi/go-diff v1.1.0 ++## explicit; go 1.12 + github.com/sergi/go-diff/diffmatchpatch + # github.com/tg123/go-htpasswd v1.0.0 ++## explicit; go 1.12 + github.com/tg123/go-htpasswd + # github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c ++## explicit; go 1.13 + github.com/tv42/httpunix + # golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 ++## explicit; go 1.11 + golang.org/x/crypto/bcrypt + golang.org/x/crypto/blowfish + golang.org/x/crypto/ed25519 + golang.org/x/crypto/ed25519/internal/edwards25519 + golang.org/x/crypto/pbkdf2 + # golang.org/x/net v0.0.0-20201021035429-f5854403a974 ++## explicit; go 1.11 + golang.org/x/net/context + golang.org/x/net/http/httpguts + golang.org/x/net/http2 +@@ -189,21 +262,27 @@ golang.org/x/net/internal/timeseries + golang.org/x/net/trace + golang.org/x/net/websocket + # golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 ++## explicit + golang.org/x/sync/singleflight +-# golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12 ++# golang.org/x/sys v0.6.0 ++## explicit; go 1.17 + golang.org/x/sys/internal/unsafeheader + golang.org/x/sys/unix + golang.org/x/sys/windows + # golang.org/x/text v0.3.3 ++## explicit; go 1.11 + golang.org/x/text/secure/bidirule + golang.org/x/text/transform + golang.org/x/text/unicode/bidi + golang.org/x/text/unicode/norm + # golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e ++## explicit + golang.org/x/time/rate + # google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 ++## explicit; go 1.11 + google.golang.org/genproto/googleapis/rpc/status + # google.golang.org/grpc v1.33.0 ++## explicit; go 1.11 + google.golang.org/grpc + google.golang.org/grpc/attributes + google.golang.org/grpc/backoff +@@ -245,6 +324,7 @@ google.golang.org/grpc/stats + google.golang.org/grpc/status + google.golang.org/grpc/tap + # google.golang.org/protobuf v1.25.0 ++## explicit; go 1.9 + google.golang.org/protobuf/encoding/prototext + google.golang.org/protobuf/encoding/protowire + google.golang.org/protobuf/internal/descfmt +@@ -275,7 +355,10 @@ google.golang.org/protobuf/types/known/anypb + google.golang.org/protobuf/types/known/durationpb + google.golang.org/protobuf/types/known/timestamppb + # gopkg.in/square/go-jose.v2 v2.5.1 ++## explicit + gopkg.in/square/go-jose.v2 + gopkg.in/square/go-jose.v2/cipher + gopkg.in/square/go-jose.v2/json + gopkg.in/square/go-jose.v2/jwt ++# gopkg.in/yaml.v2 v2.3.0 ++## explicit