vendor/golang_org/x: move to internal/x

Packages in vendor/ directories have a "vendor/" path prefix in GOPATH
mode, but intentionally do not in module mode. Since the import path
is embedded in the compiled output, changing that path invalidates
cache entries and causes cmd/go to try to rebuild (and reinstall) the
vendored libraries, which will fail if the directory containing those
libraries is read-only.

If I understood correctly, this is the approach Russ suggested as an
alternative to https://golang.org/cl/136138.

Fixes #27285
Fixes #26988

Change-Id: I8a2507fa892b84cde0a803aaa79e460723da572b
Reviewed-on: https://go-review.googlesource.com/c/147443
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
Bryan C. Mills 2018-11-05 15:01:53 -05:00
parent b4c934319a
commit 6571d32361
4 changed files with 6 additions and 6 deletions

View file

@ -14,8 +14,8 @@ import (
"crypto/sha1"
"crypto/sha256"
"crypto/x509"
"golang_org/x/crypto/chacha20poly1305"
"hash"
"internal/x/crypto/chacha20poly1305"
)
// a keyAgreement implements the client and server side of a TLS key agreement

View file

@ -6,7 +6,7 @@ package tls
import (
"fmt"
"golang_org/x/crypto/cryptobyte"
"internal/x/crypto/cryptobyte"
"strings"
)

View file

@ -8,10 +8,10 @@ import (
"crypto/elliptic"
"crypto/hmac"
"errors"
"golang_org/x/crypto/cryptobyte"
"golang_org/x/crypto/curve25519"
"golang_org/x/crypto/hkdf"
"hash"
"internal/x/crypto/cryptobyte"
"internal/x/crypto/curve25519"
"internal/x/crypto/hkdf"
"io"
"math/big"
)

View file

@ -12,7 +12,7 @@ import (
"crypto/sha256"
"crypto/subtle"
"errors"
"golang_org/x/crypto/cryptobyte"
"internal/x/crypto/cryptobyte"
"io"
)