Documentation ¶
Overview ¶
Package cmd provides re-usable commands for Glide.
Index ¶
- Constants
- Variables
- func About(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func AddDependencies(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func BeQuiet(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Color(code, msg string) string
- func CowardMode(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Debug(msg string, args ...interface{})
- func DeleteUnusedPackages(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func DropToShell(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func ErrMsg(msg string, args ...interface{})
- func Error(msg string, args ...interface{})
- func ExecCmd(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func GPMGodeps(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func GPMGodepsGit(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Get(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func GetImports(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func GuessDeps(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func HasGPMGodeps(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func HasGodepGodeps(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Info(msg string, args ...interface{})
- func InitGlide(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func LinkPackage(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func MergeToYaml(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Mkdir(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Msg(msg string, args ...interface{})
- func NoVendor(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func NormalizeName(name string) (string, string)
- func ParseGodepGodeps(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func ParseYaml(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func ParseYamlString(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func PathString(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func PrintName(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func ReadyToGlide(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Rebuild(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Recurse(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func SetReference(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func UpdateImports(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func UpdateReferences(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func VcsExists(dep *Dependency, dest string) bool
- func VcsGet(dep *Dependency, dest string) error
- func VcsLastCommit(dep *Dependency, vend string) (string, error)
- func VcsUpdate(dep *Dependency, vend string, force bool) error
- func VcsVersion(dep *Dependency, vend string) error
- func VendorPath(c cookoo.Context) (string, error)
- func VersionGuard(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- func Warn(msg string, args ...interface{})
- func WriteYaml(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt)
- type Config
- type Dependency
- type GodepDependency
- type Godeps
Constants ¶
const ( NoVCS = "" Git = "git" Bzr = "bzr" Hg = "hg" Svn = "svn" )
const ( Blue = "0;34" Red = "0;31" Green = "0;32" Yellow = "0;33" Cyan = "0;36" Pink = "1;35" )
These contanstants map to color codes for shell scripts making them human readable.
Variables ¶
var Quiet = false
Quiet, when set to true, can suppress Info and Debug messages.
Functions ¶
func AddDependencies ¶
AddDependencies adds a list of *Dependency objects to the given *Config.
This is used to merge in packages from other sources or config files.
func Color ¶
Color returns a string in a certain color. The first argument is a string containing the color code or a constant from the table above mapped to a code.
The following will print the string "Foo" in yellow:
fmt.Print(Color(Yellow, "Foo"))
func CowardMode ¶
CowardMode checks that the environment is setup before continuing on. If not setup and error is returned.
func DeleteUnusedPackages ¶
DeleteUnusedPackages removes packages from vendor/ that are no longer used.
func DropToShell ¶
DropToShell executes a glide plugin. A command that's implemented by another application is executed in a similar manner to the way git commands work. For example, 'glide foo' would try to execute the application glide-foo. Params:
- command: the name of the command to attempt executing.
func GPMGodeps ¶
GPMGodeps parses a GPM-flavored Godeps file.
Params
- dir (string): Directory root.
Returns an []*Dependency
func GPMGodepsGit ¶
GPMGodepsGit reads a Godeps-Git file for gpm-git.
func Get ¶
Get fetches a single package and puts it in vendor/.
Params:
- package (string): Name of the package to get.
- verbose (bool): default false
Returns:
- *Dependency: A dependency describing this package.
func GetImports ¶
GetImports iterates over the imported packages and gets them.
func GuessDeps ¶
GuessDeps tries to get the dependencies for the current directory.
Params
- dirname (string): Directory to use as the base. Default: "."
func HasGPMGodeps ¶
HasGPMGodeps indicates whether a Godeps file exists.
func HasGodepGodeps ¶
func InitGlide ¶
InitGlide initializes a new Glide project.
Among other things, it creates a default glide.yaml.
Params:
- filename (string): The name of the glide YAML file. Default is glide.yaml.
- project (string): The name of the project. Default is 'main'.
func LinkPackage ¶
LinkPackage creates a symlink to the project within the GOPATH.
func MergeToYaml ¶
MergeToYaml converts a Config object and a yaml.File to a single yaml.File.
Params:
- conf (*Config): The configuration to merge.
- overwriteImports (bool, default true): If this is true, old config will overwritten. If false, we attempt to merge the old and new config, with preference to the old.
Returns:
- The root yaml.Node of the modified config.
Uses:
- cxt.Get("yaml.File") as the source for the YAML file.
func Msg ¶
func Msg(msg string, args ...interface{})
Msg prints a message with optional arguments, that can be printed, of varying types.
func NoVendor ¶
NoVendor takes a path and returns all subpaths that are not vendor directories.
It is not recursive.
If the given path is a file, it returns that path unaltered.
If the given path is a directory, it scans all of the immediate children, and returns all of the go files and directories that are not vendor.
func NormalizeName ¶
NormalizeName takes a package name and normalizes it to the top level package.
For example, golang.org/x/crypto/ssh becomes golang.org/x/crypto. 'ssh' is returned as extra data.
func ParseGodepGodeps ¶
Parse the Godep Godeps.json file.
Params: - dir (string): the project's directory
Returns an []*Dependency
func ParseYaml ¶
ParseYaml parses the glide.yaml format and returns a Configuration object.
Params:
- filename (string): YAML filename as a string
Context:
- yaml.File: This puts the parsed YAML file into the context.
Returns:
- *Config: The configuration.
func ParseYamlString ¶
ParseYamlString parses a YAML string. This is similar but different to ParseYaml that parses an external file.
Params:
- yaml (string): YAML as a string.
Returns:
- *Config: The configuration.
func PathString ¶
Take a list of paths and print a single string with space-separated paths.
func ReadyToGlide ¶
ReadyToGlide fails if the environment is not sufficient for using glide.
Most importantly, it fails if glide.yaml is not present in the current working directory.
func Recurse ¶
Recurse does glide installs on dependent packages. Recurse looks in all known packages for a glide.yaml files and installs for each one it finds.
func SetReference ¶
func UpdateImports ¶
UpdateImports iterates over the imported packages and updates them.
func UpdateReferences ¶
UpdateReferences updates the revision numbers on all of the imports.
func VcsExists ¶
func VcsExists(dep *Dependency, dest string) bool
func VcsGet ¶
func VcsGet(dep *Dependency, dest string) error
VcsGet figures out how to fetch a dependency, and then gets it.
VcsGet installs into the dest.
func VcsLastCommit ¶
func VcsLastCommit(dep *Dependency, vend string) (string, error)
func VcsUpdate ¶
func VcsUpdate(dep *Dependency, vend string, force bool) error
VcsUpdate updates to a particular checkout based on the VCS setting.
func VcsVersion ¶
func VcsVersion(dep *Dependency, vend string) error
func VendorPath ¶
Return the path to the vendor directory.
func VersionGuard ¶
VersionGuard ensures that the Go version is correct.
Types ¶
type Config ¶
type Config struct { Name string Imports []*Dependency DevImports []*Dependency // InCommand is the default shell command run to start a 'glide in' // session. InCommand string }
Config is the top-level configuration object.
func (*Config) HasDependency ¶
HasDependency returns true if the given name is listed as an import or dev import.
type Dependency ¶
type Dependency struct {
Name, Reference, Repository string
VcsType string
Subpackages, Arch, Os []string
}
Dependency describes a package that the present package depends upon.
func DependencyFromYaml ¶
func DependencyFromYaml(node yaml.Node) (*Dependency, error)
DependencyFromYaml creates a dependency from a yaml.Node.
func (*Dependency) ToYaml ¶
func (d *Dependency) ToYaml() yaml.Node
ToYaml converts a *Dependency to a YAML Map node.
type GodepDependency ¶
type GodepDependency struct { ImportPath string Comment string `json:",omitempty"` // Description of commit, if present. Rev string // VCS-specific commit ID. }
GodepDependency is a modified version of Godep's Dependency struct. It drops all of the unexported fields.
type Godeps ¶
type Godeps struct { ImportPath string GoVersion string Packages []string `json:",omitempty"` // Arguments to save, if any. Deps []GodepDependency // contains filtered or unexported fields }
The Godeps struct from Godep.
https://raw.githubusercontent.com/tools/godep/master/dep.go
We had to copy this because it's in the package main for Godep.