On Tue, Feb 20, 2018 at 1:17 PM, Zellyn <zel...@gmail.com> wrote: > A couple of initial questions: > > - The "pretend you're importing github.com/foo/bar but actually pull > it from localgit.host/foo/bar" functionality of dep was going to really > simplify things for us. I can't quite tell whether vgo includes that > functionality or not. We would want to do it at the monorepo level: ie. > *everything* should use our forked version of the `glog` and `protobuf` > packages. > > You can do that. See research.swtch.com/vgo-tour and ^F for 'myfork'.
> > - For our (go monorepo) usecase: do you envision a single go.mod file > being placed at the root, or would we sprinkle them as needed for each > sub-project in the monorepo? Does vgo search upward for go.mod files? > > Yes, it sounds like you'd want one in the root, which would apply to all subdirectories (until hitting another). Vgo searches upward. > > - More details on the zipfile module representation will be welcome. > > That'll be Thursday. Sorry, there's a lot to write, but it's on its way. :-) If you want to poke around, look in $GOPATH/src/v/cache. > > - Getting rid of GOPATH is nice. Where will `vgo install` drop > binaries? > > You don't have to work in GOPATH, but GOPATH will stick around as a way to control where the cached downloaded source code lives. Most users won't need to worry since it now defaults to $HOME/go, so no one has to set it. For now I decided to try having vgo install commands to $GOPATH/bin, since most people will already have it in their path and it is Go-specific. As with just about everything, it's subject to change if we discover problems, but it's been that way for, oh, 4 hours and it seems to be working OK so far. Of course, if $GOBIN is set, then that wins, as it always has. Best, Russ -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.