diff options
| author | Rob Pike <r@golang.org> | 2011-11-03 13:26:43 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2011-11-03 13:26:43 -0700 |
| commit | de03d502c7e0bd07c6f084ed9b5bb0446df29b49 (patch) | |
| tree | 4f6d5a7248cfa5419f637393a4bc674aa05ffaf5 /src/pkg/Makefile | |
| parent | 5cb4a15320d3b2ac121e3c68249c8ac403120bad (diff) | |
| download | go-de03d502c7e0bd07c6f084ed9b5bb0446df29b49.tar.xz | |
net: renamings
This is Go 1 package renaming CL #3.
This one merely moves the source; the import strings will be
changed after the next weekly release.
This one moves pieces into net.
http -> net/http
http/cgi -> net/http/cgi
http/fcgi -> net/http/fcgi
http/pprof -> net/http/pprof
http/httptest -> net/http/httptest
mail -> net/mail
rpc -> net/rpc
rpc/jsonrpc -> net/rpc/jsonrpc
smtp -> net/smtp
url -> net/url
Also remove rand (now math/rand) from NOTEST - it has a test.
The only edits are in Makefiles and deps.bash.
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5335048
Diffstat (limited to 'src/pkg/Makefile')
| -rw-r--r-- | src/pkg/Makefile | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 036e9cae8b..691eda4a08 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -105,11 +105,6 @@ DIRS=\ hash/fnv\ html\ html/template\ - http\ - http/cgi\ - http/fcgi\ - http/pprof\ - http/httptest\ image\ image/bmp\ image/color\ @@ -124,7 +119,6 @@ DIRS=\ io/ioutil\ log\ log/syslog\ - mail\ math\ math/big\ math/cmplx\ @@ -133,7 +127,17 @@ DIRS=\ mime/multipart\ net\ net/dict\ + net/http\ + net/http/cgi\ + net/http/fcgi\ + net/mail\ + net/http/pprof\ + net/http/httptest\ + net/rpc\ + net/rpc/jsonrpc\ + net/smtp\ net/textproto\ + net/url\ old/netchan\ old/regexp\ old/template\ @@ -146,14 +150,11 @@ DIRS=\ reflect\ regexp\ regexp/syntax\ - rpc\ - rpc/jsonrpc\ runtime\ runtime/cgo\ runtime/debug\ runtime/pprof\ scanner\ - smtp\ sort\ strconv\ strings\ @@ -169,7 +170,6 @@ DIRS=\ testing/script\ time\ unicode\ - url\ utf16\ utf8\ websocket\ @@ -205,13 +205,12 @@ NOTEST+=\ exp/gui/x11\ go/doc\ hash\ - http/pprof\ - http/httptest\ image/bmp\ image/color\ image/gif\ net/dict\ - rand\ + net/http/pprof\ + net/http/httptest\ runtime/cgo\ syscall\ testing\ |
