An error occurred fetching the project authors.
  1. 30 Jun, 2011 1 commit
    • Julian Phillips's avatar
      goinstall: Add support for generic hosts using special import form · 8ffbc401
      Julian Phillips authored
      This change extends goinstall to support "magic" package names of the
      form:
              <host>/<repo>.<vcs>/<path>
      
      Where <host> is the hostname, <repo> the path to the repository, <vcs>
      the type of vcs (git, hg, bzr or svn), and <path> is the path inside the
      repository that contains the source code for the package.
      
      For example: "example.com/pub/foo.hg/src" means download the Mercurial
      repository at either pub/foo.hg or pub/foo from example.com and then
      build and install the source files from src inside the repository
      checkout.
      
      Repositories on the built-in hostings sites (github, bitbucket,
      launchpad and googlecode) must still use the old form (i.e.
      github.com/xxx/yyy.git/src will be rejected).
      
      R=adg, rsc
      CC=golang-dev
      https://golang.org/cl/4626064
      8ffbc401
  2. 27 Jun, 2011 1 commit
  3. 22 Jun, 2011 1 commit
    • Robert Griesemer's avatar
      os.Error API: don't export os.ErrorString, use os.NewError consistently · 712fb6dc
      Robert Griesemer authored
      This is a core API change.
      
      1) gofix misc src
      2) Manual adjustments to the following files under src/pkg:
         gob/decode.go
         rpc/client.go
         os/error.go
         io/io.go
         bufio/bufio.go
         http/request.go
         websocket/client.go
      as well as:
         src/cmd/gofix/testdata/*.go.in (reverted)
         test/fixedbugs/bug243.go
      3) Implemented gofix patch (oserrorstring.go) and test case (oserrorstring_test.go)
      
      Compiles and runs all tests.
      
      R=r, rsc, gri
      CC=golang-dev
      https://golang.org/cl/4607052
      712fb6dc
  4. 21 Jun, 2011 1 commit
  5. 20 Jun, 2011 3 commits
  6. 01 Jun, 2011 1 commit
  7. 27 Apr, 2011 1 commit
    • Andrew Gerrand's avatar
      goinstall: support GOPATH; building and installing outside the Go tree · ca8a055f
      Andrew Gerrand authored
      For example, with GOPATH set like so
              GOPATH=/home/adg/gocode
      And after creating some subdirectories
              mkdir /home/adg/gocode/{bin,pkg,src}
      
      I can use goinstall to install the github.com/nf/goto web server,
      which depends on the github.com/nf/stat package, with
              goinstall github.com/nf/goto
      
      This downloads and installs all dependencies (that aren't already
      installed) like so
              /home/adg/gocode/bin/goto
              /home/adg/gocode/pkg/darwin_amd64/github.com/nf/stat.a
              /home/adg/gocode/src/github.com/nf/goto/...
              /home/adg/gocode/src/github.com/nf/stat/...
      
      R=rsc, niemeyer
      CC=golang-dev
      https://golang.org/cl/4438043
      ca8a055f
  8. 06 Mar, 2011 1 commit
    • Gustavo Niemeyer's avatar
      path/filepath: new OS-specific path support · 04ca4f82
      Gustavo Niemeyer authored
      The path package now contains only functions which
      deal with slashed paths, sensible for any OS when dealing
      with network paths or URLs.  OS-specific functionality
      has been moved into the new path/filepath package.
      
      This also includes fixes for godoc, goinstall and other
      packages which were mixing slashed and OS-specific paths.
      
      R=rsc, gri, mattn, brainman
      CC=golang-dev
      https://golang.org/cl/4252044
      04ca4f82
  9. 04 Jan, 2011 1 commit
  10. 24 Dec, 2010 1 commit
  11. 01 Nov, 2010 1 commit
  12. 25 Aug, 2010 1 commit
  13. 12 Aug, 2010 1 commit
  14. 01 Jul, 2010 1 commit
    • Gustavo Niemeyer's avatar
      goinstall: support for Bazaar+Launchpad · ae330328
      Gustavo Niemeyer authored
      With these changes, goinstall is now able to use branches
      maintained with Bazaar located in Launchpad.
      
      Project aliases such as /project and /project/series are
      supported in addition to specific user or team branches
      such as /~user/project/branch.  Temporary branches under
      the +junk special project are also supported.
      
      As a curious side effect, since Launchpad is able to import
      code from other locations, they can be indirectly
      accessible too if desired.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/1699050
      ae330328
  15. 01 Jun, 2010 1 commit
  16. 30 Mar, 2010 1 commit
    • Russ Cox's avatar
      single argument panic · 00f9f0c0
      Russ Cox authored
      note that sortmain.go has been run through hg gofmt;
      only the formatting of the day initializers changed.
      i'm happy to revert that formatting if you'd prefer.
      
      stop on error in doc/progs/run
      
      R=r
      CC=golang-dev
      https://golang.org/cl/850041
      00f9f0c0
  17. 21 Mar, 2010 1 commit
  18. 05 Mar, 2010 1 commit