Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit c3ec894

Browse files
author
Dongsu Park
authored
Merge pull request #1671 from endocode/dongsu/vendor-update-20160825
vendor: update vendors as of 2016-08-25
2 parents 875d938 + fa2a50c commit c3ec894

782 files changed

Lines changed: 1129939 additions & 2353 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

glide.lock

Lines changed: 39 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glide.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import:
3030
- http2
3131
- internal
3232
- trace
33+
- lex/httplex
3334
- package: google.golang.org/api
3435
subpackages:
3536
- googleapi

scripts/glide-update.sh

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,37 @@ fi
2121

2222
glide update --strip-vcs --strip-vendor --update-vendored --delete
2323
glide vc --only-code --no-tests --no-legal-files
24-
# NOTE: we cannot remove vendor/golang.org/x/net/internal to avoid build errors
25-
# that internal packages cannot be imported.
26-
git checkout vendor/golang.org/x/net/internal
24+
25+
# manual cleanup to reduce size of vendor trees
26+
27+
# etcd
28+
ETCD_CLEANUP_DIRS="\
29+
alarm auth clientv3 cmd compactor contrib discovery e2e embed etcdctl \
30+
etcdmain etcdserver hack integration lease logos mvcc proxy raft rafthttp \
31+
scripts snap store tools version wal \
32+
"
33+
pushd vendor/github.com/coreos/etcd
34+
rm -rf $ETCD_CLEANUP_DIRS
35+
popd
36+
37+
# godbus
38+
rm -rf vendor/github.com/godbus/dbus/_examples
39+
40+
# go-systemd
41+
GOSYSTEMD_CLEANUP_DIRS="examples journal login1 machine1 sdjournal util"
42+
pushd vendor/github.com/coreos/go-systemd
43+
rm -rf $GOSYSTEMD_CLEANUP_DIRS
44+
popd
45+
46+
# grpc
47+
GRPC_CLEANUP_DIRS="benchmark examples test"
48+
pushd vendor/google.golang.org/grpc
49+
rm -rf $GRPC_CLEANUP_DIRS
50+
popd
51+
52+
# gogo/protobuf
53+
GOGOPROTOBUF_CLEANUP_DIRS="test vanity/test"
54+
pushd vendor/github.com/gogo/protobuf
55+
rm -rf $GOGOPROTOBUF_CLEANUP_DIRS
56+
popd
57+

vendor/github.com/beorn7/perks/histogram/histogram.go

Lines changed: 108 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/beorn7/perks/quantile/stream.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)