]> Cypherpunks repositories - gostls13.git/commit
all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor'
authorBryan C. Mills <bcmills@google.com>
Fri, 1 Mar 2019 15:12:30 +0000 (10:12 -0500)
committerBryan C. Mills <bcmills@google.com>
Mon, 11 Mar 2019 20:28:54 +0000 (20:28 +0000)
commitc5cf6624076a644906aa7ec5c91c4e01ccd375d3
tree9953a8fe6691afac06d4087f6badebf52fbc8fd9
parent0fc89a72edc2c73651f7f6841b1146af723f517f
all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor'

This also updates the vendored-in versions of several packages: 'go
mod vendor' selects a consistent version of each module, but we had
previously vendored an ad-hoc selection of packages.

Notably, x/crypto/hkdf was previously vendored in at a much newer
commit than the rest of x/crypto. Bringing the rest of x/crypto up to
that commit introduced an import of golang.org/x/sys/cpu, which broke
the js/wasm build, requiring an upgrade of x/sys to pick up CL 165749.

Updates #30228
Updates #30241
Updates #25822

Change-Id: I5b3dbc232b7e6a048a158cbd8d36137af1efb711
Reviewed-on: https://go-review.googlesource.com/c/go/+/164623
Reviewed-by: Filippo Valsorda <filippo@golang.org>
240 files changed:
src/cmd/dist/build.go
src/cmd/dist/test.go
src/cmd/go/testdata/script/gopath_std_vendor.txt
src/cmd/go/testdata/script/list_std.txt
src/cmd/go/testdata/script/mod_list_std.txt
src/cmd/go/testdata/script/mod_std_vendor.txt
src/cmd/go/testdata/script/std_vendor.txt
src/cmd/vet/all/whitelist/s390x.txt
src/crypto/tls/cipher_suites.go
src/crypto/tls/handshake_messages.go
src/crypto/tls/key_schedule.go
src/crypto/tls/ticket.go
src/crypto/x509/x509.go
src/go.mod
src/go.sum [new file with mode: 0644]
src/go/build/deps_test.go
src/go/internal/srcimporter/srcimporter_test.go
src/internal/x/crypto/chacha20poly1305/chacha20poly1305_test.go [deleted file]
src/internal/x/crypto/chacha20poly1305/chacha20poly1305_vectors_test.go [deleted file]
src/internal/x/crypto/cryptobyte/asn1_test.go [deleted file]
src/internal/x/crypto/cryptobyte/cryptobyte_test.go [deleted file]
src/internal/x/crypto/cryptobyte/example_test.go [deleted file]
src/internal/x/crypto/curve25519/curve25519_test.go [deleted file]
src/internal/x/crypto/hkdf/example_test.go [deleted file]
src/internal/x/crypto/hkdf/hkdf_test.go [deleted file]
src/internal/x/crypto/internal/chacha20/chacha_test.go [deleted file]
src/internal/x/crypto/internal/chacha20/vectors_test.go [deleted file]
src/internal/x/crypto/poly1305/poly1305_test.go [deleted file]
src/internal/x/crypto/poly1305/vectors_test.go [deleted file]
src/internal/x/fiximports.bash [deleted file]
src/internal/x/net/dns/dnsmessage/example_test.go [deleted file]
src/internal/x/net/dns/dnsmessage/message_test.go [deleted file]
src/internal/x/net/http/httpguts/httplex_test.go [deleted file]
src/internal/x/net/http/httpproxy/export_test.go [deleted file]
src/internal/x/net/http/httpproxy/proxy_test.go [deleted file]
src/internal/x/net/http2/hpack/encode_test.go [deleted file]
src/internal/x/net/http2/hpack/hpack_test.go [deleted file]
src/internal/x/net/http2/hpack/tables_test.go [deleted file]
src/internal/x/net/idna/punycode_test.go [deleted file]
src/internal/x/net/internal/nettest/helper_bsd.go [deleted file]
src/internal/x/net/internal/nettest/helper_nobsd.go [deleted file]
src/internal/x/net/internal/nettest/helper_posix.go [deleted file]
src/internal/x/net/internal/nettest/helper_stub.go [deleted file]
src/internal/x/net/internal/nettest/helper_unix.go [deleted file]
src/internal/x/net/internal/nettest/helper_windows.go [deleted file]
src/internal/x/net/internal/nettest/interface.go [deleted file]
src/internal/x/net/internal/nettest/rlimit.go [deleted file]
src/internal/x/net/internal/nettest/stack.go [deleted file]
src/internal/x/net/lif/address_test.go [deleted file]
src/internal/x/net/lif/link_test.go [deleted file]
src/internal/x/net/nettest/conntest_test.go [deleted file]
src/internal/x/net/route/address_darwin_test.go [deleted file]
src/internal/x/net/route/address_test.go [deleted file]
src/internal/x/net/route/message_darwin_test.go [deleted file]
src/internal/x/net/route/message_freebsd_test.go [deleted file]
src/internal/x/net/route/message_test.go [deleted file]
src/internal/x/net/route/route_test.go [deleted file]
src/internal/x/text/secure/doc.go [deleted file]
src/internal/x/text/transform/examples_test.go [deleted file]
src/internal/x/text/unicode/bidi/example_test.go [deleted file]
src/internal/x/text/unicode/doc.go [deleted file]
src/internal/x/text/unicode/norm/example_iter_test.go [deleted file]
src/internal/x/text/unicode/norm/example_test.go [deleted file]
src/net/dnsclient.go
src/net/dnsclient_unix.go
src/net/dnsclient_unix_test.go
src/net/http/h2_bundle.go
src/net/http/http.go
src/net/http/httptest/recorder.go
src/net/http/httputil/reverseproxy.go
src/net/http/request.go
src/net/http/response.go
src/net/http/server.go
src/net/http/transfer.go
src/net/http/transport.go
src/net/http/transport_test.go
src/net/interface_bsd.go
src/net/interface_bsdvar.go
src/net/interface_darwin.go
src/net/interface_freebsd.go
src/net/interface_solaris.go
src/net/lookup_unix.go
src/net/pipe_test.go
src/run.bash
src/vendor/golang.org/x/crypto/AUTHORS [new file with mode: 0644]
src/vendor/golang.org/x/crypto/CONTRIBUTORS [new file with mode: 0644]
src/vendor/golang.org/x/crypto/LICENSE [new file with mode: 0644]
src/vendor/golang.org/x/crypto/PATENTS [new file with mode: 0644]
src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go [moved from src/internal/x/crypto/chacha20poly1305/chacha20poly1305.go with 81% similarity]
src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go [moved from src/internal/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go with 86% similarity]
src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s [moved from src/internal/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s with 100% similarity]
src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go [moved from src/internal/x/crypto/chacha20poly1305/chacha20poly1305_generic.go with 88% similarity]
src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go [moved from src/internal/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go with 100% similarity]
src/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go [new file with mode: 0644]
src/vendor/golang.org/x/crypto/cryptobyte/asn1.go [moved from src/internal/x/crypto/cryptobyte/asn1.go with 99% similarity]
src/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go [moved from src/internal/x/crypto/cryptobyte/asn1/asn1.go with 96% similarity]
src/vendor/golang.org/x/crypto/cryptobyte/builder.go [moved from src/internal/x/crypto/cryptobyte/builder.go with 100% similarity]
src/vendor/golang.org/x/crypto/cryptobyte/string.go [moved from src/internal/x/crypto/cryptobyte/string.go with 98% similarity]
src/vendor/golang.org/x/crypto/curve25519/const_amd64.h [moved from src/internal/x/crypto/curve25519/const_amd64.h with 100% similarity]
src/vendor/golang.org/x/crypto/curve25519/const_amd64.s [moved from src/internal/x/crypto/curve25519/const_amd64.s with 100% similarity]
src/vendor/golang.org/x/crypto/curve25519/cswap_amd64.s [moved from src/internal/x/crypto/curve25519/cswap_amd64.s with 100% similarity]
src/vendor/golang.org/x/crypto/curve25519/curve25519.go [moved from src/internal/x/crypto/curve25519/curve25519.go with 100% similarity]
src/vendor/golang.org/x/crypto/curve25519/doc.go [moved from src/internal/x/crypto/curve25519/doc.go with 94% similarity]
src/vendor/golang.org/x/crypto/curve25519/freeze_amd64.s [moved from src/internal/x/crypto/curve25519/freeze_amd64.s with 100% similarity]
src/vendor/golang.org/x/crypto/curve25519/ladderstep_amd64.s [moved from src/internal/x/crypto/curve25519/ladderstep_amd64.s with 100% similarity]
src/vendor/golang.org/x/crypto/curve25519/mont25519_amd64.go [moved from src/internal/x/crypto/curve25519/mont25519_amd64.go with 100% similarity]
src/vendor/golang.org/x/crypto/curve25519/mul_amd64.s [moved from src/internal/x/crypto/curve25519/mul_amd64.s with 100% similarity]
src/vendor/golang.org/x/crypto/curve25519/square_amd64.s [moved from src/internal/x/crypto/curve25519/square_amd64.s with 100% similarity]
src/vendor/golang.org/x/crypto/hkdf/hkdf.go [moved from src/internal/x/crypto/hkdf/hkdf.go with 98% similarity]
src/vendor/golang.org/x/crypto/internal/chacha20/chacha_generic.go [moved from src/internal/x/crypto/internal/chacha20/chacha_generic.go with 66% similarity]
src/vendor/golang.org/x/crypto/internal/chacha20/chacha_noasm.go [moved from src/internal/x/crypto/internal/chacha20/chacha_noasm.go with 100% similarity]
src/vendor/golang.org/x/crypto/internal/chacha20/chacha_s390x.go [moved from src/internal/x/crypto/internal/chacha20/chacha_s390x.go with 100% similarity]
src/vendor/golang.org/x/crypto/internal/chacha20/chacha_s390x.s [moved from src/internal/x/crypto/internal/chacha20/asm_s390x.s with 100% similarity]
src/vendor/golang.org/x/crypto/internal/chacha20/xor.go [moved from src/internal/x/crypto/internal/chacha20/xor.go with 100% similarity]
src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go [new file with mode: 0644]
src/vendor/golang.org/x/crypto/internal/subtle/aliasing_appengine.go [new file with mode: 0644]
src/vendor/golang.org/x/crypto/poly1305/poly1305.go [moved from src/internal/x/crypto/poly1305/poly1305.go with 95% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_amd64.go [moved from src/internal/x/crypto/poly1305/sum_amd64.go with 100% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_amd64.s [moved from src/internal/x/crypto/poly1305/sum_amd64.s with 100% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_arm.go [moved from src/internal/x/crypto/poly1305/sum_arm.go with 100% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_arm.s [moved from src/internal/x/crypto/poly1305/sum_arm.s with 100% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_noasm.go [moved from src/internal/x/crypto/poly1305/sum_noasm.go with 100% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_ref.go [moved from src/internal/x/crypto/poly1305/sum_ref.go with 100% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_s390x.go [moved from src/internal/x/crypto/poly1305/sum_s390x.go with 100% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_s390x.s [moved from src/internal/x/crypto/poly1305/sum_s390x.s with 100% similarity]
src/vendor/golang.org/x/crypto/poly1305/sum_vmsl_s390x.s [moved from src/internal/x/crypto/poly1305/sum_vmsl_s390x.s with 100% similarity]
src/vendor/golang.org/x/net/AUTHORS [new file with mode: 0644]
src/vendor/golang.org/x/net/CONTRIBUTORS [new file with mode: 0644]
src/vendor/golang.org/x/net/LICENSE [new file with mode: 0644]
src/vendor/golang.org/x/net/PATENTS [new file with mode: 0644]
src/vendor/golang.org/x/net/dns/dnsmessage/message.go [moved from src/internal/x/net/dns/dnsmessage/message.go with 78% similarity]
src/vendor/golang.org/x/net/http/httpguts/guts.go [moved from src/internal/x/net/http/httpguts/guts.go with 100% similarity]
src/vendor/golang.org/x/net/http/httpguts/httplex.go [moved from src/internal/x/net/http/httpguts/httplex.go with 99% similarity]
src/vendor/golang.org/x/net/http/httpproxy/proxy.go [moved from src/internal/x/net/http/httpproxy/proxy.go with 99% similarity]
src/vendor/golang.org/x/net/http2/hpack/encode.go [moved from src/internal/x/net/http2/hpack/encode.go with 100% similarity]
src/vendor/golang.org/x/net/http2/hpack/hpack.go [moved from src/internal/x/net/http2/hpack/hpack.go with 100% similarity]
src/vendor/golang.org/x/net/http2/hpack/huffman.go [moved from src/internal/x/net/http2/hpack/huffman.go with 100% similarity]
src/vendor/golang.org/x/net/http2/hpack/tables.go [moved from src/internal/x/net/http2/hpack/tables.go with 100% similarity]
src/vendor/golang.org/x/net/idna/idna.go [moved from src/internal/x/net/idna/idna.go with 99% similarity]
src/vendor/golang.org/x/net/idna/punycode.go [moved from src/internal/x/net/idna/punycode.go with 100% similarity]
src/vendor/golang.org/x/net/idna/tables.go [moved from src/internal/x/net/idna/tables.go with 99% similarity]
src/vendor/golang.org/x/net/idna/trie.go [moved from src/internal/x/net/idna/trie.go with 100% similarity]
src/vendor/golang.org/x/net/idna/trieval.go [moved from src/internal/x/net/idna/trieval.go with 97% similarity]
src/vendor/golang.org/x/net/lif/address.go [moved from src/internal/x/net/lif/address.go with 100% similarity]
src/vendor/golang.org/x/net/lif/binary.go [moved from src/internal/x/net/lif/binary.go with 100% similarity]
src/vendor/golang.org/x/net/lif/defs_solaris.go [moved from src/internal/x/net/lif/defs_solaris.go with 100% similarity]
src/vendor/golang.org/x/net/lif/lif.go [moved from src/internal/x/net/lif/lif.go with 100% similarity]
src/vendor/golang.org/x/net/lif/link.go [moved from src/internal/x/net/lif/link.go with 100% similarity]
src/vendor/golang.org/x/net/lif/sys.go [moved from src/internal/x/net/lif/sys.go with 100% similarity]
src/vendor/golang.org/x/net/lif/sys_solaris_amd64.s [moved from src/internal/x/net/lif/sys_solaris_amd64.s with 100% similarity]
src/vendor/golang.org/x/net/lif/syscall.go [moved from src/internal/x/net/lif/syscall.go with 100% similarity]
src/vendor/golang.org/x/net/lif/zsys_solaris_amd64.go [moved from src/internal/x/net/lif/zsys_solaris_amd64.go with 100% similarity]
src/vendor/golang.org/x/net/nettest/conntest.go [moved from src/internal/x/net/nettest/conntest.go with 100% similarity]
src/vendor/golang.org/x/net/nettest/conntest_go16.go [moved from src/internal/x/net/nettest/conntest_go16.go with 100% similarity]
src/vendor/golang.org/x/net/nettest/conntest_go17.go [moved from src/internal/x/net/nettest/conntest_go17.go with 100% similarity]
src/vendor/golang.org/x/net/route/address.go [moved from src/internal/x/net/route/address.go with 100% similarity]
src/vendor/golang.org/x/net/route/binary.go [moved from src/internal/x/net/route/binary.go with 100% similarity]
src/vendor/golang.org/x/net/route/defs_darwin.go [moved from src/internal/x/net/route/defs_darwin.go with 100% similarity]
src/vendor/golang.org/x/net/route/defs_dragonfly.go [moved from src/internal/x/net/route/defs_dragonfly.go with 100% similarity]
src/vendor/golang.org/x/net/route/defs_freebsd.go [moved from src/internal/x/net/route/defs_freebsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/defs_netbsd.go [moved from src/internal/x/net/route/defs_netbsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/defs_openbsd.go [moved from src/internal/x/net/route/defs_openbsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/empty.s [moved from src/internal/x/net/route/empty.s with 100% similarity]
src/vendor/golang.org/x/net/route/interface.go [moved from src/internal/x/net/route/interface.go with 100% similarity]
src/vendor/golang.org/x/net/route/interface_announce.go [moved from src/internal/x/net/route/interface_announce.go with 100% similarity]
src/vendor/golang.org/x/net/route/interface_classic.go [moved from src/internal/x/net/route/interface_classic.go with 100% similarity]
src/vendor/golang.org/x/net/route/interface_freebsd.go [moved from src/internal/x/net/route/interface_freebsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/interface_multicast.go [moved from src/internal/x/net/route/interface_multicast.go with 100% similarity]
src/vendor/golang.org/x/net/route/interface_openbsd.go [moved from src/internal/x/net/route/interface_openbsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/message.go [moved from src/internal/x/net/route/message.go with 100% similarity]
src/vendor/golang.org/x/net/route/route.go [moved from src/internal/x/net/route/route.go with 100% similarity]
src/vendor/golang.org/x/net/route/route_classic.go [moved from src/internal/x/net/route/route_classic.go with 100% similarity]
src/vendor/golang.org/x/net/route/route_openbsd.go [moved from src/internal/x/net/route/route_openbsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/sys.go [moved from src/internal/x/net/route/sys.go with 100% similarity]
src/vendor/golang.org/x/net/route/sys_darwin.go [moved from src/internal/x/net/route/sys_darwin.go with 100% similarity]
src/vendor/golang.org/x/net/route/sys_dragonfly.go [moved from src/internal/x/net/route/sys_dragonfly.go with 100% similarity]
src/vendor/golang.org/x/net/route/sys_freebsd.go [moved from src/internal/x/net/route/sys_freebsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/sys_netbsd.go [moved from src/internal/x/net/route/sys_netbsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/sys_openbsd.go [moved from src/internal/x/net/route/sys_openbsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/syscall.go [moved from src/internal/x/net/route/syscall.go with 100% similarity]
src/vendor/golang.org/x/net/route/syscall_go1_11_darwin.go [moved from src/internal/x/net/route/syscall_go1_11_darwin.go with 100% similarity]
src/vendor/golang.org/x/net/route/syscall_go1_12_darwin.go [moved from src/internal/x/net/route/syscall_go1_12_darwin.go with 100% similarity]
src/vendor/golang.org/x/net/route/zsys_darwin.go [moved from src/internal/x/net/route/zsys_darwin.go with 100% similarity]
src/vendor/golang.org/x/net/route/zsys_dragonfly.go [moved from src/internal/x/net/route/zsys_dragonfly.go with 100% similarity]
src/vendor/golang.org/x/net/route/zsys_freebsd_386.go [moved from src/internal/x/net/route/zsys_freebsd_386.go with 100% similarity]
src/vendor/golang.org/x/net/route/zsys_freebsd_amd64.go [moved from src/internal/x/net/route/zsys_freebsd_amd64.go with 100% similarity]
src/vendor/golang.org/x/net/route/zsys_freebsd_arm.go [moved from src/internal/x/net/route/zsys_freebsd_arm.go with 100% similarity]
src/vendor/golang.org/x/net/route/zsys_netbsd.go [moved from src/internal/x/net/route/zsys_netbsd.go with 100% similarity]
src/vendor/golang.org/x/net/route/zsys_openbsd.go [moved from src/internal/x/net/route/zsys_openbsd.go with 100% similarity]
src/vendor/golang.org/x/sys/AUTHORS [new file with mode: 0644]
src/vendor/golang.org/x/sys/CONTRIBUTORS [new file with mode: 0644]
src/vendor/golang.org/x/sys/LICENSE [new file with mode: 0644]
src/vendor/golang.org/x/sys/PATENTS [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/byteorder.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_arm.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_gccgo.c [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_gccgo.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_linux.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_mips64x.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_mipsx.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_other_ppc64x.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_s390x.s [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_wasm.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_x86.go [new file with mode: 0644]
src/vendor/golang.org/x/sys/cpu/cpu_x86.s [new file with mode: 0644]
src/vendor/golang.org/x/text/AUTHORS [new file with mode: 0644]
src/vendor/golang.org/x/text/CONTRIBUTORS [new file with mode: 0644]
src/vendor/golang.org/x/text/LICENSE [new file with mode: 0644]
src/vendor/golang.org/x/text/PATENTS [new file with mode: 0644]
src/vendor/golang.org/x/text/secure/bidirule/bidirule.go [moved from src/internal/x/text/secure/bidirule/bidirule.go with 98% similarity]
src/vendor/golang.org/x/text/transform/transform.go [moved from src/internal/x/text/transform/transform.go with 99% similarity]
src/vendor/golang.org/x/text/unicode/bidi/bidi.go [moved from src/internal/x/text/unicode/bidi/bidi.go with 98% similarity]
src/vendor/golang.org/x/text/unicode/bidi/bracket.go [moved from src/internal/x/text/unicode/bidi/bracket.go with 99% similarity]
src/vendor/golang.org/x/text/unicode/bidi/core.go [moved from src/internal/x/text/unicode/bidi/core.go with 99% similarity]
src/vendor/golang.org/x/text/unicode/bidi/gen.go [new file with mode: 0644]
src/vendor/golang.org/x/text/unicode/bidi/gen_ranges.go [new file with mode: 0644]
src/vendor/golang.org/x/text/unicode/bidi/gen_trieval.go [new file with mode: 0644]
src/vendor/golang.org/x/text/unicode/bidi/prop.go [moved from src/internal/x/text/unicode/bidi/prop.go with 98% similarity]
src/vendor/golang.org/x/text/unicode/bidi/tables.go [moved from src/internal/x/text/unicode/bidi/tables.go with 99% similarity]
src/vendor/golang.org/x/text/unicode/bidi/trieval.go [moved from src/internal/x/text/unicode/bidi/trieval.go with 95% similarity]
src/vendor/golang.org/x/text/unicode/norm/composition.go [moved from src/internal/x/text/unicode/norm/composition.go with 99% similarity]
src/vendor/golang.org/x/text/unicode/norm/forminfo.go [moved from src/internal/x/text/unicode/norm/forminfo.go with 99% similarity]
src/vendor/golang.org/x/text/unicode/norm/input.go [moved from src/internal/x/text/unicode/norm/input.go with 96% similarity]
src/vendor/golang.org/x/text/unicode/norm/iter.go [moved from src/internal/x/text/unicode/norm/iter.go with 99% similarity]
src/vendor/golang.org/x/text/unicode/norm/maketables.go [new file with mode: 0644]
src/vendor/golang.org/x/text/unicode/norm/normalize.go [moved from src/internal/x/text/unicode/norm/normalize.go with 98% similarity]
src/vendor/golang.org/x/text/unicode/norm/readwriter.go [moved from src/internal/x/text/unicode/norm/readwriter.go with 97% similarity]
src/vendor/golang.org/x/text/unicode/norm/tables.go [moved from src/internal/x/text/unicode/norm/tables.go with 99% similarity]
src/vendor/golang.org/x/text/unicode/norm/transform.go [moved from src/internal/x/text/unicode/norm/transform.go with 95% similarity]
src/vendor/golang.org/x/text/unicode/norm/trie.go [moved from src/internal/x/text/unicode/norm/trie.go with 94% similarity]
src/vendor/golang.org/x/text/unicode/norm/triegen.go [moved from src/internal/x/text/unicode/norm/triegen.go with 100% similarity]
src/vendor/modules.txt [new file with mode: 0644]