| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The PATH is used when running specific command, i.e. Run() and GoInstall().
|
|
|
|
Some package use make to install dependencies and to run integration
test. For example, go-redis download redis, compile, and build it.
|
|
|
|
|
|
The following vendoring tool is known by beku,
* dep - https://github.com/golang/dep
* gmd - https://github.com/sparrc/gdm
|
|
This will allow freeze operation to work on all packages.
|
|
|
|
|
|
|
|
|
|
|
|
It's hard and error prone to maintains two equal text.
|
|
|
|
Each debug statement is prefixed with "[X] func" where X is either ENV
for debug in environment's methods or PKG for debug in package's
methods.
|
|
The mode of VCS is already provided by "RepoRoot.VCS.Cmd". This changes
affect on vcs mode value, from number based to string based. Previously,
VCS mode git is labeled as "1", now it's labeled as VCS command "git".
|
|
|
|
This will allow beku to handle custom import URL.
|
|
|
|
|
|
Using submodule is not a good way to represent real repository, because
submodule use .git as file as metadata not .git as directory.
This revert commit e8593ded.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Freeze operation operate on the package database and GOPATH. This
operation will ensure that all packages listed on database file is
installed with their specific version on GOPATH. Also, all packages that
are not registered will be removed from GOPATH "src" and "pkg" directories.
|
|
|
|
|