Re: [go-nuts] Local shared libraries and forks without vendor and GOPATH

2018-08-12 Thread Paul Jolly
Hi Benny, > if I understand correctly, the plan with versioned packages and modules is to > deprecate the vendor folder and GOPATH some time after Go 1.11. That is true of GOPATH; the case is less clear-cut with vendor. See also the discussion about vendor as part of: https://github.com/golang/

[go-nuts] Local shared libraries and forks without vendor and GOPATH

2018-08-10 Thread 'meta keule' via golang-nuts
Hi, if I understand correctly, the plan with versioned packages and modules is to deprecate the vendor folder and GOPATH some time after Go 1.11. Now it is possible to have own shared packages that aren't hosted anywhere, just sitting on the harddrive inside GOPATH or the vendor directory. Thi