• Russ Cox's avatar
    Convert go tree to hierarchical pkg directory: · 1f6463f8
    Russ Cox authored
    	import (
    		"vector" -> "container/vector"
    		"ast" -> "go/ast"
    		"sha1" -> "hash/sha1"
    		etc.
    	)
    
    and update Makefiles.  Because I did the conversion
    semi-automatically, I sorted all the import blocks
    as a post-processing.  Some files have therefore
    changed that didn't strictly need to.
    
    Rename local packages to lower case.
    The upper/lower distinction doesn't work on OS X
    and complicates the "single-package directories
    with the same package name as directory name"
    heuristic used by gobuild and godoc to create
    the correlation between source and binary locations.
    Now that we have a plan to avoid globally unique
    names, the upper/lower is unnecessary.
    
    The renamings will cause trouble for a few users,
    but so will the change in import paths.
    This way, the two maintenance fixes are rolled into
    one inconvenience.
    
    R=r
    OCL=27573
    CL=27575
    1f6463f8
Name
Last commit
Last update
..
container Loading commit data...
fmt Loading commit data...
go Loading commit data...
hash Loading commit data...
http Loading commit data...
io Loading commit data...
json Loading commit data...
math Loading commit data...
net Loading commit data...
os Loading commit data...
reflect Loading commit data...
regexp Loading commit data...
strconv Loading commit data...
sync Loading commit data...
syscall Loading commit data...
tabwriter Loading commit data...
template Loading commit data...
time Loading commit data...
unicode Loading commit data...
Makefile Loading commit data...
bignum.go Loading commit data...
bignum_test.go Loading commit data...
bufio.go Loading commit data...
bufio_test.go Loading commit data...
exec.go Loading commit data...
exec_test.go Loading commit data...
flag.go Loading commit data...
flag_test.go Loading commit data...
log.go Loading commit data...
log_test.go Loading commit data...
malloc.go Loading commit data...
once.go Loading commit data...
once_test.go Loading commit data...
path.go Loading commit data...
path_test.go Loading commit data...
rand.go Loading commit data...
sort.go Loading commit data...
sort_test.go Loading commit data...
strings.go Loading commit data...
strings_test.go Loading commit data...
testing.go Loading commit data...
utf8.go Loading commit data...
utf8_test.go Loading commit data...
xml.go Loading commit data...