An error occurred fetching the project authors.
- 30 Jun, 2011 1 commit
-
-
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
-
- 27 Jun, 2011 1 commit
-
-
Rob Pike authored
Change the signature of Split to have no count, assuming a full split, and rename the existing Split with a count to SplitN. Do the same to package bytes. Add a gofix module. R=adg, dsymonds, alex.brainman, rsc CC=golang-dev https://golang.org/cl/4661051
-
- 22 Jun, 2011 1 commit
-
-
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
-
- 21 Jun, 2011 1 commit
-
-
Andrew Gerrand authored
Keeping the Julian's good refactoring work. R=rsc CC=golang-dev https://golang.org/cl/4638049
-
- 20 Jun, 2011 3 commits
-
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4628050
-
Andrew Gerrand authored
goinstall: make ".git" repo suffix optional R=golang-dev, r, r CC=golang-dev https://golang.org/cl/4643048
-
Julian Phillips authored
Extend goinstall to support downloading from any hg/git/svn/bzr hosting site, not just the standard ones. The type of hosting is automatically checked by trying all the tools, so the import statement looks like: import "example.com/mything" Which will work for Mercurial (http), Subversion (http, svn), Git (http, git) and Bazaar (http, bzr) hosting. All the existing package imports will work through this new mechanism, but the existing hard-coded host support is left in place to ensure there is no change in behaviour. R=golang-dev, bradfitz, fvbommel, go.peter.90, n13m3y3r, adg, duperray.olivier CC=golang-dev https://golang.org/cl/4650043
-
- 01 Jun, 2011 1 commit
-
-
Andrew Gerrand authored
R=golang-dev CC=golang-dev https://golang.org/cl/4539099
-
- 27 Apr, 2011 1 commit
-
-
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
-
- 06 Mar, 2011 1 commit
-
-
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
-
- 04 Jan, 2011 1 commit
-
-
Gustavo Niemeyer authored
Changeset 7012:65601d7cac9e broke goinstall -u for bzr branches. This will fix it. R=golang-dev, adg CC=golang-dev https://golang.org/cl/3852041
-
- 24 Dec, 2010 1 commit
-
-
Caine Tighe authored
goinstall/download.go: Add checkout concept and helper functions to clean and fix implementation (Issue 1265) R=rsc, niemeyer, adg CC=golang-dev https://golang.org/cl/3536041
-
- 01 Nov, 2010 1 commit
-
-
Brad Fitzpatrick authored
R=r CC=golang-dev, r2, rsc https://golang.org/cl/2819041
-
- 25 Aug, 2010 1 commit
-
-
Russ Cox authored
This way, if you later want to check things in, you can (with appropriate authorization). Using plain http leads to the cryptic error abort: HTTP Method Not Allowed. R=r CC=golang-dev https://golang.org/cl/1983050
-
- 12 Aug, 2010 1 commit
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/1983043
-
- 01 Jul, 2010 1 commit
-
-
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
-
- 01 Jun, 2010 1 commit
-
-
Michael Hoisie authored
R=rsc CC=golang-dev https://golang.org/cl/1395041
-
- 30 Mar, 2010 1 commit
-
-
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
-
- 21 Mar, 2010 1 commit
-
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/634044
-
- 05 Mar, 2010 1 commit
-
-
Russ Cox authored
R=adg, r CC=cw, golang-dev https://golang.org/cl/224043
-