Skip to content

Commit 46b9db7

Browse files
committed
cmd/gitmirror: update deps
Pull in google.golang.org/api/compute/v1 and google.golang.org/api/oauth2/v2 needed by x/build/buildenv/envs.go Change-Id: I3abb036f18f3dc10f86626205d0c2ea0bf75078b Reviewed-on: https://go-review.googlesource.com/120856 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 82893f7 commit 46b9db7

File tree

1 file changed

+33
-20
lines changed

1 file changed

+33
-20
lines changed

cmd/gitmirror/Dockerfile.0

Lines changed: 33 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ LABEL maintainer "[email protected]"
99

1010
# BEGIN deps (run `make update-deps` to update)
1111

12-
# Repo cloud.google.com/go at 1d0c2da (2018-01-30)
13-
ENV REV=1d0c2da40456a9b47f5376165f275424acc15c09
12+
# Repo cloud.google.com/go at 5e6e482 (2018-06-26)
13+
ENV REV=5e6e4824f48ade4393d647a2d621fa27238b5954
1414
RUN go get -d cloud.google.com/go/compute/metadata &&\
1515
(cd /go/src/cloud.google.com/go && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
1616

17-
# Repo github.com/golang/protobuf at 9255415 (2018-01-25)
18-
ENV REV=925541529c1fa6821df4e44ce2723319eb2be768
17+
# Repo github.com/golang/protobuf at 9eb2c01 (2018-06-22)
18+
ENV REV=9eb2c01ac278a5d89ce4b2be68fe4500955d8179
1919
RUN go get -d github.com/golang/protobuf/proto `#and 5 other pkgs` &&\
2020
(cd /go/src/github.com/golang/protobuf && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
2121

22-
# Repo github.com/google/go-github at 897969c (2018-01-30)
23-
ENV REV=897969cdc831052c4694e205e24a033fe7248c2f
22+
# Repo github.com/google/go-github at 60d040d (2018-06-23)
23+
ENV REV=60d040d2dafa18fa3e86cbf22fbc3208ef9ef1e0
2424
RUN go get -d github.com/google/go-github/github &&\
2525
(cd /go/src/github.com/google/go-github && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
2626

@@ -29,36 +29,41 @@ ENV REV=53e6ce116135b80d037921a7fdd5138cf32d7a8a
2929
RUN go get -d github.com/google/go-querystring/query &&\
3030
(cd /go/src/github.com/google/go-querystring && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
3131

32-
# Repo github.com/gregjones/httpcache at 2bcd89a (2017-11-19)
33-
ENV REV=2bcd89a1743fd4b373f7370ce8ddc14dfbd18229
32+
# Repo github.com/gregjones/httpcache at 9cad4c3 (2018-03-06)
33+
ENV REV=9cad4c3443a7200dd6400aef47183728de563a38
3434
RUN go get -d github.com/gregjones/httpcache &&\
3535
(cd /go/src/github.com/gregjones/httpcache && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
3636

37-
# Repo go4.org at 034d17a (2017-05-25)
38-
ENV REV=034d17a462f7b2dcd1a4a73553ec5357ff6e6c6e
37+
# Repo go4.org at fba789b (2018-01-03)
38+
ENV REV=fba789b7e39ba524b9e60c45c37a50fae63a2a09
3939
RUN go get -d go4.org/types &&\
4040
(cd /go/src/go4.org && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
4141

42-
# Repo golang.org/x/net at 2fb46b1 (2018-02-02)
43-
ENV REV=2fb46b16b8dda405028c50f7c7f0f9dd1fa6bfb1
42+
# Repo golang.org/x/net at afe8f62 (2018-06-21)
43+
ENV REV=afe8f62b1d6bbd81f31868121a50b06d8188e1f9
4444
RUN go get -d golang.org/x/net/context `#and 2 other pkgs` &&\
4545
(cd /go/src/golang.org/x/net && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
4646

47-
# Repo golang.org/x/oauth2 at 30785a2 (2018-01-04)
48-
ENV REV=30785a2c434e431ef7c507b54617d6a951d5f2b4
49-
RUN go get -d golang.org/x/oauth2 `#and 2 other pkgs` &&\
47+
# Repo golang.org/x/oauth2 at ef14785 (2018-06-20)
48+
ENV REV=ef147856a6ddbb60760db74283d2424e98c87bff
49+
RUN go get -d golang.org/x/oauth2 `#and 5 other pkgs` &&\
5050
(cd /go/src/golang.org/x/oauth2 && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
5151

52-
# Repo golang.org/x/sync at fd80eb9 (2017-11-01)
53-
ENV REV=fd80eb99c8f653c847d294a001bdf2a3a6f768f5
52+
# Repo golang.org/x/sync at 1d60e46 (2018-03-14)
53+
ENV REV=1d60e4601c6fd243af51cc01ddf169918a5407ca
5454
RUN go get -d golang.org/x/sync/errgroup &&\
5555
(cd /go/src/golang.org/x/sync && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
5656

57-
# Repo golang.org/x/time at 26559e0 (2018-03-14)
58-
ENV REV=26559e0f760e39c24d730d3224364aef164ee23f
57+
# Repo golang.org/x/time at fbb02b2 (2018-04-12)
58+
ENV REV=fbb02b2291d28baffd63558aa44b4b56f178d650
5959
RUN go get -d golang.org/x/time/rate &&\
6060
(cd /go/src/golang.org/x/time && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
6161

62+
# Repo google.golang.org/api at 3639d6d (2018-06-21)
63+
ENV REV=3639d6d93f377f39a1de765fa4ef37b3c7ca8bd9
64+
RUN go get -d google.golang.org/api/compute/v1 `#and 5 other pkgs` &&\
65+
(cd /go/src/google.golang.org/api && (git cat-file -t $REV 2>/dev/null || git fetch -q origin $REV) && git reset --hard $REV)
66+
6267
# Optimization to speed up iterative development, not necessary for correctness:
6368
RUN go install cloud.google.com/go/compute/metadata \
6469
github.com/golang/protobuf/proto \
@@ -73,9 +78,17 @@ RUN go install cloud.google.com/go/compute/metadata \
7378
golang.org/x/net/context \
7479
golang.org/x/net/context/ctxhttp \
7580
golang.org/x/oauth2 \
81+
golang.org/x/oauth2/google \
7682
golang.org/x/oauth2/internal \
83+
golang.org/x/oauth2/jws \
84+
golang.org/x/oauth2/jwt \
7785
golang.org/x/sync/errgroup \
78-
golang.org/x/time/rate
86+
golang.org/x/time/rate \
87+
google.golang.org/api/compute/v1 \
88+
google.golang.org/api/gensupport \
89+
google.golang.org/api/googleapi \
90+
google.golang.org/api/googleapi/internal/uritemplates \
91+
google.golang.org/api/oauth2/v2
7992
# END deps
8093

8194
COPY . /go/src/golang.org/x/build/

0 commit comments

Comments
 (0)