summaryrefslogtreecommitdiff
path: root/src/cmd/goinstall/main.go
AgeCommit message (Collapse)AuthorFilesLines
2011-04-28Imported Upstream version 2011.04.27Ondřej Surý1-11/+6
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-1/+1
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-5/+6
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-2/+1
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-16/+75
2010-06-30goinstall: support for Bazaar+LaunchpadGustavo Niemeyer1-1/+1
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 http://codereview.appspot.com/1699050 Committer: Russ Cox <rsc@golang.org>
2010-06-21goinstall: process dependencies for package mainRoger Peppe1-1/+9
Currently to install a command, you have to manually goinstall each of the remote packages that it depends on. This patch lets goinstall P work where P is contains files in package main. It does not actually build the package, but it installs all of its dependencies and prints a message to that effect. R=rsc CC=golang-dev http://codereview.appspot.com/1301043 Committer: Russ Cox <rsc@golang.org>
2010-03-30simplify various code using new map index ruleRuss Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/833044
2010-03-23cmd/goinstall: include command name in error reporting (usually missing ↵Andrey Mirtchovski1-1/+2
software or incorrect $PATH) R=rsc CC=golang-dev http://codereview.appspot.com/695041 Committer: Russ Cox <rsc@golang.org>
2010-03-04goinstall: an experiment in (external) package installationRuss Cox1-0/+213
R=adg, r CC=cw, golang-dev http://codereview.appspot.com/224043