cmd/viewcore/vendor: delete

The vendor directory in cmd/viewcore was added in CL 115056 to achieve
reproducible builds and tests.

A go.mod file was added in CL 167178, and it has since been updated
in CL 170786 and CL 207197. The cmd/viewcore/vendor directory has not
been updated since its addition other than CL 121016 to add missing
packages, and CL 121435 to remove files and packages for tests.
As a result, the vendored golang.org/x/sys/unix package is 2 years old,
while the required x/sys module in go.mod is much newer.

The vendor directory is managed by the govendor tool, which has been
recently deprecated in favor of Go module mode.

In order to resolve this version skew and inability to manage the
vendor directory, delete it and rely on the go.mod and go.sum files
alongside with the Go module mirror at proxy.golang.org to provide
reproducible, available, and secure builds.

Update the README contributing section to match other golang.org/x
repository README files.

Change-Id: I8e5860fe23906bdb62e59cf9987d472dda18268e
Reviewed-on: https://go-review.googlesource.com/c/debug/+/222541
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
299 files changed
tree: df458379bed27f255a9a7b0a40cb947eb11cc56a
  1. cmd/
  2. internal/
  3. AUTHORS
  4. codereview.cfg
  5. CONTRIBUTING.md
  6. CONTRIBUTORS
  7. go.mod
  8. go.sum
  9. LICENSE
  10. README.md
README.md

Go Debug

This repository holds utilities and libraries for debugging Go programs.

WARNING! Please expect breaking changes and unstable APIs. Most of them are currently are at an early, experimental stage.

Report Issues / Send Patches

This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://golang.org/doc/contribute.html.

The main issue tracker for the debug repository is located at https://github.com/golang/go/issues. Prefix your issue with “x/debug:” in the subject line, so it is easy to find.