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

Commit

Permalink
Merge pull request #1671 from endocode/dongsu/vendor-update-20160825
Browse files Browse the repository at this point in the history
vendor: update vendors as of 2016-08-25
  • Loading branch information
Dongsu Park authored Aug 26, 2016
2 parents 875d938 + fa2a50c commit c3ec894
Show file tree
Hide file tree
Showing 782 changed files with 1,129,939 additions and 2,353 deletions.
77 changes: 39 additions & 38 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import:
- http2
- internal
- trace
- lex/httplex
- package: google.golang.org/api
subpackages:
- googleapi
37 changes: 34 additions & 3 deletions scripts/glide-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,37 @@ fi

glide update --strip-vcs --strip-vendor --update-vendored --delete
glide vc --only-code --no-tests --no-legal-files
# NOTE: we cannot remove vendor/golang.org/x/net/internal to avoid build errors
# that internal packages cannot be imported.
git checkout vendor/golang.org/x/net/internal

# manual cleanup to reduce size of vendor trees

# etcd
ETCD_CLEANUP_DIRS="\
alarm auth clientv3 cmd compactor contrib discovery e2e embed etcdctl \
etcdmain etcdserver hack integration lease logos mvcc proxy raft rafthttp \
scripts snap store tools version wal \
"
pushd vendor/github.com/coreos/etcd
rm -rf $ETCD_CLEANUP_DIRS
popd

# godbus
rm -rf vendor/github.com/godbus/dbus/_examples

# go-systemd
GOSYSTEMD_CLEANUP_DIRS="examples journal login1 machine1 sdjournal util"
pushd vendor/github.com/coreos/go-systemd
rm -rf $GOSYSTEMD_CLEANUP_DIRS
popd

# grpc
GRPC_CLEANUP_DIRS="benchmark examples test"
pushd vendor/google.golang.org/grpc
rm -rf $GRPC_CLEANUP_DIRS
popd

# gogo/protobuf
GOGOPROTOBUF_CLEANUP_DIRS="test vanity/test"
pushd vendor/github.com/gogo/protobuf
rm -rf $GOGOPROTOBUF_CLEANUP_DIRS
popd

108 changes: 108 additions & 0 deletions vendor/github.com/beorn7/perks/histogram/histogram.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/github.com/beorn7/perks/quantile/stream.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c3ec894

Please sign in to comment.