From dc377b3ceb4caaf35b8276972f211751574f9522 Mon Sep 17 00:00:00 2001 From: Ying Li Date: Tue, 8 Mar 2016 11:16:57 -0800 Subject: [PATCH 1/4] Bump go-connections and canonical go dependencies to the latest version Logging bugfix for github.com/docker/go-connections github.com/docker/go rebased to go 1.6 Signed-off-by: Ying Li --- Godeps/Godeps.json | 8 +- .../docker/go-connections/tlsconfig/config.go | 7 +- .../docker/go/canonical/json/decode.go | 90 ++++++++++++++-- .../docker/go/canonical/json/encode.go | 29 ++--- .../docker/go/canonical/json/indent.go | 12 ++- .../docker/go/canonical/json/scanner.go | 101 ++++++++---------- .../docker/go/canonical/json/stream.go | 8 +- 7 files changed, 163 insertions(+), 92 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 8c54fadaf3..8c88161ef3 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -97,13 +97,13 @@ }, { "ImportPath": "github.com/docker/go-connections/tlsconfig", - "Comment": "v0.1.2-7-g6e4c13d", - "Rev": "6e4c13dc022344c3623c9eacbaf7cfd0fa9fcae3" + "Comment": "v0.1.2-16-gf549a93", + "Rev": "f549a9393d05688dff0992ef3efd8bbe6c628aeb" }, { "ImportPath": "github.com/docker/go/canonical/json", - "Comment": "v1.5.1-1-1-gbaf439e", - "Rev": "baf439e6c161bd2106346fc8022b74ac2444e311" + "Comment": "v1.5.1-1-6-gd30aec9", + "Rev": "d30aec9fd63c35133f8f79c3412ad91a3b08be06" }, { "ImportPath": "github.com/docker/libtrust", diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go b/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go index 9378c358e6..1ba04395e2 100644 --- a/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go +++ b/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go @@ -72,12 +72,7 @@ func certPool(caFile string) (*x509.CertPool, error) { if !certPool.AppendCertsFromPEM(pem) { return nil, fmt.Errorf("failed to append certificates from PEM file: %q", caFile) } - s := certPool.Subjects() - subjects := make([]string, len(s)) - for i, subject := range s { - subjects[i] = string(subject) - } - logrus.Debugf("Trusting certs with subjects: %v", subjects) + logrus.Debugf("Trusting %d certs", len(certPool.Subjects())) return certPool, nil } diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/decode.go b/Godeps/_workspace/src/github.com/docker/go/canonical/json/decode.go index 35bac2e2b4..72b981c535 100644 --- a/Godeps/_workspace/src/github.com/docker/go/canonical/json/decode.go +++ b/Godeps/_workspace/src/github.com/docker/go/canonical/json/decode.go @@ -37,6 +37,7 @@ import ( // To unmarshal JSON into a struct, Unmarshal matches incoming object // keys to the keys used by Marshal (either the struct field name or its tag), // preferring an exact match but also accepting a case-insensitive match. +// Unmarshal will only set exported fields of the struct. // // To unmarshal JSON into an interface value, // Unmarshal stores one of these in the interface value: @@ -48,16 +49,26 @@ import ( // map[string]interface{}, for JSON objects // nil for JSON null // -// To unmarshal a JSON array into a slice, Unmarshal resets the slice to nil -// and then appends each element to the slice. +// To unmarshal a JSON array into a slice, Unmarshal resets the slice length +// to zero and then appends each element to the slice. +// As a special case, to unmarshal an empty JSON array into a slice, +// Unmarshal replaces the slice with a new empty slice. // -// To unmarshal a JSON object into a map, Unmarshal replaces the map -// with an empty map and then adds key-value pairs from the object to -// the map. +// To unmarshal a JSON array into a Go array, Unmarshal decodes +// JSON array elements into corresponding Go array elements. +// If the Go array is smaller than the JSON array, +// the additional JSON array elements are discarded. +// If the JSON array is smaller than the Go array, +// the additional Go array elements are set to zero values. +// +// To unmarshal a JSON object into a string-keyed map, Unmarshal first +// establishes a map to use, If the map is nil, Unmarshal allocates a new map. +// Otherwise Unmarshal reuses the existing map, keeping existing entries. +// Unmarshal then stores key-value pairs from the JSON object into the map. // // If a JSON value is not appropriate for a given target type, // or if a JSON number overflows the target type, Unmarshal -// skips that field and completes the unmarshalling as best it can. +// skips that field and completes the unmarshaling as best it can. // If no more serious errors are encountered, Unmarshal returns // an UnmarshalTypeError describing the earliest such error. // @@ -174,6 +185,66 @@ func (n Number) Int64() (int64, error) { return strconv.ParseInt(string(n), 10, 64) } +// isValidNumber reports whether s is a valid JSON number literal. +func isValidNumber(s string) bool { + // This function implements the JSON numbers grammar. + // See https://tools.ietf.org/html/rfc7159#section-6 + // and http://json.org/number.gif + + if s == "" { + return false + } + + // Optional - + if s[0] == '-' { + s = s[1:] + if s == "" { + return false + } + } + + // Digits + switch { + default: + return false + + case s[0] == '0': + s = s[1:] + + case '1' <= s[0] && s[0] <= '9': + s = s[1:] + for len(s) > 0 && '0' <= s[0] && s[0] <= '9' { + s = s[1:] + } + } + + // . followed by 1 or more digits. + if len(s) >= 2 && s[0] == '.' && '0' <= s[1] && s[1] <= '9' { + s = s[2:] + for len(s) > 0 && '0' <= s[0] && s[0] <= '9' { + s = s[1:] + } + } + + // e or E followed by an optional - or + and + // 1 or more digits. + if len(s) >= 2 && (s[0] == 'e' || s[0] == 'E') { + s = s[1:] + if s[0] == '+' || s[0] == '-' { + s = s[1:] + if s == "" { + return false + } + } + for len(s) > 0 && '0' <= s[0] && s[0] <= '9' { + s = s[1:] + } + } + + // Make sure we are at the end. + return s == "" +} + // decodeState represents the state while decoding a JSON value. type decodeState struct { data []byte @@ -242,7 +313,7 @@ func (d *decodeState) scanWhile(op int) int { newOp = d.scan.eof() d.off = len(d.data) + 1 // mark processed EOF with len+1 } else { - c := int(d.data[d.off]) + c := d.data[d.off] d.off++ newOp = d.scan.step(&d.scan, c) } @@ -758,7 +829,7 @@ func (d *decodeState) literalStore(item []byte, v reflect.Value, fromQuoted bool d.saveError(err) break } - v.Set(reflect.ValueOf(b[0:n])) + v.SetBytes(b[:n]) case reflect.String: v.SetString(string(s)) case reflect.Interface: @@ -782,6 +853,9 @@ func (d *decodeState) literalStore(item []byte, v reflect.Value, fromQuoted bool default: if v.Kind() == reflect.String && v.Type() == numberType { v.SetString(s) + if !isValidNumber(s) { + d.error(fmt.Errorf("json: invalid number literal, trying to unmarshal %q into Number", item)) + } break } if fromQuoted { diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/encode.go b/Godeps/_workspace/src/github.com/docker/go/canonical/json/encode.go index 0fab020e2c..f3491b1603 100644 --- a/Godeps/_workspace/src/github.com/docker/go/canonical/json/encode.go +++ b/Godeps/_workspace/src/github.com/docker/go/canonical/json/encode.go @@ -14,6 +14,7 @@ import ( "bytes" "encoding" "encoding/base64" + "fmt" "math" "reflect" "runtime" @@ -30,7 +31,10 @@ import ( // Marshal traverses the value v recursively. // If an encountered value implements the Marshaler interface // and is not a nil pointer, Marshal calls its MarshalJSON method -// to produce JSON. The nil pointer exception is not strictly necessary +// to produce JSON. If no MarshalJSON method is present but the +// value implements encoding.TextMarshaler instead, Marshal calls +// its MarshalText method. +// The nil pointer exception is not strictly necessary // but mimics a similar, necessary exception in the behavior of // UnmarshalJSON. // @@ -457,12 +461,10 @@ func textMarshalerEncoder(e *encodeState, v reflect.Value, quoted bool) { } m := v.Interface().(encoding.TextMarshaler) b, err := m.MarshalText() - if err == nil { - _, err = e.stringBytes(b) - } if err != nil { e.error(&MarshalerError{v.Type(), err}) } + e.stringBytes(b) } func addrTextMarshalerEncoder(e *encodeState, v reflect.Value, quoted bool) { @@ -473,12 +475,10 @@ func addrTextMarshalerEncoder(e *encodeState, v reflect.Value, quoted bool) { } m := va.Interface().(encoding.TextMarshaler) b, err := m.MarshalText() - if err == nil { - _, err = e.stringBytes(b) - } if err != nil { e.error(&MarshalerError{v.Type(), err}) } + e.stringBytes(b) } func boolEncoder(e *encodeState, v reflect.Value, quoted bool) { @@ -548,9 +548,14 @@ var ( func stringEncoder(e *encodeState, v reflect.Value, quoted bool) { if v.Type() == numberType { numStr := v.String() + // In Go1.5 the empty string encodes to "0", while this is not a valid number literal + // we keep compatibility so check validity after this. if numStr == "" { numStr = "0" // Number's zero-val } + if !isValidNumber(numStr) { + e.error(fmt.Errorf("json: invalid number literal %q", numStr)) + } e.WriteString(numStr) return } @@ -798,7 +803,7 @@ func (sv stringValues) Less(i, j int) bool { return sv.get(i) < sv.get(j) } func (sv stringValues) get(i int) string { return sv[i].String() } // NOTE: keep in sync with stringBytes below. -func (e *encodeState) string(s string) (int, error) { +func (e *encodeState) string(s string) int { len0 := e.Len() e.WriteByte('"') start := 0 @@ -876,11 +881,11 @@ func (e *encodeState) string(s string) (int, error) { e.WriteString(s[start:]) } e.WriteByte('"') - return e.Len() - len0, nil + return e.Len() - len0 } // NOTE: keep in sync with string above. -func (e *encodeState) stringBytes(s []byte) (int, error) { +func (e *encodeState) stringBytes(s []byte) int { len0 := e.Len() e.WriteByte('"') start := 0 @@ -958,7 +963,7 @@ func (e *encodeState) stringBytes(s []byte) (int, error) { e.Write(s[start:]) } e.WriteByte('"') - return e.Len() - len0, nil + return e.Len() - len0 } // A field represents a single field found in a struct. @@ -1052,7 +1057,7 @@ func typeFields(t reflect.Type) []field { // Scan f.typ for fields to include. for i := 0; i < f.typ.NumField(); i++ { sf := f.typ.Field(i) - if sf.PkgPath != "" { // unexported + if sf.PkgPath != "" && !sf.Anonymous { // unexported continue } tag := sf.Tag.Get("json") diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/indent.go b/Godeps/_workspace/src/github.com/docker/go/canonical/json/indent.go index e1bacafd6b..7cd9f4db18 100644 --- a/Godeps/_workspace/src/github.com/docker/go/canonical/json/indent.go +++ b/Godeps/_workspace/src/github.com/docker/go/canonical/json/indent.go @@ -36,7 +36,7 @@ func compact(dst *bytes.Buffer, src []byte, escape bool) error { dst.WriteByte(hex[src[i+2]&0xF]) start = i + 3 } - v := scan.step(&scan, int(c)) + v := scan.step(&scan, c) if v >= scanSkipSpace { if v == scanError { break @@ -70,8 +70,12 @@ func newline(dst *bytes.Buffer, prefix, indent string, depth int) { // indented line beginning with prefix followed by one or more // copies of indent according to the indentation nesting. // The data appended to dst does not begin with the prefix nor -// any indentation, and has no trailing newline, to make it -// easier to embed inside other formatted JSON data. +// any indentation, to make it easier to embed inside other formatted JSON data. +// Although leading space characters (space, tab, carriage return, newline) +// at the beginning of src are dropped, trailing space characters +// at the end of src are preserved and copied to dst. +// For example, if src has no trailing spaces, neither will dst; +// if src ends in a trailing newline, so will dst. func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error { origLen := dst.Len() var scan scanner @@ -80,7 +84,7 @@ func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error { depth := 0 for _, c := range src { scan.bytes++ - v := scan.step(&scan, int(c)) + v := scan.step(&scan, c) if v == scanSkipSpace { continue } diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/scanner.go b/Godeps/_workspace/src/github.com/docker/go/canonical/json/scanner.go index 38d0b0802b..ee6622e8cf 100644 --- a/Godeps/_workspace/src/github.com/docker/go/canonical/json/scanner.go +++ b/Godeps/_workspace/src/github.com/docker/go/canonical/json/scanner.go @@ -21,7 +21,7 @@ func checkValid(data []byte, scan *scanner) error { scan.reset() for _, c := range data { scan.bytes++ - if scan.step(scan, int(c)) == scanError { + if scan.step(scan, c) == scanError { return scan.err } } @@ -37,7 +37,7 @@ func checkValid(data []byte, scan *scanner) error { func nextValue(data []byte, scan *scanner) (value, rest []byte, err error) { scan.reset() for i, c := range data { - v := scan.step(scan, int(c)) + v := scan.step(scan, c) if v >= scanEndObject { switch v { // probe the scanner with a space to determine whether we will @@ -50,7 +50,7 @@ func nextValue(data []byte, scan *scanner) (value, rest []byte, err error) { case scanError: return nil, nil, scan.err case scanEnd: - return data[0:i], data[i:], nil + return data[:i], data[i:], nil } } } @@ -85,7 +85,7 @@ type scanner struct { // Also tried using an integer constant and a single func // with a switch, but using the func directly was 10% faster // on a 64-bit Mac Mini, and it's nicer to read. - step func(*scanner, int) int + step func(*scanner, byte) int // Reached end of top-level value. endTop bool @@ -99,7 +99,7 @@ type scanner struct { // 1-byte redo (see undo method) redo bool redoCode int - redoState func(*scanner, int) int + redoState func(*scanner, byte) int // total bytes consumed, updated by decoder.Decode bytes int64 @@ -188,13 +188,13 @@ func (s *scanner) popParseState() { } } -func isSpace(c rune) bool { +func isSpace(c byte) bool { return c == ' ' || c == '\t' || c == '\r' || c == '\n' } // stateBeginValueOrEmpty is the state after reading `[`. -func stateBeginValueOrEmpty(s *scanner, c int) int { - if c <= ' ' && isSpace(rune(c)) { +func stateBeginValueOrEmpty(s *scanner, c byte) int { + if c <= ' ' && isSpace(c) { return scanSkipSpace } if c == ']' { @@ -204,8 +204,8 @@ func stateBeginValueOrEmpty(s *scanner, c int) int { } // stateBeginValue is the state at the beginning of the input. -func stateBeginValue(s *scanner, c int) int { - if c <= ' ' && isSpace(rune(c)) { +func stateBeginValue(s *scanner, c byte) int { + if c <= ' ' && isSpace(c) { return scanSkipSpace } switch c { @@ -244,8 +244,8 @@ func stateBeginValue(s *scanner, c int) int { } // stateBeginStringOrEmpty is the state after reading `{`. -func stateBeginStringOrEmpty(s *scanner, c int) int { - if c <= ' ' && isSpace(rune(c)) { +func stateBeginStringOrEmpty(s *scanner, c byte) int { + if c <= ' ' && isSpace(c) { return scanSkipSpace } if c == '}' { @@ -257,8 +257,8 @@ func stateBeginStringOrEmpty(s *scanner, c int) int { } // stateBeginString is the state after reading `{"key": value,`. -func stateBeginString(s *scanner, c int) int { - if c <= ' ' && isSpace(rune(c)) { +func stateBeginString(s *scanner, c byte) int { + if c <= ' ' && isSpace(c) { return scanSkipSpace } if c == '"' { @@ -270,7 +270,7 @@ func stateBeginString(s *scanner, c int) int { // stateEndValue is the state after completing a value, // such as after reading `{}` or `true` or `["x"`. -func stateEndValue(s *scanner, c int) int { +func stateEndValue(s *scanner, c byte) int { n := len(s.parseState) if n == 0 { // Completed top-level before the current byte. @@ -278,7 +278,7 @@ func stateEndValue(s *scanner, c int) int { s.endTop = true return stateEndTop(s, c) } - if c <= ' ' && isSpace(rune(c)) { + if c <= ' ' && isSpace(c) { s.step = stateEndValue return scanSkipSpace } @@ -319,7 +319,7 @@ func stateEndValue(s *scanner, c int) int { // stateEndTop is the state after finishing the top-level value, // such as after reading `{}` or `[1,2,3]`. // Only space characters should be seen now. -func stateEndTop(s *scanner, c int) int { +func stateEndTop(s *scanner, c byte) int { if c != ' ' && c != '\t' && c != '\r' && c != '\n' { // Complain about non-space byte on next call. s.error(c, "after top-level value") @@ -328,7 +328,7 @@ func stateEndTop(s *scanner, c int) int { } // stateInString is the state after reading `"`. -func stateInString(s *scanner, c int) int { +func stateInString(s *scanner, c byte) int { if c == '"' { s.step = stateEndValue return scanContinue @@ -344,13 +344,12 @@ func stateInString(s *scanner, c int) int { } // stateInStringEsc is the state after reading `"\` during a quoted string. -func stateInStringEsc(s *scanner, c int) int { +func stateInStringEsc(s *scanner, c byte) int { switch c { case 'b', 'f', 'n', 'r', 't', '\\', '/', '"': s.step = stateInString return scanContinue - } - if c == 'u' { + case 'u': s.step = stateInStringEscU return scanContinue } @@ -358,7 +357,7 @@ func stateInStringEsc(s *scanner, c int) int { } // stateInStringEscU is the state after reading `"\u` during a quoted string. -func stateInStringEscU(s *scanner, c int) int { +func stateInStringEscU(s *scanner, c byte) int { if '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' { s.step = stateInStringEscU1 return scanContinue @@ -368,7 +367,7 @@ func stateInStringEscU(s *scanner, c int) int { } // stateInStringEscU1 is the state after reading `"\u1` during a quoted string. -func stateInStringEscU1(s *scanner, c int) int { +func stateInStringEscU1(s *scanner, c byte) int { if '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' { s.step = stateInStringEscU12 return scanContinue @@ -378,7 +377,7 @@ func stateInStringEscU1(s *scanner, c int) int { } // stateInStringEscU12 is the state after reading `"\u12` during a quoted string. -func stateInStringEscU12(s *scanner, c int) int { +func stateInStringEscU12(s *scanner, c byte) int { if '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' { s.step = stateInStringEscU123 return scanContinue @@ -388,7 +387,7 @@ func stateInStringEscU12(s *scanner, c int) int { } // stateInStringEscU123 is the state after reading `"\u123` during a quoted string. -func stateInStringEscU123(s *scanner, c int) int { +func stateInStringEscU123(s *scanner, c byte) int { if '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' { s.step = stateInString return scanContinue @@ -398,7 +397,7 @@ func stateInStringEscU123(s *scanner, c int) int { } // stateNeg is the state after reading `-` during a number. -func stateNeg(s *scanner, c int) int { +func stateNeg(s *scanner, c byte) int { if c == '0' { s.step = state0 return scanContinue @@ -412,7 +411,7 @@ func stateNeg(s *scanner, c int) int { // state1 is the state after reading a non-zero integer during a number, // such as after reading `1` or `100` but not `0`. -func state1(s *scanner, c int) int { +func state1(s *scanner, c byte) int { if '0' <= c && c <= '9' { s.step = state1 return scanContinue @@ -421,7 +420,7 @@ func state1(s *scanner, c int) int { } // state0 is the state after reading `0` during a number. -func state0(s *scanner, c int) int { +func state0(s *scanner, c byte) int { if c == '.' { s.step = stateDot return scanContinue @@ -435,7 +434,7 @@ func state0(s *scanner, c int) int { // stateDot is the state after reading the integer and decimal point in a number, // such as after reading `1.`. -func stateDot(s *scanner, c int) int { +func stateDot(s *scanner, c byte) int { if '0' <= c && c <= '9' { s.step = stateDot0 return scanContinue @@ -445,9 +444,8 @@ func stateDot(s *scanner, c int) int { // stateDot0 is the state after reading the integer, decimal point, and subsequent // digits of a number, such as after reading `3.14`. -func stateDot0(s *scanner, c int) int { +func stateDot0(s *scanner, c byte) int { if '0' <= c && c <= '9' { - s.step = stateDot0 return scanContinue } if c == 'e' || c == 'E' { @@ -459,12 +457,8 @@ func stateDot0(s *scanner, c int) int { // stateE is the state after reading the mantissa and e in a number, // such as after reading `314e` or `0.314e`. -func stateE(s *scanner, c int) int { - if c == '+' { - s.step = stateESign - return scanContinue - } - if c == '-' { +func stateE(s *scanner, c byte) int { + if c == '+' || c == '-' { s.step = stateESign return scanContinue } @@ -473,7 +467,7 @@ func stateE(s *scanner, c int) int { // stateESign is the state after reading the mantissa, e, and sign in a number, // such as after reading `314e-` or `0.314e+`. -func stateESign(s *scanner, c int) int { +func stateESign(s *scanner, c byte) int { if '0' <= c && c <= '9' { s.step = stateE0 return scanContinue @@ -484,16 +478,15 @@ func stateESign(s *scanner, c int) int { // stateE0 is the state after reading the mantissa, e, optional sign, // and at least one digit of the exponent in a number, // such as after reading `314e-2` or `0.314e+1` or `3.14e0`. -func stateE0(s *scanner, c int) int { +func stateE0(s *scanner, c byte) int { if '0' <= c && c <= '9' { - s.step = stateE0 return scanContinue } return stateEndValue(s, c) } // stateT is the state after reading `t`. -func stateT(s *scanner, c int) int { +func stateT(s *scanner, c byte) int { if c == 'r' { s.step = stateTr return scanContinue @@ -502,7 +495,7 @@ func stateT(s *scanner, c int) int { } // stateTr is the state after reading `tr`. -func stateTr(s *scanner, c int) int { +func stateTr(s *scanner, c byte) int { if c == 'u' { s.step = stateTru return scanContinue @@ -511,7 +504,7 @@ func stateTr(s *scanner, c int) int { } // stateTru is the state after reading `tru`. -func stateTru(s *scanner, c int) int { +func stateTru(s *scanner, c byte) int { if c == 'e' { s.step = stateEndValue return scanContinue @@ -520,7 +513,7 @@ func stateTru(s *scanner, c int) int { } // stateF is the state after reading `f`. -func stateF(s *scanner, c int) int { +func stateF(s *scanner, c byte) int { if c == 'a' { s.step = stateFa return scanContinue @@ -529,7 +522,7 @@ func stateF(s *scanner, c int) int { } // stateFa is the state after reading `fa`. -func stateFa(s *scanner, c int) int { +func stateFa(s *scanner, c byte) int { if c == 'l' { s.step = stateFal return scanContinue @@ -538,7 +531,7 @@ func stateFa(s *scanner, c int) int { } // stateFal is the state after reading `fal`. -func stateFal(s *scanner, c int) int { +func stateFal(s *scanner, c byte) int { if c == 's' { s.step = stateFals return scanContinue @@ -547,7 +540,7 @@ func stateFal(s *scanner, c int) int { } // stateFals is the state after reading `fals`. -func stateFals(s *scanner, c int) int { +func stateFals(s *scanner, c byte) int { if c == 'e' { s.step = stateEndValue return scanContinue @@ -556,7 +549,7 @@ func stateFals(s *scanner, c int) int { } // stateN is the state after reading `n`. -func stateN(s *scanner, c int) int { +func stateN(s *scanner, c byte) int { if c == 'u' { s.step = stateNu return scanContinue @@ -565,7 +558,7 @@ func stateN(s *scanner, c int) int { } // stateNu is the state after reading `nu`. -func stateNu(s *scanner, c int) int { +func stateNu(s *scanner, c byte) int { if c == 'l' { s.step = stateNul return scanContinue @@ -574,7 +567,7 @@ func stateNu(s *scanner, c int) int { } // stateNul is the state after reading `nul`. -func stateNul(s *scanner, c int) int { +func stateNul(s *scanner, c byte) int { if c == 'l' { s.step = stateEndValue return scanContinue @@ -584,19 +577,19 @@ func stateNul(s *scanner, c int) int { // stateError is the state after reaching a syntax error, // such as after reading `[1}` or `5.1.2`. -func stateError(s *scanner, c int) int { +func stateError(s *scanner, c byte) int { return scanError } // error records an error and switches to the error state. -func (s *scanner) error(c int, context string) int { +func (s *scanner) error(c byte, context string) int { s.step = stateError s.err = &SyntaxError{"invalid character " + quoteChar(c) + " " + context, s.bytes} return scanError } // quoteChar formats c as a quoted character literal -func quoteChar(c int) string { +func quoteChar(c byte) string { // special cases - different from quoted strings if c == '\'' { return `'\''` @@ -623,7 +616,7 @@ func (s *scanner) undo(scanCode int) { } // stateRedo helps implement the scanner's 1-byte undo. -func stateRedo(s *scanner, c int) int { +func stateRedo(s *scanner, c byte) int { s.redo = false s.step = s.redoState return s.redoCode diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/stream.go b/Godeps/_workspace/src/github.com/docker/go/canonical/json/stream.go index b78d5920f9..dc0f28e307 100644 --- a/Godeps/_workspace/src/github.com/docker/go/canonical/json/stream.go +++ b/Godeps/_workspace/src/github.com/docker/go/canonical/json/stream.go @@ -90,7 +90,7 @@ Input: // Look in the buffer for a new value. for i, c := range dec.buf[scanp:] { dec.scan.bytes++ - v := dec.scan.step(&dec.scan, int(c)) + v := dec.scan.step(&dec.scan, c) if v == scanEnd { scanp += i break Input @@ -157,7 +157,7 @@ func (dec *Decoder) refill() error { func nonSpace(b []byte) bool { for _, c := range b { - if !isSpace(rune(c)) { + if !isSpace(c) { return true } } @@ -440,7 +440,7 @@ func (dec *Decoder) tokenError(c byte) (Token, error) { case tokenObjectComma: context = " after object key:value pair" } - return nil, &SyntaxError{"invalid character " + quoteChar(int(c)) + " " + context, 0} + return nil, &SyntaxError{"invalid character " + quoteChar(c) + " " + context, 0} } // More reports whether there is another element in the @@ -455,7 +455,7 @@ func (dec *Decoder) peek() (byte, error) { for { for i := dec.scanp; i < len(dec.buf); i++ { c := dec.buf[i] - if isSpace(rune(c)) { + if isSpace(c) { continue } dec.scanp = i From 51dc1747e4ab5738039fc21f8a082cba5a6e4f78 Mon Sep 17 00:00:00 2001 From: Ying Li Date: Tue, 8 Mar 2016 11:28:04 -0800 Subject: [PATCH 2/4] Move the godeps workspace to the vendor directory to be compliant with Go 1.6 Signed-off-by: Ying Li --- Godeps/_workspace/.gitignore | 2 -- .../github.com/BurntSushi/toml/.gitignore | 0 .../github.com/BurntSushi/toml/.travis.yml | 0 .../github.com/BurntSushi/toml/COMPATIBLE | 0 .../github.com/BurntSushi/toml/COPYING | 0 .../github.com/BurntSushi/toml/Makefile | 0 .../github.com/BurntSushi/toml/README.md | 0 .../BurntSushi/toml/cmd/toml-test-decoder/COPYING | 0 .../BurntSushi/toml/cmd/toml-test-decoder/README.md | 0 .../BurntSushi/toml/cmd/toml-test-decoder/main.go | 0 .../BurntSushi/toml/cmd/toml-test-encoder/COPYING | 0 .../BurntSushi/toml/cmd/toml-test-encoder/README.md | 0 .../BurntSushi/toml/cmd/toml-test-encoder/main.go | 0 .../github.com/BurntSushi/toml/cmd/tomlv/COPYING | 0 .../github.com/BurntSushi/toml/cmd/tomlv/README.md | 0 .../github.com/BurntSushi/toml/cmd/tomlv/main.go | 0 .../github.com/BurntSushi/toml/decode.go | 0 .../github.com/BurntSushi/toml/decode_meta.go | 0 .../github.com/BurntSushi/toml/decode_test.go | 0 .../github.com/BurntSushi/toml/doc.go | 0 .../github.com/BurntSushi/toml/encode.go | 0 .../github.com/BurntSushi/toml/encode_test.go | 0 .../github.com/BurntSushi/toml/encoding_types.go | 0 .../BurntSushi/toml/encoding_types_1.1.go | 0 .../github.com/BurntSushi/toml/lex.go | 0 .../github.com/BurntSushi/toml/parse.go | 0 .../github.com/BurntSushi/toml/session.vim | 0 .../github.com/BurntSushi/toml/type_check.go | 0 .../github.com/BurntSushi/toml/type_fields.go | 0 .../github.com/Sirupsen/logrus/.gitignore | 0 .../github.com/Sirupsen/logrus/.travis.yml | 0 .../github.com/Sirupsen/logrus/CHANGELOG.md | 0 .../github.com/Sirupsen/logrus/LICENSE | 0 .../github.com/Sirupsen/logrus/README.md | 0 .../github.com/Sirupsen/logrus/entry.go | 0 .../github.com/Sirupsen/logrus/entry_test.go | 0 .../Sirupsen/logrus/examples/basic/basic.go | 0 .../Sirupsen/logrus/examples/hook/hook.go | 0 .../github.com/Sirupsen/logrus/exported.go | 0 .../github.com/Sirupsen/logrus/formatter.go | 0 .../Sirupsen/logrus/formatter_bench_test.go | 0 .../Sirupsen/logrus/formatters/logstash/logstash.go | 0 .../logrus/formatters/logstash/logstash_test.go | 0 .../github.com/Sirupsen/logrus/hook_test.go | 0 .../github.com/Sirupsen/logrus/hooks.go | 0 .../Sirupsen/logrus/hooks/airbrake/airbrake.go | 0 .../Sirupsen/logrus/hooks/airbrake/airbrake_test.go | 0 .../Sirupsen/logrus/hooks/bugsnag/bugsnag.go | 0 .../Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go | 0 .../Sirupsen/logrus/hooks/papertrail/README.md | 0 .../Sirupsen/logrus/hooks/papertrail/papertrail.go | 0 .../logrus/hooks/papertrail/papertrail_test.go | 0 .../Sirupsen/logrus/hooks/sentry/README.md | 0 .../Sirupsen/logrus/hooks/sentry/sentry.go | 0 .../Sirupsen/logrus/hooks/sentry/sentry_test.go | 0 .../Sirupsen/logrus/hooks/syslog/README.md | 0 .../Sirupsen/logrus/hooks/syslog/syslog.go | 0 .../Sirupsen/logrus/hooks/syslog/syslog_test.go | 0 .../github.com/Sirupsen/logrus/json_formatter.go | 0 .../Sirupsen/logrus/json_formatter_test.go | 0 .../github.com/Sirupsen/logrus/logger.go | 0 .../github.com/Sirupsen/logrus/logrus.go | 0 .../github.com/Sirupsen/logrus/logrus_test.go | 0 .../github.com/Sirupsen/logrus/terminal_darwin.go | 0 .../github.com/Sirupsen/logrus/terminal_freebsd.go | 0 .../github.com/Sirupsen/logrus/terminal_linux.go | 0 .../Sirupsen/logrus/terminal_notwindows.go | 0 .../github.com/Sirupsen/logrus/terminal_openbsd.go | 0 .../github.com/Sirupsen/logrus/terminal_windows.go | 0 .../github.com/Sirupsen/logrus/text_formatter.go | 0 .../Sirupsen/logrus/text_formatter_test.go | 0 .../github.com/Sirupsen/logrus/writer.go | 0 .../src => vendor}/github.com/agl/ed25519/LICENSE | 0 .../github.com/agl/ed25519/ed25519.go | 0 .../github.com/agl/ed25519/ed25519_test.go | 0 .../github.com/agl/ed25519/edwards25519/const.go | 0 .../agl/ed25519/edwards25519/edwards25519.go | 0 .../github.com/agl/ed25519/extra25519/extra25519.go | 0 .../agl/ed25519/extra25519/extra25519_test.go | 0 .../github.com/agl/ed25519/testdata/sign.input.gz | Bin .../beorn7/perks/quantile/exampledata.txt | 0 .../github.com/beorn7/perks/quantile/stream.go | 0 .../github.com/bugsnag/bugsnag-go/.travis.yml | 0 .../github.com/bugsnag/bugsnag-go/CHANGELOG.md | 0 .../github.com/bugsnag/bugsnag-go/CONTRIBUTING.md | 0 .../github.com/bugsnag/bugsnag-go/LICENSE.txt | 0 .../github.com/bugsnag/bugsnag-go/Makefile | 0 .../github.com/bugsnag/bugsnag-go/README.md | 0 .../github.com/bugsnag/bugsnag-go/appengine.go | 0 .../github.com/bugsnag/bugsnag-go/appengine_test.go | 0 .../github.com/bugsnag/bugsnag-go/bugsnag.go | 0 .../github.com/bugsnag/bugsnag-go/bugsnag_test.go | 0 .../github.com/bugsnag/bugsnag-go/configuration.go | 0 .../bugsnag/bugsnag-go/configuration_test.go | 0 .../github.com/bugsnag/bugsnag-go/doc.go | 0 .../github.com/bugsnag/bugsnag-go/errors/README.md | 0 .../github.com/bugsnag/bugsnag-go/errors/error.go | 0 .../bugsnag/bugsnag-go/errors/error_test.go | 0 .../bugsnag/bugsnag-go/errors/parse_panic.go | 0 .../bugsnag/bugsnag-go/errors/parse_panic_test.go | 0 .../bugsnag/bugsnag-go/errors/stackframe.go | 0 .../github.com/bugsnag/bugsnag-go/event.go | 0 .../bugsnag/bugsnag-go/examples/appengine/README.md | 0 .../bugsnag/bugsnag-go/examples/appengine/app.yaml | 0 .../bugsnag/bugsnag-go/examples/appengine/hello.go | 0 .../bugsnag-go/examples/appengine/mylogs.txt | 0 .../bugsnag/bugsnag-go/examples/http/main.go | 0 .../bugsnag/bugsnag-go/examples/revelapp/.gitignore | 0 .../examples/revelapp/app/controllers/app.go | 0 .../bugsnag-go/examples/revelapp/app/init.go | 0 .../examples/revelapp/app/views/App/Index.html | 0 .../examples/revelapp/app/views/debug.html | 0 .../examples/revelapp/app/views/errors/404.html | 0 .../examples/revelapp/app/views/errors/500.html | 0 .../examples/revelapp/app/views/flash.html | 0 .../examples/revelapp/app/views/footer.html | 0 .../examples/revelapp/app/views/header.html | 0 .../bugsnag-go/examples/revelapp/conf/app.conf | 0 .../bugsnag-go/examples/revelapp/conf/routes | 0 .../bugsnag-go/examples/revelapp/messages/sample.en | 0 .../examples/revelapp/public/css/bootstrap.css | 0 .../examples/revelapp/public/img/favicon.png | Bin .../public/img/glyphicons-halflings-white.png | Bin .../revelapp/public/img/glyphicons-halflings.png | Bin .../examples/revelapp/public/js/jquery-1.9.1.min.js | 0 .../bugsnag-go/examples/revelapp/tests/apptest.go | 0 .../github.com/bugsnag/bugsnag-go/json_tags.go | 0 .../github.com/bugsnag/bugsnag-go/metadata.go | 0 .../github.com/bugsnag/bugsnag-go/metadata_test.go | 0 .../github.com/bugsnag/bugsnag-go/middleware.go | 0 .../bugsnag/bugsnag-go/middleware_test.go | 0 .../github.com/bugsnag/bugsnag-go/notifier.go | 0 .../github.com/bugsnag/bugsnag-go/panicwrap.go | 0 .../github.com/bugsnag/bugsnag-go/panicwrap_test.go | 0 .../github.com/bugsnag/bugsnag-go/payload.go | 0 .../bugsnag/bugsnag-go/revel/bugsnagrevel.go | 0 .../src => vendor}/github.com/bugsnag/osext/LICENSE | 0 .../github.com/bugsnag/osext/osext.go | 0 .../github.com/bugsnag/osext/osext_plan9.go | 0 .../github.com/bugsnag/osext/osext_procfs.go | 0 .../github.com/bugsnag/osext/osext_sysctl.go | 0 .../github.com/bugsnag/osext/osext_test.go | 0 .../github.com/bugsnag/osext/osext_windows.go | 0 .../github.com/bugsnag/panicwrap/LICENSE | 0 .../github.com/bugsnag/panicwrap/README.md | 0 .../github.com/bugsnag/panicwrap/dup2.go | 0 .../github.com/bugsnag/panicwrap/dup3.go | 0 .../github.com/bugsnag/panicwrap/monitor.go | 0 .../github.com/bugsnag/panicwrap/monitor_windows.go | 0 .../github.com/bugsnag/panicwrap/panicwrap.go | 0 .../github.com/cpuguy83/go-md2man/md2man/md2man.go | 0 .../github.com/cpuguy83/go-md2man/md2man/roff.go | 0 .../docker/distribution/context/context.go | 0 .../github.com/docker/distribution/context/doc.go | 0 .../github.com/docker/distribution/context/http.go | 0 .../docker/distribution/context/http_test.go | 0 .../docker/distribution/context/logger.go | 0 .../github.com/docker/distribution/context/trace.go | 0 .../docker/distribution/context/trace_test.go | 0 .../github.com/docker/distribution/context/util.go | 0 .../github.com/docker/distribution/digest/digest.go | 0 .../docker/distribution/digest/digest_test.go | 0 .../docker/distribution/digest/digester.go | 0 .../distribution/digest/digester_resumable_test.go | 0 .../github.com/docker/distribution/digest/doc.go | 0 .../github.com/docker/distribution/digest/set.go | 0 .../docker/distribution/digest/set_test.go | 0 .../github.com/docker/distribution/digest/tarsum.go | 0 .../docker/distribution/digest/tarsum_test.go | 0 .../docker/distribution/digest/verifiers.go | 0 .../docker/distribution/digest/verifiers_test.go | 0 .../docker/distribution/health/api/api.go | 0 .../docker/distribution/health/api/api_test.go | 0 .../docker/distribution/health/checks/checks.go | 0 .../distribution/health/checks/checks_test.go | 0 .../github.com/docker/distribution/health/doc.go | 0 .../github.com/docker/distribution/health/health.go | 0 .../docker/distribution/health/health_test.go | 0 .../distribution/registry/api/errcode/errors.go | 0 .../registry/api/errcode/errors_test.go | 0 .../distribution/registry/api/errcode/handler.go | 0 .../distribution/registry/api/errcode/register.go | 0 .../distribution/registry/api/v2/descriptors.go | 0 .../docker/distribution/registry/api/v2/doc.go | 0 .../docker/distribution/registry/api/v2/errors.go | 0 .../docker/distribution/registry/api/v2/names.go | 0 .../distribution/registry/api/v2/names_test.go | 0 .../docker/distribution/registry/api/v2/routes.go | 0 .../distribution/registry/api/v2/routes_test.go | 0 .../docker/distribution/registry/api/v2/urls.go | 0 .../distribution/registry/api/v2/urls_test.go | 0 .../docker/distribution/registry/auth/auth.go | 0 .../distribution/registry/auth/htpasswd/access.go | 0 .../registry/auth/htpasswd/access_test.go | 0 .../distribution/registry/auth/htpasswd/htpasswd.go | 0 .../registry/auth/htpasswd/htpasswd_test.go | 0 .../distribution/registry/auth/silly/access.go | 0 .../distribution/registry/auth/silly/access_test.go | 0 .../registry/auth/token/accesscontroller.go | 0 .../distribution/registry/auth/token/stringset.go | 0 .../distribution/registry/auth/token/token.go | 0 .../distribution/registry/auth/token/token_test.go | 0 .../docker/distribution/registry/auth/token/util.go | 0 .../registry/client/auth/api_version.go | 0 .../registry/client/auth/authchallenge.go | 0 .../registry/client/auth/authchallenge_test.go | 0 .../distribution/registry/client/auth/session.go | 0 .../registry/client/auth/session_test.go | 0 .../registry/client/transport/http_reader.go | 0 .../registry/client/transport/transport.go | 0 .../github.com/docker/distribution/uuid/uuid.go | 0 .../docker/distribution/uuid/uuid_test.go | 0 .../docker/docker/pkg/tarsum/builder_context.go | 0 .../docker/docker/pkg/tarsum/fileinfosums.go | 0 .../docker/docker/pkg/tarsum/fileinfosums_test.go | 0 .../github.com/docker/docker/pkg/tarsum/tarsum.go | 0 .../docker/docker/pkg/tarsum/tarsum_spec.md | 0 .../docker/docker/pkg/tarsum/tarsum_test.go | 0 .../json | 0 .../layer.tar | Bin .../json | 0 .../layer.tar | Bin .../pkg/tarsum/testdata/collision/collision-0.tar | Bin .../pkg/tarsum/testdata/collision/collision-1.tar | Bin .../pkg/tarsum/testdata/collision/collision-2.tar | Bin .../pkg/tarsum/testdata/collision/collision-3.tar | Bin .../docker/docker/pkg/tarsum/testdata/xattr/json | 0 .../docker/pkg/tarsum/testdata/xattr/layer.tar | Bin .../docker/docker/pkg/tarsum/versioning.go | 0 .../docker/docker/pkg/tarsum/versioning_test.go | 0 .../docker/docker/pkg/tarsum/writercloser.go | 0 .../docker/docker/pkg/term/tc_linux_cgo.go | 0 .../github.com/docker/docker/pkg/term/tc_other.go | 0 .../github.com/docker/docker/pkg/term/term.go | 0 .../docker/docker/pkg/term/term_windows.go | 0 .../docker/docker/pkg/term/termios_darwin.go | 0 .../docker/docker/pkg/term/termios_freebsd.go | 0 .../docker/docker/pkg/term/termios_linux.go | 0 .../docker/pkg/term/winconsole/console_windows.go | 0 .../pkg/term/winconsole/console_windows_test.go | 0 .../docker/pkg/term/winconsole/term_emulator.go | 0 .../pkg/term/winconsole/term_emulator_test.go | 0 .../docker/go-connections/tlsconfig/config.go | 0 .../tlsconfig/config_client_ciphers.go | 0 .../tlsconfig/config_legacy_client_ciphers.go | 0 .../github.com/docker/go/canonical/json/decode.go | 0 .../github.com/docker/go/canonical/json/encode.go | 0 .../github.com/docker/go/canonical/json/fold.go | 0 .../github.com/docker/go/canonical/json/indent.go | 0 .../github.com/docker/go/canonical/json/scanner.go | 0 .../github.com/docker/go/canonical/json/stream.go | 0 .../github.com/docker/go/canonical/json/tags.go | 0 .../github.com/docker/libtrust/CONTRIBUTING.md | 0 .../github.com/docker/libtrust/LICENSE | 0 .../github.com/docker/libtrust/MAINTAINERS | 0 .../github.com/docker/libtrust/README.md | 0 .../github.com/docker/libtrust/certificates.go | 0 .../github.com/docker/libtrust/certificates_test.go | 0 .../github.com/docker/libtrust/doc.go | 0 .../github.com/docker/libtrust/ec_key.go | 0 .../github.com/docker/libtrust/ec_key_test.go | 0 .../github.com/docker/libtrust/filter.go | 0 .../github.com/docker/libtrust/filter_test.go | 0 .../github.com/docker/libtrust/hash.go | 0 .../github.com/docker/libtrust/jsonsign.go | 0 .../github.com/docker/libtrust/jsonsign_test.go | 0 .../github.com/docker/libtrust/key.go | 0 .../github.com/docker/libtrust/key_files.go | 0 .../github.com/docker/libtrust/key_files_test.go | 0 .../github.com/docker/libtrust/key_manager.go | 0 .../github.com/docker/libtrust/key_test.go | 0 .../github.com/docker/libtrust/rsa_key.go | 0 .../github.com/docker/libtrust/rsa_key_test.go | 0 .../docker/libtrust/testutil/certificates.go | 0 .../github.com/docker/libtrust/tlsdemo/README.md | 0 .../github.com/docker/libtrust/tlsdemo/client.go | 0 .../libtrust/tlsdemo/client_data/private_key.pem | 0 .../libtrust/tlsdemo/client_data/public_key.pem | 0 .../libtrust/tlsdemo/client_data/trusted_hosts.pem | 0 .../github.com/docker/libtrust/tlsdemo/gencert.go | 0 .../github.com/docker/libtrust/tlsdemo/genkeys.go | 0 .../github.com/docker/libtrust/tlsdemo/server.go | 0 .../libtrust/tlsdemo/server_data/private_key.pem | 0 .../libtrust/tlsdemo/server_data/public_key.pem | 0 .../tlsdemo/server_data/trusted_clients.pem | 0 .../github.com/docker/libtrust/trustgraph/graph.go | 0 .../docker/libtrust/trustgraph/memory_graph.go | 0 .../docker/libtrust/trustgraph/memory_graph_test.go | 0 .../docker/libtrust/trustgraph/statement.go | 0 .../docker/libtrust/trustgraph/statement_test.go | 0 .../github.com/docker/libtrust/util.go | 0 .../github.com/docker/libtrust/util_test.go | 0 .../github.com/dvsekhvalnov/jose2go/.gitignore | 0 .../github.com/dvsekhvalnov/jose2go/LICENSE | 0 .../github.com/dvsekhvalnov/jose2go/README.md | 0 .../github.com/dvsekhvalnov/jose2go/aes/ecb.go | 0 .../github.com/dvsekhvalnov/jose2go/aes/key_wrap.go | 0 .../github.com/dvsekhvalnov/jose2go/aes_cbc_hmac.go | 0 .../github.com/dvsekhvalnov/jose2go/aes_gcm.go | 0 .../github.com/dvsekhvalnov/jose2go/aes_gcm_kw.go | 0 .../github.com/dvsekhvalnov/jose2go/aeskw.go | 0 .../dvsekhvalnov/jose2go/arrays/arrays.go | 0 .../dvsekhvalnov/jose2go/base64url/base64url.go | 0 .../dvsekhvalnov/jose2go/compact/compact.go | 0 .../github.com/dvsekhvalnov/jose2go/deflate.go | 0 .../github.com/dvsekhvalnov/jose2go/direct.go | 0 .../github.com/dvsekhvalnov/jose2go/ecdh.go | 0 .../github.com/dvsekhvalnov/jose2go/ecdh_aeskw.go | 0 .../dvsekhvalnov/jose2go/ecdsa_using_sha.go | 0 .../github.com/dvsekhvalnov/jose2go/hmac.go | 0 .../dvsekhvalnov/jose2go/hmac_using_sha.go | 0 .../github.com/dvsekhvalnov/jose2go/jose.go | 0 .../dvsekhvalnov/jose2go/kdf/nist_sp800_56a.go | 0 .../github.com/dvsekhvalnov/jose2go/kdf/pbkdf2.go | 0 .../dvsekhvalnov/jose2go/keys/ecc/ec_cert.pem | 0 .../dvsekhvalnov/jose2go/keys/ecc/ec_private.key | 0 .../dvsekhvalnov/jose2go/keys/ecc/ec_private.pem | 0 .../dvsekhvalnov/jose2go/keys/ecc/ec_public.key | 0 .../github.com/dvsekhvalnov/jose2go/keys/ecc/ecc.go | 0 .../dvsekhvalnov/jose2go/keys/rsa/priv.key | 0 .../dvsekhvalnov/jose2go/keys/rsa/priv.pem | 0 .../dvsekhvalnov/jose2go/keys/rsa/pub.key | 0 .../dvsekhvalnov/jose2go/keys/rsa/pub.pem | 0 .../github.com/dvsekhvalnov/jose2go/keys/rsa/rsa.go | 0 .../dvsekhvalnov/jose2go/padding/align.go | 0 .../dvsekhvalnov/jose2go/padding/pkcs7.go | 0 .../dvsekhvalnov/jose2go/pbse2_hmac_aeskw.go | 0 .../github.com/dvsekhvalnov/jose2go/plaintext.go | 0 .../github.com/dvsekhvalnov/jose2go/rsa_oaep.go | 0 .../github.com/dvsekhvalnov/jose2go/rsa_pkcs1v15.go | 0 .../dvsekhvalnov/jose2go/rsa_using_sha.go | 0 .../dvsekhvalnov/jose2go/rsapss_using_sha.go | 0 .../github.com/dvsekhvalnov/jose2go/sha.go | 0 .../github.com/go-sql-driver/mysql/.gitignore | 0 .../github.com/go-sql-driver/mysql/.travis.yml | 0 .../github.com/go-sql-driver/mysql/AUTHORS | 0 .../github.com/go-sql-driver/mysql/CHANGELOG.md | 0 .../github.com/go-sql-driver/mysql/CONTRIBUTING.md | 0 .../github.com/go-sql-driver/mysql/LICENSE | 0 .../github.com/go-sql-driver/mysql/README.md | 0 .../github.com/go-sql-driver/mysql/appengine.go | 0 .../go-sql-driver/mysql/benchmark_test.go | 0 .../github.com/go-sql-driver/mysql/buffer.go | 0 .../github.com/go-sql-driver/mysql/collations.go | 0 .../github.com/go-sql-driver/mysql/connection.go | 0 .../github.com/go-sql-driver/mysql/const.go | 0 .../github.com/go-sql-driver/mysql/driver.go | 0 .../github.com/go-sql-driver/mysql/driver_test.go | 0 .../github.com/go-sql-driver/mysql/errors.go | 0 .../github.com/go-sql-driver/mysql/errors_test.go | 0 .../github.com/go-sql-driver/mysql/infile.go | 0 .../github.com/go-sql-driver/mysql/packets.go | 0 .../github.com/go-sql-driver/mysql/result.go | 0 .../github.com/go-sql-driver/mysql/rows.go | 0 .../github.com/go-sql-driver/mysql/statement.go | 0 .../github.com/go-sql-driver/mysql/transaction.go | 0 .../github.com/go-sql-driver/mysql/utils.go | 0 .../github.com/go-sql-driver/mysql/utils_test.go | 0 .../github.com/golang/protobuf/proto/Makefile | 0 .../github.com/golang/protobuf/proto/clone.go | 0 .../github.com/golang/protobuf/proto/decode.go | 0 .../github.com/golang/protobuf/proto/encode.go | 0 .../github.com/golang/protobuf/proto/equal.go | 0 .../github.com/golang/protobuf/proto/extensions.go | 0 .../github.com/golang/protobuf/proto/lib.go | 0 .../github.com/golang/protobuf/proto/message_set.go | 0 .../golang/protobuf/proto/pointer_reflect.go | 0 .../golang/protobuf/proto/pointer_unsafe.go | 0 .../github.com/golang/protobuf/proto/properties.go | 0 .../golang/protobuf/proto/proto3_proto/proto3.pb.go | 0 .../golang/protobuf/proto/proto3_proto/proto3.proto | 0 .../github.com/golang/protobuf/proto/text.go | 0 .../github.com/golang/protobuf/proto/text_parser.go | 0 .../github.com/google/gofuzz/.travis.yml | 0 .../github.com/google/gofuzz/CONTRIBUTING.md | 0 .../src => vendor}/github.com/google/gofuzz/LICENSE | 0 .../github.com/google/gofuzz/README.md | 0 .../src => vendor}/github.com/google/gofuzz/doc.go | 0 .../github.com/google/gofuzz/example_test.go | 0 .../src => vendor}/github.com/google/gofuzz/fuzz.go | 0 .../github.com/google/gofuzz/fuzz_test.go | 0 .../github.com/gorilla/context/.travis.yml | 0 .../github.com/gorilla/context/LICENSE | 0 .../github.com/gorilla/context/README.md | 0 .../github.com/gorilla/context/context.go | 0 .../github.com/gorilla/context/context_test.go | 0 .../github.com/gorilla/context/doc.go | 0 .../github.com/gorilla/mux/.travis.yml | 0 .../src => vendor}/github.com/gorilla/mux/LICENSE | 0 .../src => vendor}/github.com/gorilla/mux/README.md | 0 .../github.com/gorilla/mux/bench_test.go | 0 .../src => vendor}/github.com/gorilla/mux/doc.go | 0 .../src => vendor}/github.com/gorilla/mux/mux.go | 0 .../github.com/gorilla/mux/mux_test.go | 0 .../github.com/gorilla/mux/old_test.go | 0 .../src => vendor}/github.com/gorilla/mux/regexp.go | 0 .../src => vendor}/github.com/gorilla/mux/route.go | 0 .../github.com/inconshreveable/mousetrap/LICENSE | 0 .../github.com/inconshreveable/mousetrap/README.md | 0 .../inconshreveable/mousetrap/trap_others.go | 0 .../inconshreveable/mousetrap/trap_windows.go | 0 .../inconshreveable/mousetrap/trap_windows_1.4.go | 0 .../src => vendor}/github.com/jinzhu/gorm/License | 0 .../src => vendor}/github.com/jinzhu/gorm/README.md | 0 .../github.com/jinzhu/gorm/association.go | 0 .../github.com/jinzhu/gorm/association_test.go | 0 .../github.com/jinzhu/gorm/callback.go | 0 .../github.com/jinzhu/gorm/callback_create.go | 0 .../github.com/jinzhu/gorm/callback_delete.go | 0 .../github.com/jinzhu/gorm/callback_query.go | 0 .../github.com/jinzhu/gorm/callback_shared.go | 0 .../github.com/jinzhu/gorm/callback_test.go | 0 .../github.com/jinzhu/gorm/callback_update.go | 0 .../github.com/jinzhu/gorm/callbacks_test.go | 0 .../github.com/jinzhu/gorm/common_dialect.go | 0 .../github.com/jinzhu/gorm/create_test.go | 0 .../github.com/jinzhu/gorm/customize_column_test.go | 0 .../github.com/jinzhu/gorm/delete_test.go | 0 .../github.com/jinzhu/gorm/dialect.go | 0 .../github.com/jinzhu/gorm/doc/development.md | 0 .../github.com/jinzhu/gorm/embedded_struct_test.go | 0 .../src => vendor}/github.com/jinzhu/gorm/errors.go | 0 .../src => vendor}/github.com/jinzhu/gorm/field.go | 0 .../github.com/jinzhu/gorm/foundation.go | 0 .../github.com/jinzhu/gorm/images/logger.png | Bin .../github.com/jinzhu/gorm/interface.go | 0 .../github.com/jinzhu/gorm/join_table_handler.go | 0 .../github.com/jinzhu/gorm/join_table_test.go | 0 .../src => vendor}/github.com/jinzhu/gorm/logger.go | 0 .../src => vendor}/github.com/jinzhu/gorm/main.go | 0 .../github.com/jinzhu/gorm/main_private.go | 0 .../github.com/jinzhu/gorm/main_test.go | 0 .../github.com/jinzhu/gorm/migration_test.go | 0 .../src => vendor}/github.com/jinzhu/gorm/model.go | 0 .../github.com/jinzhu/gorm/model_struct.go | 0 .../src => vendor}/github.com/jinzhu/gorm/mssql.go | 0 .../jinzhu/gorm/multi_primary_keys_test.go | 0 .../src => vendor}/github.com/jinzhu/gorm/mysql.go | 0 .../github.com/jinzhu/gorm/pointer_test.go | 0 .../github.com/jinzhu/gorm/polymorphic_test.go | 0 .../github.com/jinzhu/gorm/postgres.go | 0 .../github.com/jinzhu/gorm/preload.go | 0 .../github.com/jinzhu/gorm/preload_test.go | 0 .../github.com/jinzhu/gorm/query_test.go | 0 .../src => vendor}/github.com/jinzhu/gorm/scope.go | 0 .../github.com/jinzhu/gorm/scope_private.go | 0 .../github.com/jinzhu/gorm/scope_test.go | 0 .../src => vendor}/github.com/jinzhu/gorm/search.go | 0 .../github.com/jinzhu/gorm/search_test.go | 0 .../github.com/jinzhu/gorm/slice_test.go | 0 .../github.com/jinzhu/gorm/sqlite3.go | 0 .../github.com/jinzhu/gorm/structs_test.go | 0 .../github.com/jinzhu/gorm/test_all.sh | 0 .../github.com/jinzhu/gorm/update_test.go | 0 .../src => vendor}/github.com/jinzhu/gorm/utils.go | 0 .../github.com/jinzhu/gorm/utils_private.go | 0 .../src => vendor}/github.com/kr/pretty/.gitignore | 0 .../src => vendor}/github.com/kr/pretty/License | 0 .../src => vendor}/github.com/kr/pretty/Readme | 0 .../src => vendor}/github.com/kr/pretty/diff.go | 0 .../github.com/kr/pretty/diff_test.go | 0 .../github.com/kr/pretty/example_test.go | 0 .../github.com/kr/pretty/formatter.go | 0 .../github.com/kr/pretty/formatter_test.go | 0 .../src => vendor}/github.com/kr/pretty/pretty.go | 0 .../src => vendor}/github.com/kr/pretty/zero.go | 0 .../src => vendor}/github.com/kr/text/License | 0 .../src => vendor}/github.com/kr/text/Readme | 0 .../github.com/kr/text/colwriter/Readme | 0 .../github.com/kr/text/colwriter/column.go | 0 .../github.com/kr/text/colwriter/column_test.go | 0 .../src => vendor}/github.com/kr/text/doc.go | 0 .../src => vendor}/github.com/kr/text/indent.go | 0 .../github.com/kr/text/indent_test.go | 0 .../src => vendor}/github.com/kr/text/mc/Readme | 0 .../src => vendor}/github.com/kr/text/mc/mc.go | 0 .../src => vendor}/github.com/kr/text/wrap.go | 0 .../src => vendor}/github.com/kr/text/wrap_test.go | 0 .../github.com/lib/pq/hstore/hstore.go | 0 .../github.com/lib/pq/hstore/hstore_test.go | 0 .../github.com/magiconair/properties/.gitignore | 0 .../github.com/magiconair/properties/.travis.yml | 0 .../github.com/magiconair/properties/LICENSE | 0 .../github.com/magiconair/properties/README.md | 0 .../magiconair/properties/benchmark_test.go | 0 .../github.com/magiconair/properties/doc.go | 0 .../magiconair/properties/example_test.go | 0 .../github.com/magiconair/properties/lex.go | 0 .../github.com/magiconair/properties/load.go | 0 .../github.com/magiconair/properties/load_test.go | 0 .../github.com/magiconair/properties/parser.go | 0 .../github.com/magiconair/properties/properties.go | 0 .../magiconair/properties/properties_test.go | 0 .../github.com/magiconair/properties/rangecheck.go | 0 .../github.com/mattn/go-sqlite3/.gitignore | 0 .../github.com/mattn/go-sqlite3/.travis.yml | 0 .../github.com/mattn/go-sqlite3/LICENSE | 0 .../github.com/mattn/go-sqlite3/README.md | 0 .../github.com/mattn/go-sqlite3/backup.go | 0 .../mattn/go-sqlite3/code/sqlite3-binding.c | 0 .../mattn/go-sqlite3/code/sqlite3-binding.h | 0 .../github.com/mattn/go-sqlite3/code/sqlite3ext.h | 0 .../github.com/mattn/go-sqlite3/doc.go | 0 .../github.com/mattn/go-sqlite3/error.go | 0 .../github.com/mattn/go-sqlite3/error_test.go | 0 .../github.com/mattn/go-sqlite3/sqlite3-binding.c | 0 .../github.com/mattn/go-sqlite3/sqlite3-binding.h | 0 .../github.com/mattn/go-sqlite3/sqlite3.go | 0 .../mattn/go-sqlite3/sqlite3_fts3_test.go | 0 .../mattn/go-sqlite3/sqlite3_libsqlite3.go | 0 .../github.com/mattn/go-sqlite3/sqlite3_other.go | 0 .../github.com/mattn/go-sqlite3/sqlite3_test.go | 0 .../mattn/go-sqlite3/sqlite3_test/sqltest.go | 0 .../github.com/mattn/go-sqlite3/sqlite3_windows.go | 0 .../golang_protobuf_extensions/pbutil/decode.go | 0 .../golang_protobuf_extensions/pbutil/doc.go | 0 .../golang_protobuf_extensions/pbutil/encode.go | 0 .../github.com/miekg/pkcs11/.gitignore | 0 .../src => vendor}/github.com/miekg/pkcs11/LICENSE | 0 .../github.com/miekg/pkcs11/README.md | 0 .../src => vendor}/github.com/miekg/pkcs11/const.go | 0 .../src => vendor}/github.com/miekg/pkcs11/error.go | 0 .../src => vendor}/github.com/miekg/pkcs11/hsm.db | Bin .../github.com/miekg/pkcs11/parallel_test.go | 0 .../github.com/miekg/pkcs11/pkcs11.go | 0 .../src => vendor}/github.com/miekg/pkcs11/pkcs11.h | 0 .../github.com/miekg/pkcs11/pkcs11_test.go | 0 .../github.com/miekg/pkcs11/pkcs11f.h | 0 .../github.com/miekg/pkcs11/pkcs11t.h | 0 .../github.com/miekg/pkcs11/softhsm.conf | 0 .../src => vendor}/github.com/miekg/pkcs11/types.go | 0 .../github.com/mitchellh/go-homedir/LICENSE | 0 .../github.com/mitchellh/go-homedir/README.md | 0 .../github.com/mitchellh/go-homedir/homedir.go | 0 .../github.com/mitchellh/go-homedir/homedir_test.go | 0 .../github.com/mitchellh/mapstructure/.travis.yml | 0 .../github.com/mitchellh/mapstructure/LICENSE | 0 .../github.com/mitchellh/mapstructure/README.md | 0 .../mitchellh/mapstructure/decode_hooks.go | 0 .../mitchellh/mapstructure/decode_hooks_test.go | 0 .../github.com/mitchellh/mapstructure/error.go | 0 .../mitchellh/mapstructure/mapstructure.go | 0 .../mapstructure/mapstructure_benchmark_test.go | 0 .../mapstructure/mapstructure_bugs_test.go | 0 .../mapstructure/mapstructure_examples_test.go | 0 .../mitchellh/mapstructure/mapstructure_test.go | 0 .../github.com/olekukonko/tablewriter/.travis.yml | 0 .../github.com/olekukonko/tablewriter/LICENCE.md | 0 .../github.com/olekukonko/tablewriter/README.md | 0 .../github.com/olekukonko/tablewriter/csv.go | 0 .../olekukonko/tablewriter/csv2table/README.md | 0 .../olekukonko/tablewriter/csv2table/csv2table.go | 0 .../github.com/olekukonko/tablewriter/table.go | 0 .../github.com/olekukonko/tablewriter/test.csv | 0 .../github.com/olekukonko/tablewriter/test_info.csv | 0 .../github.com/olekukonko/tablewriter/util.go | 0 .../github.com/olekukonko/tablewriter/wrap.go | 0 .../prometheus/client_golang/prometheus/.gitignore | 0 .../prometheus/client_golang/prometheus/README.md | 0 .../client_golang/prometheus/collector.go | 0 .../prometheus/client_golang/prometheus/counter.go | 0 .../prometheus/client_golang/prometheus/desc.go | 0 .../prometheus/client_golang/prometheus/doc.go | 0 .../prometheus/client_golang/prometheus/expvar.go | 0 .../prometheus/client_golang/prometheus/gauge.go | 0 .../client_golang/prometheus/go_collector.go | 0 .../client_golang/prometheus/histogram.go | 0 .../prometheus/client_golang/prometheus/http.go | 0 .../prometheus/client_golang/prometheus/metric.go | 0 .../client_golang/prometheus/process_collector.go | 0 .../prometheus/client_golang/prometheus/push.go | 0 .../prometheus/client_golang/prometheus/registry.go | 0 .../prometheus/client_golang/prometheus/summary.go | 0 .../prometheus/client_golang/prometheus/untyped.go | 0 .../prometheus/client_golang/prometheus/value.go | 0 .../prometheus/client_golang/prometheus/vec.go | 0 .../prometheus/client_model/go/metrics.pb.go | 0 .../github.com/prometheus/common/expfmt/decode.go | 0 .../github.com/prometheus/common/expfmt/encode.go | 0 .../github.com/prometheus/common/expfmt/expfmt.go | 0 .../github.com/prometheus/common/expfmt/fuzz.go | 0 .../common/expfmt/fuzz/corpus/from_test_parse_0 | 0 .../common/expfmt/fuzz/corpus/from_test_parse_1 | 0 .../common/expfmt/fuzz/corpus/from_test_parse_2 | 0 .../common/expfmt/fuzz/corpus/from_test_parse_3 | 0 .../common/expfmt/fuzz/corpus/from_test_parse_4 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_0 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_1 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_10 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_11 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_12 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_13 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_14 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_15 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_16 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_17 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_18 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_19 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_2 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_3 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_4 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_5 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_6 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_7 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_8 | 0 .../expfmt/fuzz/corpus/from_test_parse_error_9 | 0 .../prometheus/common/expfmt/fuzz/corpus/minimal | 0 .../prometheus/common/expfmt/json_decode.go | 0 .../prometheus/common/expfmt/text_create.go | 0 .../prometheus/common/expfmt/text_parse.go | 0 .../internal/bitbucket.org/ww/goautoneg/README.txt | 0 .../internal/bitbucket.org/ww/goautoneg/autoneg.go | 0 .../github.com/prometheus/common/model/alert.go | 0 .../prometheus/common/model/fingerprinting.go | 0 .../github.com/prometheus/common/model/labels.go | 0 .../github.com/prometheus/common/model/labelset.go | 0 .../github.com/prometheus/common/model/metric.go | 0 .../github.com/prometheus/common/model/model.go | 0 .../github.com/prometheus/common/model/signature.go | 0 .../github.com/prometheus/common/model/silence.go | 0 .../github.com/prometheus/common/model/time.go | 0 .../github.com/prometheus/common/model/value.go | 0 .../github.com/prometheus/procfs/.travis.yml | 0 .../github.com/prometheus/procfs/AUTHORS.md | 0 .../github.com/prometheus/procfs/CONTRIBUTING.md | 0 .../github.com/prometheus/procfs/LICENSE | 0 .../github.com/prometheus/procfs/Makefile | 0 .../github.com/prometheus/procfs/NOTICE | 0 .../github.com/prometheus/procfs/README.md | 0 .../github.com/prometheus/procfs/doc.go | 0 .../prometheus/procfs/fixtures/26231/cmdline | Bin .../github.com/prometheus/procfs/fixtures/26231/exe | 0 .../prometheus/procfs/fixtures/26231/fd/0 | 0 .../prometheus/procfs/fixtures/26231/fd/1 | 0 .../prometheus/procfs/fixtures/26231/fd/10 | 0 .../prometheus/procfs/fixtures/26231/fd/2 | 0 .../prometheus/procfs/fixtures/26231/fd/3 | 0 .../github.com/prometheus/procfs/fixtures/26231/io | 0 .../prometheus/procfs/fixtures/26231/limits | 0 .../prometheus/procfs/fixtures/26231/stat | 0 .../prometheus/procfs/fixtures/26232/cmdline | 0 .../prometheus/procfs/fixtures/26232/fd/0 | 0 .../prometheus/procfs/fixtures/26232/fd/1 | 0 .../prometheus/procfs/fixtures/26232/fd/2 | 0 .../prometheus/procfs/fixtures/26232/fd/3 | 0 .../prometheus/procfs/fixtures/26232/fd/4 | 0 .../prometheus/procfs/fixtures/26232/limits | 0 .../prometheus/procfs/fixtures/26232/stat | 0 .../github.com/prometheus/procfs/fixtures/584/stat | 0 .../github.com/prometheus/procfs/fixtures/mdstat | 0 .../github.com/prometheus/procfs/fixtures/net/ip_vs | 0 .../prometheus/procfs/fixtures/net/ip_vs_stats | 0 .../github.com/prometheus/procfs/fixtures/self | 0 .../github.com/prometheus/procfs/fixtures/stat | 0 .../procfs/fixtures/symlinktargets/README | 0 .../prometheus/procfs/fixtures/symlinktargets/abc | 0 .../prometheus/procfs/fixtures/symlinktargets/def | 0 .../prometheus/procfs/fixtures/symlinktargets/ghi | 0 .../prometheus/procfs/fixtures/symlinktargets/uvw | 0 .../prometheus/procfs/fixtures/symlinktargets/xyz | 0 .../github.com/prometheus/procfs/fs.go | 0 .../github.com/prometheus/procfs/ipvs.go | 0 .../github.com/prometheus/procfs/mdstat.go | 0 .../github.com/prometheus/procfs/proc.go | 0 .../github.com/prometheus/procfs/proc_io.go | 0 .../github.com/prometheus/procfs/proc_limits.go | 0 .../github.com/prometheus/procfs/proc_stat.go | 0 .../github.com/prometheus/procfs/stat.go | 0 .../github.com/russross/blackfriday/.gitignore | 0 .../github.com/russross/blackfriday/.travis.yml | 0 .../github.com/russross/blackfriday/LICENSE.txt | 0 .../github.com/russross/blackfriday/README.md | 0 .../github.com/russross/blackfriday/block.go | 0 .../github.com/russross/blackfriday/html.go | 0 .../github.com/russross/blackfriday/inline.go | 0 .../github.com/russross/blackfriday/latex.go | 0 .../github.com/russross/blackfriday/markdown.go | 0 .../github.com/russross/blackfriday/smartypants.go | 0 .../shurcooL/sanitized_anchor_name/.travis.yml | 0 .../shurcooL/sanitized_anchor_name/README.md | 0 .../shurcooL/sanitized_anchor_name/main.go | 0 .../src => vendor}/github.com/spf13/cast/.gitignore | 0 .../src => vendor}/github.com/spf13/cast/LICENSE | 0 .../src => vendor}/github.com/spf13/cast/README.md | 0 .../src => vendor}/github.com/spf13/cast/cast.go | 0 .../github.com/spf13/cast/cast_test.go | 0 .../src => vendor}/github.com/spf13/cast/caste.go | 0 .../github.com/spf13/cobra/.gitignore | 0 .../src => vendor}/github.com/spf13/cobra/.mailmap | 0 .../github.com/spf13/cobra/.travis.yml | 0 .../github.com/spf13/cobra/LICENSE.txt | 0 .../src => vendor}/github.com/spf13/cobra/README.md | 0 .../github.com/spf13/cobra/bash_completions.go | 0 .../github.com/spf13/cobra/bash_completions.md | 0 .../src => vendor}/github.com/spf13/cobra/cobra.go | 0 .../github.com/spf13/cobra/cobra/cmd/add.go | 0 .../github.com/spf13/cobra/cobra/cmd/helpers.go | 0 .../github.com/spf13/cobra/cobra/cmd/init.go | 0 .../github.com/spf13/cobra/cobra/cmd/licenses.go | 0 .../github.com/spf13/cobra/cobra/cmd/root.go | 0 .../github.com/spf13/cobra/cobra/main.go | 0 .../github.com/spf13/cobra/command.go | 0 .../github.com/spf13/cobra/command_notwin.go | 0 .../github.com/spf13/cobra/command_win.go | 0 .../github.com/spf13/cobra/doc/man_docs.go | 0 .../github.com/spf13/cobra/doc/man_docs.md | 0 .../github.com/spf13/cobra/doc/md_docs.go | 0 .../github.com/spf13/cobra/doc/md_docs.md | 0 .../github.com/spf13/cobra/doc/util.go | 0 .../github.com/spf13/jwalterweatherman/.gitignore | 0 .../github.com/spf13/jwalterweatherman/LICENSE | 0 .../github.com/spf13/jwalterweatherman/README.md | 0 .../github.com/spf13/jwalterweatherman/jww_test.go | 0 .../thatswhyyoualwaysleaveanote.go | 0 .../github.com/spf13/pflag/.travis.yml | 0 .../src => vendor}/github.com/spf13/pflag/LICENSE | 0 .../src => vendor}/github.com/spf13/pflag/README.md | 0 .../src => vendor}/github.com/spf13/pflag/bool.go | 0 .../src => vendor}/github.com/spf13/pflag/count.go | 0 .../github.com/spf13/pflag/duration.go | 0 .../src => vendor}/github.com/spf13/pflag/flag.go | 0 .../github.com/spf13/pflag/float32.go | 0 .../github.com/spf13/pflag/float64.go | 0 .../github.com/spf13/pflag/golangflag.go | 0 .../src => vendor}/github.com/spf13/pflag/int.go | 0 .../src => vendor}/github.com/spf13/pflag/int32.go | 0 .../src => vendor}/github.com/spf13/pflag/int64.go | 0 .../src => vendor}/github.com/spf13/pflag/int8.go | 0 .../github.com/spf13/pflag/int_slice.go | 0 .../src => vendor}/github.com/spf13/pflag/ip.go | 0 .../src => vendor}/github.com/spf13/pflag/ipmask.go | 0 .../src => vendor}/github.com/spf13/pflag/ipnet.go | 0 .../src => vendor}/github.com/spf13/pflag/string.go | 0 .../github.com/spf13/pflag/string_slice.go | 0 .../src => vendor}/github.com/spf13/pflag/uint.go | 0 .../src => vendor}/github.com/spf13/pflag/uint16.go | 0 .../src => vendor}/github.com/spf13/pflag/uint32.go | 0 .../src => vendor}/github.com/spf13/pflag/uint64.go | 0 .../src => vendor}/github.com/spf13/pflag/uint8.go | 0 .../github.com/spf13/pflag/verify/all.sh | 0 .../github.com/spf13/pflag/verify/gofmt.sh | 0 .../github.com/spf13/pflag/verify/golint.sh | 0 .../github.com/spf13/viper/.gitignore | 0 .../github.com/spf13/viper/.travis.yml | 0 .../src => vendor}/github.com/spf13/viper/LICENSE | 0 .../src => vendor}/github.com/spf13/viper/README.md | 0 .../github.com/spf13/viper/remote/remote.go | 0 .../src => vendor}/github.com/spf13/viper/util.go | 0 .../src => vendor}/github.com/spf13/viper/viper.go | 0 .../github.com/spf13/viper/viper_test.go | 0 .../stretchr/testify/assert/assertions.go | 0 .../stretchr/testify/assert/assertions_test.go | 0 .../github.com/stretchr/testify/assert/doc.go | 0 .../github.com/stretchr/testify/assert/errors.go | 0 .../stretchr/testify/assert/forward_assertions.go | 0 .../testify/assert/forward_assertions_test.go | 0 .../stretchr/testify/assert/http_assertions.go | 0 .../stretchr/testify/assert/http_assertions_test.go | 0 .../github.com/stretchr/testify/require/doc.go | 0 .../testify/require/forward_requirements.go | 0 .../testify/require/forward_requirements_test.go | 0 .../stretchr/testify/require/requirements.go | 0 .../stretchr/testify/require/requirements_test.go | 0 .../golang.org/x/crypto/bcrypt/base64.go | 0 .../golang.org/x/crypto/bcrypt/bcrypt.go | 0 .../golang.org/x/crypto/bcrypt/bcrypt_test.go | 0 .../golang.org/x/crypto/blowfish/block.go | 0 .../golang.org/x/crypto/blowfish/blowfish_test.go | 0 .../golang.org/x/crypto/blowfish/cipher.go | 0 .../golang.org/x/crypto/blowfish/const.go | 0 .../golang.org/x/crypto/nacl/secretbox/secretbox.go | 0 .../x/crypto/nacl/secretbox/secretbox_test.go | 0 .../golang.org/x/crypto/pbkdf2/pbkdf2.go | 0 .../golang.org/x/crypto/pbkdf2/pbkdf2_test.go | 0 .../golang.org/x/crypto/poly1305/const_amd64.s | 0 .../golang.org/x/crypto/poly1305/poly1305.go | 0 .../golang.org/x/crypto/poly1305/poly1305_amd64.s | 0 .../golang.org/x/crypto/poly1305/poly1305_test.go | 0 .../golang.org/x/crypto/poly1305/sum_amd64.go | 0 .../golang.org/x/crypto/poly1305/sum_ref.go | 0 .../golang.org/x/crypto/salsa20/salsa/hsalsa20.go | 0 .../x/crypto/salsa20/salsa/salsa2020_amd64.s | 0 .../golang.org/x/crypto/salsa20/salsa/salsa208.go | 0 .../x/crypto/salsa20/salsa/salsa20_amd64.go | 0 .../x/crypto/salsa20/salsa/salsa20_ref.go | 0 .../golang.org/x/crypto/salsa20/salsa/salsa_test.go | 0 .../golang.org/x/crypto/scrypt/scrypt.go | 0 .../golang.org/x/crypto/scrypt/scrypt_test.go | 0 .../golang.org/x/net/context/context.go | 0 .../golang.org/x/net/context/ctxhttp/cancelreq.go | 0 .../x/net/context/ctxhttp/cancelreq_go14.go | 0 .../golang.org/x/net/context/ctxhttp/ctxhttp.go | 0 .../golang.org/x/net/http2/.gitignore | 0 .../golang.org/x/net/http2/Dockerfile | 0 .../src => vendor}/golang.org/x/net/http2/Makefile | 0 .../src => vendor}/golang.org/x/net/http2/README | 0 .../src => vendor}/golang.org/x/net/http2/buffer.go | 0 .../src => vendor}/golang.org/x/net/http2/errors.go | 0 .../src => vendor}/golang.org/x/net/http2/flow.go | 0 .../src => vendor}/golang.org/x/net/http2/frame.go | 0 .../golang.org/x/net/http2/gotrack.go | 0 .../golang.org/x/net/http2/h2demo/.gitignore | 0 .../golang.org/x/net/http2/h2demo/Makefile | 0 .../golang.org/x/net/http2/h2demo/README | 0 .../golang.org/x/net/http2/h2demo/h2demo.go | 0 .../golang.org/x/net/http2/h2demo/launch.go | 0 .../golang.org/x/net/http2/h2demo/rootCA.key | 0 .../golang.org/x/net/http2/h2demo/rootCA.pem | 0 .../golang.org/x/net/http2/h2demo/rootCA.srl | 0 .../golang.org/x/net/http2/h2demo/server.crt | 0 .../golang.org/x/net/http2/h2demo/server.key | 0 .../golang.org/x/net/http2/h2i/README.md | 0 .../golang.org/x/net/http2/h2i/h2i.go | 0 .../golang.org/x/net/http2/headermap.go | 0 .../golang.org/x/net/http2/hpack/encode.go | 0 .../golang.org/x/net/http2/hpack/hpack.go | 0 .../golang.org/x/net/http2/hpack/huffman.go | 0 .../golang.org/x/net/http2/hpack/tables.go | 0 .../src => vendor}/golang.org/x/net/http2/http2.go | 0 .../src => vendor}/golang.org/x/net/http2/pipe.go | 0 .../src => vendor}/golang.org/x/net/http2/server.go | 0 .../golang.org/x/net/http2/transport.go | 0 .../src => vendor}/golang.org/x/net/http2/write.go | 0 .../golang.org/x/net/http2/writesched.go | 0 .../x/net/internal/timeseries/timeseries.go | 0 .../src => vendor}/golang.org/x/net/trace/events.go | 0 .../golang.org/x/net/trace/histogram.go | 0 .../src => vendor}/golang.org/x/net/trace/trace.go | 0 .../google.golang.org/grpc/.travis.yml | 0 .../google.golang.org/grpc/CONTRIBUTING.md | 0 .../grpc/Documentation/grpc-auth-support.md | 0 .../src => vendor}/google.golang.org/grpc/LICENSE | 0 .../src => vendor}/google.golang.org/grpc/Makefile | 0 .../src => vendor}/google.golang.org/grpc/PATENTS | 0 .../src => vendor}/google.golang.org/grpc/README.md | 0 .../google.golang.org/grpc/benchmark/benchmark.go | 0 .../google.golang.org/grpc/benchmark/client/main.go | 0 .../grpc/benchmark/grpc_testing/test.pb.go | 0 .../grpc/benchmark/grpc_testing/test.proto | 0 .../google.golang.org/grpc/benchmark/server/main.go | 0 .../grpc/benchmark/stats/counter.go | 0 .../grpc/benchmark/stats/histogram.go | 0 .../google.golang.org/grpc/benchmark/stats/stats.go | 0 .../grpc/benchmark/stats/timeseries.go | 0 .../grpc/benchmark/stats/tracker.go | 0 .../google.golang.org/grpc/benchmark/stats/util.go | 0 .../src => vendor}/google.golang.org/grpc/call.go | 0 .../google.golang.org/grpc/clientconn.go | 0 .../google.golang.org/grpc/codegen.sh | 0 .../google.golang.org/grpc/codes/code_string.go | 0 .../google.golang.org/grpc/codes/codes.go | 0 .../grpc/credentials/credentials.go | 0 .../grpc/credentials/oauth/oauth.go | 0 .../src => vendor}/google.golang.org/grpc/doc.go | 0 .../google.golang.org/grpc/examples/README.md | 0 .../google.golang.org/grpc/examples/gotutorial.md | 0 .../grpc/examples/helloworld/greeter_client/main.go | 0 .../grpc/examples/helloworld/greeter_server/main.go | 0 .../examples/helloworld/helloworld/helloworld.pb.go | 0 .../examples/helloworld/helloworld/helloworld.proto | 0 .../grpc/examples/route_guide/README.md | 0 .../grpc/examples/route_guide/client/client.go | 0 .../route_guide/routeguide/route_guide.pb.go | 0 .../route_guide/routeguide/route_guide.proto | 0 .../grpc/examples/route_guide/server/server.go | 0 .../grpc/grpclog/glogger/glogger.go | 0 .../google.golang.org/grpc/grpclog/logger.go | 0 .../grpc/health/grpc_health_v1alpha/health.pb.go | 0 .../grpc/health/grpc_health_v1alpha/health.proto | 0 .../google.golang.org/grpc/health/health.go | 0 .../google.golang.org/grpc/interop/client/client.go | 0 .../grpc/interop/grpc_testing/test.pb.go | 0 .../grpc/interop/grpc_testing/test.proto | 0 .../google.golang.org/grpc/interop/server/server.go | 0 .../google.golang.org/grpc/metadata/metadata.go | 0 .../google.golang.org/grpc/naming/etcd/etcd.go | 0 .../google.golang.org/grpc/naming/naming.go | 0 .../src => vendor}/google.golang.org/grpc/picker.go | 0 .../google.golang.org/grpc/rpc_util.go | 0 .../src => vendor}/google.golang.org/grpc/server.go | 0 .../src => vendor}/google.golang.org/grpc/stream.go | 0 .../grpc/test/codec_perf/perf.pb.go | 0 .../grpc/test/codec_perf/perf.proto | 0 .../grpc/test/grpc_testing/test.pb.go | 0 .../grpc/test/grpc_testing/test.proto | 0 .../src => vendor}/google.golang.org/grpc/trace.go | 0 .../google.golang.org/grpc/transport/control.go | 0 .../grpc/transport/http2_client.go | 0 .../grpc/transport/http2_server.go | 0 .../google.golang.org/grpc/transport/http_util.go | 0 .../google.golang.org/grpc/transport/transport.go | 0 .../src => vendor}/gopkg.in/yaml.v2/LICENSE | 0 .../src => vendor}/gopkg.in/yaml.v2/LICENSE.libyaml | 0 .../src => vendor}/gopkg.in/yaml.v2/README.md | 0 .../src => vendor}/gopkg.in/yaml.v2/apic.go | 0 .../src => vendor}/gopkg.in/yaml.v2/decode.go | 0 .../src => vendor}/gopkg.in/yaml.v2/decode_test.go | 0 .../src => vendor}/gopkg.in/yaml.v2/emitterc.go | 0 .../src => vendor}/gopkg.in/yaml.v2/encode.go | 0 .../src => vendor}/gopkg.in/yaml.v2/encode_test.go | 0 .../src => vendor}/gopkg.in/yaml.v2/parserc.go | 0 .../src => vendor}/gopkg.in/yaml.v2/readerc.go | 0 .../src => vendor}/gopkg.in/yaml.v2/resolve.go | 0 .../src => vendor}/gopkg.in/yaml.v2/scannerc.go | 0 .../src => vendor}/gopkg.in/yaml.v2/sorter.go | 0 .../src => vendor}/gopkg.in/yaml.v2/suite_test.go | 0 .../src => vendor}/gopkg.in/yaml.v2/writerc.go | 0 .../src => vendor}/gopkg.in/yaml.v2/yaml.go | 0 .../src => vendor}/gopkg.in/yaml.v2/yamlh.go | 0 .../src => vendor}/gopkg.in/yaml.v2/yamlprivateh.go | 0 910 files changed, 2 deletions(-) delete mode 100644 Godeps/_workspace/.gitignore rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/COMPATIBLE (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/COPYING (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/Makefile (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/tomlv/COPYING (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/tomlv/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/cmd/tomlv/main.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/decode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/decode_meta.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/decode_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/encode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/encode_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/encoding_types.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/encoding_types_1.1.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/lex.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/parse.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/session.vim (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/type_check.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/BurntSushi/toml/type_fields.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/CHANGELOG.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/entry.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/entry_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/examples/basic/basic.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/examples/hook/hook.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/exported.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/formatter.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/formatter_bench_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/formatters/logstash/logstash.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/formatters/logstash/logstash_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hook_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/papertrail/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/sentry/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/sentry/sentry.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/syslog/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/syslog/syslog.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/json_formatter.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/json_formatter_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/logger.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/logrus.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/logrus_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/terminal_darwin.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/terminal_freebsd.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/terminal_linux.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/terminal_notwindows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/terminal_openbsd.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/terminal_windows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/text_formatter.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/text_formatter_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/Sirupsen/logrus/writer.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/agl/ed25519/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/agl/ed25519/ed25519.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/agl/ed25519/ed25519_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/agl/ed25519/edwards25519/const.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/agl/ed25519/edwards25519/edwards25519.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/agl/ed25519/extra25519/extra25519.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/agl/ed25519/extra25519/extra25519_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/agl/ed25519/testdata/sign.input.gz (100%) rename {Godeps/_workspace/src => vendor}/github.com/beorn7/perks/quantile/exampledata.txt (100%) rename {Godeps/_workspace/src => vendor}/github.com/beorn7/perks/quantile/stream.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/CHANGELOG.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/CONTRIBUTING.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/LICENSE.txt (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/Makefile (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/appengine.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/appengine_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/bugsnag.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/bugsnag_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/configuration.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/configuration_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/errors/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/errors/error.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/errors/error_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/errors/parse_panic.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/errors/parse_panic_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/errors/stackframe.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/event.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/appengine/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/appengine/app.yaml (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/appengine/hello.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/appengine/mylogs.txt (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/http/main.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/controllers/app.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/init.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/App/Index.html (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/debug.html (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/404.html (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/500.html (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/flash.html (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/footer.html (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/header.html (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/app.conf (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/routes (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/messages/sample.en (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/public/css/bootstrap.css (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/favicon.png (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings-white.png (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings.png (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/public/js/jquery-1.9.1.min.js (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/examples/revelapp/tests/apptest.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/json_tags.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/metadata.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/metadata_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/middleware.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/middleware_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/notifier.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/panicwrap.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/panicwrap_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/payload.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/bugsnag-go/revel/bugsnagrevel.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/osext/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/osext/osext.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/osext/osext_plan9.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/osext/osext_procfs.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/osext/osext_sysctl.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/osext/osext_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/osext/osext_windows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/panicwrap/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/panicwrap/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/panicwrap/dup2.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/panicwrap/dup3.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/panicwrap/monitor.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/panicwrap/monitor_windows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/bugsnag/panicwrap/panicwrap.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/cpuguy83/go-md2man/md2man/md2man.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/cpuguy83/go-md2man/md2man/roff.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/context/context.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/context/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/context/http.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/context/http_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/context/logger.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/context/trace.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/context/trace_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/context/util.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/digest.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/digest_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/digester.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/digester_resumable_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/set.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/set_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/tarsum.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/tarsum_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/verifiers.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/digest/verifiers_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/health/api/api.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/health/api/api_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/health/checks/checks.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/health/checks/checks_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/health/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/health/health.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/health/health_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/errcode/errors.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/errcode/errors_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/errcode/handler.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/errcode/register.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/descriptors.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/errors.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/names.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/names_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/routes.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/routes_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/urls.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/api/v2/urls_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/auth.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/htpasswd/access.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/htpasswd/access_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/htpasswd/htpasswd.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/htpasswd/htpasswd_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/silly/access.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/silly/access_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/token/accesscontroller.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/token/stringset.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/token/token.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/token/token_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/auth/token/util.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/client/auth/api_version.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/client/auth/authchallenge.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/client/auth/authchallenge_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/client/auth/session.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/client/auth/session_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/client/transport/http_reader.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/registry/client/transport/transport.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/uuid/uuid.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/distribution/uuid/uuid_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/builder_context.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/fileinfosums.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/tarsum.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/tarsum_spec.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/tarsum_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/xattr/json (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/versioning.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/versioning_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/tarsum/writercloser.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/tc_linux_cgo.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/tc_other.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/term.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/term_windows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/termios_darwin.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/termios_freebsd.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/termios_linux.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/winconsole/console_windows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/winconsole/console_windows_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/winconsole/term_emulator.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/docker/pkg/term/winconsole/term_emulator_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go-connections/tlsconfig/config.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go/canonical/json/decode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go/canonical/json/encode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go/canonical/json/fold.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go/canonical/json/indent.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go/canonical/json/scanner.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go/canonical/json/stream.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/go/canonical/json/tags.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/CONTRIBUTING.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/MAINTAINERS (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/certificates.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/certificates_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/ec_key.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/ec_key_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/filter.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/filter_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/hash.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/jsonsign.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/jsonsign_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/key.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/key_files.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/key_files_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/key_manager.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/key_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/rsa_key.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/rsa_key_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/testutil/certificates.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/client.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/client_data/private_key.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/client_data/public_key.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/client_data/trusted_hosts.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/gencert.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/genkeys.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/server.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/server_data/private_key.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/server_data/public_key.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/tlsdemo/server_data/trusted_clients.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/trustgraph/graph.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/trustgraph/memory_graph.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/trustgraph/memory_graph_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/trustgraph/statement.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/trustgraph/statement_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/util.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/docker/libtrust/util_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/aes/ecb.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/aes/key_wrap.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/aes_cbc_hmac.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/aes_gcm.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/aes_gcm_kw.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/aeskw.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/arrays/arrays.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/base64url/base64url.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/compact/compact.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/deflate.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/direct.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/ecdh.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/ecdh_aeskw.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/ecdsa_using_sha.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/hmac.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/hmac_using_sha.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/jose.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/kdf/nist_sp800_56a.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/kdf/pbkdf2.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_cert.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.key (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_public.key (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/ecc/ecc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.key (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.key (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.pem (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/keys/rsa/rsa.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/padding/align.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/padding/pkcs7.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/pbse2_hmac_aeskw.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/plaintext.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/rsa_oaep.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/rsa_pkcs1v15.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/rsa_using_sha.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/rsapss_using_sha.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/dvsekhvalnov/jose2go/sha.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/AUTHORS (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/CHANGELOG.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/CONTRIBUTING.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/appengine.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/benchmark_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/buffer.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/collations.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/connection.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/const.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/driver.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/driver_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/errors.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/errors_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/infile.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/packets.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/result.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/rows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/statement.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/transaction.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/utils.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/go-sql-driver/mysql/utils_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/Makefile (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/clone.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/decode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/encode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/equal.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/extensions.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/lib.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/message_set.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/pointer_reflect.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/pointer_unsafe.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/properties.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/proto3_proto/proto3.proto (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/text.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/golang/protobuf/proto/text_parser.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/google/gofuzz/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/google/gofuzz/CONTRIBUTING.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/google/gofuzz/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/google/gofuzz/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/google/gofuzz/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/google/gofuzz/example_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/google/gofuzz/fuzz.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/google/gofuzz/fuzz_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/context/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/context/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/context/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/context/context.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/context/context_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/context/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/bench_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/mux.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/mux_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/old_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/regexp.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/gorilla/mux/route.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/inconshreveable/mousetrap/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/inconshreveable/mousetrap/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/inconshreveable/mousetrap/trap_others.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/inconshreveable/mousetrap/trap_windows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/inconshreveable/mousetrap/trap_windows_1.4.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/License (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/association.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/association_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/callback.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/callback_create.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/callback_delete.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/callback_query.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/callback_shared.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/callback_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/callback_update.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/callbacks_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/common_dialect.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/create_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/customize_column_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/delete_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/dialect.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/doc/development.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/embedded_struct_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/errors.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/field.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/foundation.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/images/logger.png (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/interface.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/join_table_handler.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/join_table_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/logger.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/main.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/main_private.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/main_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/migration_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/model.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/model_struct.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/mssql.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/multi_primary_keys_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/mysql.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/pointer_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/polymorphic_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/postgres.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/preload.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/preload_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/query_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/scope.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/scope_private.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/scope_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/search.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/search_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/slice_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/sqlite3.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/structs_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/test_all.sh (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/update_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/utils.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/jinzhu/gorm/utils_private.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/License (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/Readme (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/diff.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/diff_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/example_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/formatter.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/formatter_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/pretty.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/pretty/zero.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/License (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/Readme (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/colwriter/Readme (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/colwriter/column.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/colwriter/column_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/indent.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/indent_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/mc/Readme (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/mc/mc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/wrap.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/kr/text/wrap_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/lib/pq/hstore/hstore.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/lib/pq/hstore/hstore_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/benchmark_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/example_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/lex.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/load.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/load_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/parser.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/properties.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/properties_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/magiconair/properties/rangecheck.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/backup.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/code/sqlite3-binding.c (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/code/sqlite3-binding.h (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/code/sqlite3ext.h (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/error.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/error_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3-binding.c (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3-binding.h (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3_fts3_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3_other.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3_test/sqltest.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mattn/go-sqlite3/sqlite3_windows.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/const.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/error.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/hsm.db (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/parallel_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/pkcs11.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/pkcs11.h (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/pkcs11_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/pkcs11f.h (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/pkcs11t.h (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/softhsm.conf (100%) rename {Godeps/_workspace/src => vendor}/github.com/miekg/pkcs11/types.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/go-homedir/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/go-homedir/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/go-homedir/homedir.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/go-homedir/homedir_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/decode_hooks.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/decode_hooks_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/error.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/mapstructure.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/mapstructure_examples_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/mitchellh/mapstructure/mapstructure_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/LICENCE.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/csv.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/csv2table/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/csv2table/csv2table.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/table.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/test.csv (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/test_info.csv (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/util.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/olekukonko/tablewriter/wrap.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/collector.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/counter.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/desc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/expvar.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/gauge.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/go_collector.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/histogram.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/http.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/metric.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/process_collector.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/push.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/registry.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/summary.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/untyped.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/value.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_golang/prometheus/vec.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/client_model/go/metrics.pb.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/decode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/encode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/expfmt.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_1 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_2 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_3 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_4 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_12 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_13 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_14 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_19 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_7 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/fuzz/corpus/minimal (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/json_decode.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/text_create.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/expfmt/text_parse.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/alert.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/fingerprinting.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/labels.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/labelset.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/metric.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/model.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/signature.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/silence.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/time.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/common/model/value.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/AUTHORS.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/CONTRIBUTING.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/Makefile (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/NOTICE (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/cmdline (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/exe (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/fd/0 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/fd/1 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/fd/10 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/fd/2 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/fd/3 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/io (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/limits (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26231/stat (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26232/cmdline (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26232/fd/0 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26232/fd/1 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26232/fd/2 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26232/fd/3 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26232/fd/4 (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26232/limits (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/26232/stat (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/584/stat (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/mdstat (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/net/ip_vs (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/net/ip_vs_stats (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/self (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/stat (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/symlinktargets/README (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/symlinktargets/abc (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/symlinktargets/def (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/symlinktargets/ghi (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/symlinktargets/uvw (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fixtures/symlinktargets/xyz (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/fs.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/ipvs.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/mdstat.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/proc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/proc_io.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/proc_limits.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/proc_stat.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/prometheus/procfs/stat.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/LICENSE.txt (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/block.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/html.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/inline.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/latex.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/markdown.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/russross/blackfriday/smartypants.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/shurcooL/sanitized_anchor_name/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/shurcooL/sanitized_anchor_name/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/shurcooL/sanitized_anchor_name/main.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cast/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cast/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cast/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cast/cast.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cast/cast_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cast/caste.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/.mailmap (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/LICENSE.txt (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/bash_completions.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/bash_completions.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/cobra.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/cobra/cmd/add.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/cobra/cmd/helpers.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/cobra/cmd/init.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/cobra/cmd/licenses.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/cobra/cmd/root.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/cobra/main.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/command.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/command_notwin.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/command_win.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/doc/man_docs.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/doc/man_docs.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/doc/md_docs.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/doc/md_docs.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/cobra/doc/util.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/jwalterweatherman/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/jwalterweatherman/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/jwalterweatherman/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/jwalterweatherman/jww_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/jwalterweatherman/thatswhyyoualwaysleaveanote.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/bool.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/count.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/duration.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/flag.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/float32.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/float64.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/golangflag.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/int.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/int32.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/int64.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/int8.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/int_slice.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/ip.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/ipmask.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/ipnet.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/string.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/string_slice.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/uint.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/uint16.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/uint32.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/uint64.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/uint8.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/verify/all.sh (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/verify/gofmt.sh (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/pflag/verify/golint.sh (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/viper/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/viper/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/viper/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/viper/README.md (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/viper/remote/remote.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/viper/util.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/viper/viper.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/spf13/viper/viper_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/assert/assertions.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/assert/assertions_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/assert/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/assert/errors.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/assert/forward_assertions.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/assert/forward_assertions_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/assert/http_assertions.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/assert/http_assertions_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/require/doc.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/require/forward_requirements.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/require/forward_requirements_test.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/require/requirements.go (100%) rename {Godeps/_workspace/src => vendor}/github.com/stretchr/testify/require/requirements_test.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/bcrypt/base64.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/bcrypt/bcrypt.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/bcrypt/bcrypt_test.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/blowfish/block.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/blowfish/blowfish_test.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/blowfish/cipher.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/blowfish/const.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/nacl/secretbox/secretbox.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/nacl/secretbox/secretbox_test.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/pbkdf2/pbkdf2.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/pbkdf2/pbkdf2_test.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/poly1305/const_amd64.s (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/poly1305/poly1305.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/poly1305/poly1305_amd64.s (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/poly1305/poly1305_test.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/poly1305/sum_amd64.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/poly1305/sum_ref.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/salsa20/salsa/hsalsa20.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/salsa20/salsa/salsa2020_amd64.s (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/salsa20/salsa/salsa208.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/salsa20/salsa/salsa20_ref.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/salsa20/salsa/salsa_test.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/scrypt/scrypt.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/crypto/scrypt/scrypt_test.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/context/context.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/context/ctxhttp/cancelreq.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/context/ctxhttp/cancelreq_go14.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/context/ctxhttp/ctxhttp.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/Dockerfile (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/Makefile (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/README (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/buffer.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/errors.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/flow.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/frame.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/gotrack.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/.gitignore (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/Makefile (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/README (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/h2demo.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/launch.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/rootCA.key (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/rootCA.pem (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/rootCA.srl (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/server.crt (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2demo/server.key (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2i/README.md (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/h2i/h2i.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/headermap.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/hpack/encode.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/hpack/hpack.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/hpack/huffman.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/hpack/tables.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/http2.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/pipe.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/server.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/transport.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/write.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/http2/writesched.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/internal/timeseries/timeseries.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/trace/events.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/trace/histogram.go (100%) rename {Godeps/_workspace/src => vendor}/golang.org/x/net/trace/trace.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/.travis.yml (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/CONTRIBUTING.md (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/Documentation/grpc-auth-support.md (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/Makefile (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/PATENTS (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/README.md (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/benchmark.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/client/main.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/grpc_testing/test.pb.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/grpc_testing/test.proto (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/server/main.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/stats/counter.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/stats/histogram.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/stats/stats.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/stats/timeseries.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/stats/tracker.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/benchmark/stats/util.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/call.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/clientconn.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/codegen.sh (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/codes/code_string.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/codes/codes.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/credentials/credentials.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/credentials/oauth/oauth.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/doc.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/README.md (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/gotutorial.md (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/helloworld/greeter_client/main.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/helloworld/greeter_server/main.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.pb.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.proto (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/route_guide/README.md (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/route_guide/client/client.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.pb.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.proto (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/examples/route_guide/server/server.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/grpclog/glogger/glogger.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/grpclog/logger.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/health/grpc_health_v1alpha/health.pb.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/health/grpc_health_v1alpha/health.proto (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/health/health.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/interop/client/client.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/interop/grpc_testing/test.pb.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/interop/grpc_testing/test.proto (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/interop/server/server.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/metadata/metadata.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/naming/etcd/etcd.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/naming/naming.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/picker.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/rpc_util.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/server.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/stream.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/test/codec_perf/perf.pb.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/test/codec_perf/perf.proto (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/test/grpc_testing/test.pb.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/test/grpc_testing/test.proto (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/trace.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/transport/control.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/transport/http2_client.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/transport/http2_server.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/transport/http_util.go (100%) rename {Godeps/_workspace/src => vendor}/google.golang.org/grpc/transport/transport.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/LICENSE (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/LICENSE.libyaml (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/README.md (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/apic.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/decode.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/decode_test.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/emitterc.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/encode.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/encode_test.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/parserc.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/readerc.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/resolve.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/scannerc.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/sorter.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/suite_test.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/writerc.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/yaml.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/yamlh.go (100%) rename {Godeps/_workspace/src => vendor}/gopkg.in/yaml.v2/yamlprivateh.go (100%) diff --git a/Godeps/_workspace/.gitignore b/Godeps/_workspace/.gitignore deleted file mode 100644 index f037d684ef..0000000000 --- a/Godeps/_workspace/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/pkg -/bin diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/.gitignore b/vendor/github.com/BurntSushi/toml/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/.gitignore rename to vendor/github.com/BurntSushi/toml/.gitignore diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/.travis.yml b/vendor/github.com/BurntSushi/toml/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/.travis.yml rename to vendor/github.com/BurntSushi/toml/.travis.yml diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/COMPATIBLE b/vendor/github.com/BurntSushi/toml/COMPATIBLE similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/COMPATIBLE rename to vendor/github.com/BurntSushi/toml/COMPATIBLE diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/COPYING b/vendor/github.com/BurntSushi/toml/COPYING similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/COPYING rename to vendor/github.com/BurntSushi/toml/COPYING diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/Makefile b/vendor/github.com/BurntSushi/toml/Makefile similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/Makefile rename to vendor/github.com/BurntSushi/toml/Makefile diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/README.md b/vendor/github.com/BurntSushi/toml/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/README.md rename to vendor/github.com/BurntSushi/toml/README.md diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING b/vendor/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING rename to vendor/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md b/vendor/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md rename to vendor/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go b/vendor/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go rename to vendor/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING b/vendor/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING rename to vendor/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md b/vendor/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md rename to vendor/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go b/vendor/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go rename to vendor/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING b/vendor/github.com/BurntSushi/toml/cmd/tomlv/COPYING similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING rename to vendor/github.com/BurntSushi/toml/cmd/tomlv/COPYING diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/README.md b/vendor/github.com/BurntSushi/toml/cmd/tomlv/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/README.md rename to vendor/github.com/BurntSushi/toml/cmd/tomlv/README.md diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/main.go b/vendor/github.com/BurntSushi/toml/cmd/tomlv/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/tomlv/main.go rename to vendor/github.com/BurntSushi/toml/cmd/tomlv/main.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/decode.go b/vendor/github.com/BurntSushi/toml/decode.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/decode.go rename to vendor/github.com/BurntSushi/toml/decode.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/decode_meta.go b/vendor/github.com/BurntSushi/toml/decode_meta.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/decode_meta.go rename to vendor/github.com/BurntSushi/toml/decode_meta.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/decode_test.go b/vendor/github.com/BurntSushi/toml/decode_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/decode_test.go rename to vendor/github.com/BurntSushi/toml/decode_test.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/doc.go b/vendor/github.com/BurntSushi/toml/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/doc.go rename to vendor/github.com/BurntSushi/toml/doc.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/encode.go b/vendor/github.com/BurntSushi/toml/encode.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/encode.go rename to vendor/github.com/BurntSushi/toml/encode.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/encode_test.go b/vendor/github.com/BurntSushi/toml/encode_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/encode_test.go rename to vendor/github.com/BurntSushi/toml/encode_test.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/encoding_types.go b/vendor/github.com/BurntSushi/toml/encoding_types.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/encoding_types.go rename to vendor/github.com/BurntSushi/toml/encoding_types.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/encoding_types_1.1.go b/vendor/github.com/BurntSushi/toml/encoding_types_1.1.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/encoding_types_1.1.go rename to vendor/github.com/BurntSushi/toml/encoding_types_1.1.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/lex.go b/vendor/github.com/BurntSushi/toml/lex.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/lex.go rename to vendor/github.com/BurntSushi/toml/lex.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/parse.go b/vendor/github.com/BurntSushi/toml/parse.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/parse.go rename to vendor/github.com/BurntSushi/toml/parse.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/session.vim b/vendor/github.com/BurntSushi/toml/session.vim similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/session.vim rename to vendor/github.com/BurntSushi/toml/session.vim diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/type_check.go b/vendor/github.com/BurntSushi/toml/type_check.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/type_check.go rename to vendor/github.com/BurntSushi/toml/type_check.go diff --git a/Godeps/_workspace/src/github.com/BurntSushi/toml/type_fields.go b/vendor/github.com/BurntSushi/toml/type_fields.go similarity index 100% rename from Godeps/_workspace/src/github.com/BurntSushi/toml/type_fields.go rename to vendor/github.com/BurntSushi/toml/type_fields.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore b/vendor/github.com/Sirupsen/logrus/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore rename to vendor/github.com/Sirupsen/logrus/.gitignore diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml b/vendor/github.com/Sirupsen/logrus/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml rename to vendor/github.com/Sirupsen/logrus/.travis.yml diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md b/vendor/github.com/Sirupsen/logrus/CHANGELOG.md similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md rename to vendor/github.com/Sirupsen/logrus/CHANGELOG.md diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE b/vendor/github.com/Sirupsen/logrus/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE rename to vendor/github.com/Sirupsen/logrus/LICENSE diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md b/vendor/github.com/Sirupsen/logrus/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md rename to vendor/github.com/Sirupsen/logrus/README.md diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go b/vendor/github.com/Sirupsen/logrus/entry.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go rename to vendor/github.com/Sirupsen/logrus/entry.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go b/vendor/github.com/Sirupsen/logrus/entry_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go rename to vendor/github.com/Sirupsen/logrus/entry_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go b/vendor/github.com/Sirupsen/logrus/examples/basic/basic.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go rename to vendor/github.com/Sirupsen/logrus/examples/basic/basic.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go b/vendor/github.com/Sirupsen/logrus/examples/hook/hook.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go rename to vendor/github.com/Sirupsen/logrus/examples/hook/hook.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go b/vendor/github.com/Sirupsen/logrus/exported.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go rename to vendor/github.com/Sirupsen/logrus/exported.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go b/vendor/github.com/Sirupsen/logrus/formatter.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go rename to vendor/github.com/Sirupsen/logrus/formatter.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go b/vendor/github.com/Sirupsen/logrus/formatter_bench_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go rename to vendor/github.com/Sirupsen/logrus/formatter_bench_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go b/vendor/github.com/Sirupsen/logrus/formatters/logstash/logstash.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go rename to vendor/github.com/Sirupsen/logrus/formatters/logstash/logstash.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash_test.go b/vendor/github.com/Sirupsen/logrus/formatters/logstash/logstash_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash_test.go rename to vendor/github.com/Sirupsen/logrus/formatters/logstash/logstash_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go b/vendor/github.com/Sirupsen/logrus/hook_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go rename to vendor/github.com/Sirupsen/logrus/hook_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go b/vendor/github.com/Sirupsen/logrus/hooks.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go rename to vendor/github.com/Sirupsen/logrus/hooks.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go b/vendor/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go rename to vendor/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go b/vendor/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go rename to vendor/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go b/vendor/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go rename to vendor/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go b/vendor/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go rename to vendor/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md b/vendor/github.com/Sirupsen/logrus/hooks/papertrail/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md rename to vendor/github.com/Sirupsen/logrus/hooks/papertrail/README.md diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go b/vendor/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go rename to vendor/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go b/vendor/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go rename to vendor/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md b/vendor/github.com/Sirupsen/logrus/hooks/sentry/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md rename to vendor/github.com/Sirupsen/logrus/hooks/sentry/README.md diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go b/vendor/github.com/Sirupsen/logrus/hooks/sentry/sentry.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go rename to vendor/github.com/Sirupsen/logrus/hooks/sentry/sentry.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go b/vendor/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go rename to vendor/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md b/vendor/github.com/Sirupsen/logrus/hooks/syslog/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md rename to vendor/github.com/Sirupsen/logrus/hooks/syslog/README.md diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go b/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go rename to vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go b/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go rename to vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go b/vendor/github.com/Sirupsen/logrus/json_formatter.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go rename to vendor/github.com/Sirupsen/logrus/json_formatter.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go b/vendor/github.com/Sirupsen/logrus/json_formatter_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go rename to vendor/github.com/Sirupsen/logrus/json_formatter_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go b/vendor/github.com/Sirupsen/logrus/logger.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go rename to vendor/github.com/Sirupsen/logrus/logger.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go b/vendor/github.com/Sirupsen/logrus/logrus.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go rename to vendor/github.com/Sirupsen/logrus/logrus.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go b/vendor/github.com/Sirupsen/logrus/logrus_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go rename to vendor/github.com/Sirupsen/logrus/logrus_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go b/vendor/github.com/Sirupsen/logrus/terminal_darwin.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go rename to vendor/github.com/Sirupsen/logrus/terminal_darwin.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go b/vendor/github.com/Sirupsen/logrus/terminal_freebsd.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go rename to vendor/github.com/Sirupsen/logrus/terminal_freebsd.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go b/vendor/github.com/Sirupsen/logrus/terminal_linux.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go rename to vendor/github.com/Sirupsen/logrus/terminal_linux.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go b/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go rename to vendor/github.com/Sirupsen/logrus/terminal_notwindows.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go b/vendor/github.com/Sirupsen/logrus/terminal_openbsd.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go rename to vendor/github.com/Sirupsen/logrus/terminal_openbsd.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go b/vendor/github.com/Sirupsen/logrus/terminal_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go rename to vendor/github.com/Sirupsen/logrus/terminal_windows.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go b/vendor/github.com/Sirupsen/logrus/text_formatter.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go rename to vendor/github.com/Sirupsen/logrus/text_formatter.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go b/vendor/github.com/Sirupsen/logrus/text_formatter_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go rename to vendor/github.com/Sirupsen/logrus/text_formatter_test.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go b/vendor/github.com/Sirupsen/logrus/writer.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go rename to vendor/github.com/Sirupsen/logrus/writer.go diff --git a/Godeps/_workspace/src/github.com/agl/ed25519/LICENSE b/vendor/github.com/agl/ed25519/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/agl/ed25519/LICENSE rename to vendor/github.com/agl/ed25519/LICENSE diff --git a/Godeps/_workspace/src/github.com/agl/ed25519/ed25519.go b/vendor/github.com/agl/ed25519/ed25519.go similarity index 100% rename from Godeps/_workspace/src/github.com/agl/ed25519/ed25519.go rename to vendor/github.com/agl/ed25519/ed25519.go diff --git a/Godeps/_workspace/src/github.com/agl/ed25519/ed25519_test.go b/vendor/github.com/agl/ed25519/ed25519_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/agl/ed25519/ed25519_test.go rename to vendor/github.com/agl/ed25519/ed25519_test.go diff --git a/Godeps/_workspace/src/github.com/agl/ed25519/edwards25519/const.go b/vendor/github.com/agl/ed25519/edwards25519/const.go similarity index 100% rename from Godeps/_workspace/src/github.com/agl/ed25519/edwards25519/const.go rename to vendor/github.com/agl/ed25519/edwards25519/const.go diff --git a/Godeps/_workspace/src/github.com/agl/ed25519/edwards25519/edwards25519.go b/vendor/github.com/agl/ed25519/edwards25519/edwards25519.go similarity index 100% rename from Godeps/_workspace/src/github.com/agl/ed25519/edwards25519/edwards25519.go rename to vendor/github.com/agl/ed25519/edwards25519/edwards25519.go diff --git a/Godeps/_workspace/src/github.com/agl/ed25519/extra25519/extra25519.go b/vendor/github.com/agl/ed25519/extra25519/extra25519.go similarity index 100% rename from Godeps/_workspace/src/github.com/agl/ed25519/extra25519/extra25519.go rename to vendor/github.com/agl/ed25519/extra25519/extra25519.go diff --git a/Godeps/_workspace/src/github.com/agl/ed25519/extra25519/extra25519_test.go b/vendor/github.com/agl/ed25519/extra25519/extra25519_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/agl/ed25519/extra25519/extra25519_test.go rename to vendor/github.com/agl/ed25519/extra25519/extra25519_test.go diff --git a/Godeps/_workspace/src/github.com/agl/ed25519/testdata/sign.input.gz b/vendor/github.com/agl/ed25519/testdata/sign.input.gz similarity index 100% rename from Godeps/_workspace/src/github.com/agl/ed25519/testdata/sign.input.gz rename to vendor/github.com/agl/ed25519/testdata/sign.input.gz diff --git a/Godeps/_workspace/src/github.com/beorn7/perks/quantile/exampledata.txt b/vendor/github.com/beorn7/perks/quantile/exampledata.txt similarity index 100% rename from Godeps/_workspace/src/github.com/beorn7/perks/quantile/exampledata.txt rename to vendor/github.com/beorn7/perks/quantile/exampledata.txt diff --git a/Godeps/_workspace/src/github.com/beorn7/perks/quantile/stream.go b/vendor/github.com/beorn7/perks/quantile/stream.go similarity index 100% rename from Godeps/_workspace/src/github.com/beorn7/perks/quantile/stream.go rename to vendor/github.com/beorn7/perks/quantile/stream.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/.travis.yml b/vendor/github.com/bugsnag/bugsnag-go/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/.travis.yml rename to vendor/github.com/bugsnag/bugsnag-go/.travis.yml diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/CHANGELOG.md b/vendor/github.com/bugsnag/bugsnag-go/CHANGELOG.md similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/CHANGELOG.md rename to vendor/github.com/bugsnag/bugsnag-go/CHANGELOG.md diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/CONTRIBUTING.md b/vendor/github.com/bugsnag/bugsnag-go/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/CONTRIBUTING.md rename to vendor/github.com/bugsnag/bugsnag-go/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/LICENSE.txt b/vendor/github.com/bugsnag/bugsnag-go/LICENSE.txt similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/LICENSE.txt rename to vendor/github.com/bugsnag/bugsnag-go/LICENSE.txt diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/Makefile b/vendor/github.com/bugsnag/bugsnag-go/Makefile similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/Makefile rename to vendor/github.com/bugsnag/bugsnag-go/Makefile diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/README.md b/vendor/github.com/bugsnag/bugsnag-go/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/README.md rename to vendor/github.com/bugsnag/bugsnag-go/README.md diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/appengine.go b/vendor/github.com/bugsnag/bugsnag-go/appengine.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/appengine.go rename to vendor/github.com/bugsnag/bugsnag-go/appengine.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/appengine_test.go b/vendor/github.com/bugsnag/bugsnag-go/appengine_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/appengine_test.go rename to vendor/github.com/bugsnag/bugsnag-go/appengine_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/bugsnag.go b/vendor/github.com/bugsnag/bugsnag-go/bugsnag.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/bugsnag.go rename to vendor/github.com/bugsnag/bugsnag-go/bugsnag.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/bugsnag_test.go b/vendor/github.com/bugsnag/bugsnag-go/bugsnag_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/bugsnag_test.go rename to vendor/github.com/bugsnag/bugsnag-go/bugsnag_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/configuration.go b/vendor/github.com/bugsnag/bugsnag-go/configuration.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/configuration.go rename to vendor/github.com/bugsnag/bugsnag-go/configuration.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/configuration_test.go b/vendor/github.com/bugsnag/bugsnag-go/configuration_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/configuration_test.go rename to vendor/github.com/bugsnag/bugsnag-go/configuration_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/doc.go b/vendor/github.com/bugsnag/bugsnag-go/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/doc.go rename to vendor/github.com/bugsnag/bugsnag-go/doc.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/README.md b/vendor/github.com/bugsnag/bugsnag-go/errors/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/README.md rename to vendor/github.com/bugsnag/bugsnag-go/errors/README.md diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/error.go b/vendor/github.com/bugsnag/bugsnag-go/errors/error.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/error.go rename to vendor/github.com/bugsnag/bugsnag-go/errors/error.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/error_test.go b/vendor/github.com/bugsnag/bugsnag-go/errors/error_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/error_test.go rename to vendor/github.com/bugsnag/bugsnag-go/errors/error_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/parse_panic.go b/vendor/github.com/bugsnag/bugsnag-go/errors/parse_panic.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/parse_panic.go rename to vendor/github.com/bugsnag/bugsnag-go/errors/parse_panic.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/parse_panic_test.go b/vendor/github.com/bugsnag/bugsnag-go/errors/parse_panic_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/parse_panic_test.go rename to vendor/github.com/bugsnag/bugsnag-go/errors/parse_panic_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/stackframe.go b/vendor/github.com/bugsnag/bugsnag-go/errors/stackframe.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/errors/stackframe.go rename to vendor/github.com/bugsnag/bugsnag-go/errors/stackframe.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/event.go b/vendor/github.com/bugsnag/bugsnag-go/event.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/event.go rename to vendor/github.com/bugsnag/bugsnag-go/event.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/appengine/README.md b/vendor/github.com/bugsnag/bugsnag-go/examples/appengine/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/appengine/README.md rename to vendor/github.com/bugsnag/bugsnag-go/examples/appengine/README.md diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/appengine/app.yaml b/vendor/github.com/bugsnag/bugsnag-go/examples/appengine/app.yaml similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/appengine/app.yaml rename to vendor/github.com/bugsnag/bugsnag-go/examples/appengine/app.yaml diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/appengine/hello.go b/vendor/github.com/bugsnag/bugsnag-go/examples/appengine/hello.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/appengine/hello.go rename to vendor/github.com/bugsnag/bugsnag-go/examples/appengine/hello.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/appengine/mylogs.txt b/vendor/github.com/bugsnag/bugsnag-go/examples/appengine/mylogs.txt similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/appengine/mylogs.txt rename to vendor/github.com/bugsnag/bugsnag-go/examples/appengine/mylogs.txt diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/http/main.go b/vendor/github.com/bugsnag/bugsnag-go/examples/http/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/http/main.go rename to vendor/github.com/bugsnag/bugsnag-go/examples/http/main.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/.gitignore b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/.gitignore rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/.gitignore diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/controllers/app.go b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/controllers/app.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/controllers/app.go rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/controllers/app.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/init.go b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/init.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/init.go rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/init.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/App/Index.html b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/App/Index.html similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/App/Index.html rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/App/Index.html diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/debug.html b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/debug.html similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/debug.html rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/debug.html diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/404.html b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/404.html similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/404.html rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/404.html diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/500.html b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/500.html similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/500.html rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/errors/500.html diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/flash.html b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/flash.html similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/flash.html rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/flash.html diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/footer.html b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/footer.html similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/footer.html rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/footer.html diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/header.html b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/header.html similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/header.html rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/app/views/header.html diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/app.conf b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/app.conf similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/app.conf rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/app.conf diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/routes b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/routes similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/routes rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/conf/routes diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/messages/sample.en b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/messages/sample.en similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/messages/sample.en rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/messages/sample.en diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/css/bootstrap.css b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/css/bootstrap.css similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/css/bootstrap.css rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/css/bootstrap.css diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/favicon.png b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/favicon.png similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/favicon.png rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/favicon.png diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings-white.png b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings-white.png similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings-white.png rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings-white.png diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings.png b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings.png similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings.png rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/img/glyphicons-halflings.png diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/js/jquery-1.9.1.min.js b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/js/jquery-1.9.1.min.js similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/public/js/jquery-1.9.1.min.js rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/public/js/jquery-1.9.1.min.js diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/tests/apptest.go b/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/tests/apptest.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/examples/revelapp/tests/apptest.go rename to vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/tests/apptest.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/json_tags.go b/vendor/github.com/bugsnag/bugsnag-go/json_tags.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/json_tags.go rename to vendor/github.com/bugsnag/bugsnag-go/json_tags.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/metadata.go b/vendor/github.com/bugsnag/bugsnag-go/metadata.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/metadata.go rename to vendor/github.com/bugsnag/bugsnag-go/metadata.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/metadata_test.go b/vendor/github.com/bugsnag/bugsnag-go/metadata_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/metadata_test.go rename to vendor/github.com/bugsnag/bugsnag-go/metadata_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/middleware.go b/vendor/github.com/bugsnag/bugsnag-go/middleware.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/middleware.go rename to vendor/github.com/bugsnag/bugsnag-go/middleware.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/middleware_test.go b/vendor/github.com/bugsnag/bugsnag-go/middleware_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/middleware_test.go rename to vendor/github.com/bugsnag/bugsnag-go/middleware_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/notifier.go b/vendor/github.com/bugsnag/bugsnag-go/notifier.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/notifier.go rename to vendor/github.com/bugsnag/bugsnag-go/notifier.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/panicwrap.go b/vendor/github.com/bugsnag/bugsnag-go/panicwrap.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/panicwrap.go rename to vendor/github.com/bugsnag/bugsnag-go/panicwrap.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/panicwrap_test.go b/vendor/github.com/bugsnag/bugsnag-go/panicwrap_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/panicwrap_test.go rename to vendor/github.com/bugsnag/bugsnag-go/panicwrap_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/payload.go b/vendor/github.com/bugsnag/bugsnag-go/payload.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/payload.go rename to vendor/github.com/bugsnag/bugsnag-go/payload.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/revel/bugsnagrevel.go b/vendor/github.com/bugsnag/bugsnag-go/revel/bugsnagrevel.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/bugsnag-go/revel/bugsnagrevel.go rename to vendor/github.com/bugsnag/bugsnag-go/revel/bugsnagrevel.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/osext/LICENSE b/vendor/github.com/bugsnag/osext/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/osext/LICENSE rename to vendor/github.com/bugsnag/osext/LICENSE diff --git a/Godeps/_workspace/src/github.com/bugsnag/osext/osext.go b/vendor/github.com/bugsnag/osext/osext.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/osext/osext.go rename to vendor/github.com/bugsnag/osext/osext.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/osext/osext_plan9.go b/vendor/github.com/bugsnag/osext/osext_plan9.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/osext/osext_plan9.go rename to vendor/github.com/bugsnag/osext/osext_plan9.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/osext/osext_procfs.go b/vendor/github.com/bugsnag/osext/osext_procfs.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/osext/osext_procfs.go rename to vendor/github.com/bugsnag/osext/osext_procfs.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/osext/osext_sysctl.go b/vendor/github.com/bugsnag/osext/osext_sysctl.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/osext/osext_sysctl.go rename to vendor/github.com/bugsnag/osext/osext_sysctl.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/osext/osext_test.go b/vendor/github.com/bugsnag/osext/osext_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/osext/osext_test.go rename to vendor/github.com/bugsnag/osext/osext_test.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/osext/osext_windows.go b/vendor/github.com/bugsnag/osext/osext_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/osext/osext_windows.go rename to vendor/github.com/bugsnag/osext/osext_windows.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/panicwrap/LICENSE b/vendor/github.com/bugsnag/panicwrap/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/panicwrap/LICENSE rename to vendor/github.com/bugsnag/panicwrap/LICENSE diff --git a/Godeps/_workspace/src/github.com/bugsnag/panicwrap/README.md b/vendor/github.com/bugsnag/panicwrap/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/panicwrap/README.md rename to vendor/github.com/bugsnag/panicwrap/README.md diff --git a/Godeps/_workspace/src/github.com/bugsnag/panicwrap/dup2.go b/vendor/github.com/bugsnag/panicwrap/dup2.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/panicwrap/dup2.go rename to vendor/github.com/bugsnag/panicwrap/dup2.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/panicwrap/dup3.go b/vendor/github.com/bugsnag/panicwrap/dup3.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/panicwrap/dup3.go rename to vendor/github.com/bugsnag/panicwrap/dup3.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/panicwrap/monitor.go b/vendor/github.com/bugsnag/panicwrap/monitor.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/panicwrap/monitor.go rename to vendor/github.com/bugsnag/panicwrap/monitor.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/panicwrap/monitor_windows.go b/vendor/github.com/bugsnag/panicwrap/monitor_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/panicwrap/monitor_windows.go rename to vendor/github.com/bugsnag/panicwrap/monitor_windows.go diff --git a/Godeps/_workspace/src/github.com/bugsnag/panicwrap/panicwrap.go b/vendor/github.com/bugsnag/panicwrap/panicwrap.go similarity index 100% rename from Godeps/_workspace/src/github.com/bugsnag/panicwrap/panicwrap.go rename to vendor/github.com/bugsnag/panicwrap/panicwrap.go diff --git a/Godeps/_workspace/src/github.com/cpuguy83/go-md2man/md2man/md2man.go b/vendor/github.com/cpuguy83/go-md2man/md2man/md2man.go similarity index 100% rename from Godeps/_workspace/src/github.com/cpuguy83/go-md2man/md2man/md2man.go rename to vendor/github.com/cpuguy83/go-md2man/md2man/md2man.go diff --git a/Godeps/_workspace/src/github.com/cpuguy83/go-md2man/md2man/roff.go b/vendor/github.com/cpuguy83/go-md2man/md2man/roff.go similarity index 100% rename from Godeps/_workspace/src/github.com/cpuguy83/go-md2man/md2man/roff.go rename to vendor/github.com/cpuguy83/go-md2man/md2man/roff.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/context/context.go b/vendor/github.com/docker/distribution/context/context.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/context/context.go rename to vendor/github.com/docker/distribution/context/context.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/context/doc.go b/vendor/github.com/docker/distribution/context/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/context/doc.go rename to vendor/github.com/docker/distribution/context/doc.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/context/http.go b/vendor/github.com/docker/distribution/context/http.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/context/http.go rename to vendor/github.com/docker/distribution/context/http.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/context/http_test.go b/vendor/github.com/docker/distribution/context/http_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/context/http_test.go rename to vendor/github.com/docker/distribution/context/http_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/context/logger.go b/vendor/github.com/docker/distribution/context/logger.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/context/logger.go rename to vendor/github.com/docker/distribution/context/logger.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/context/trace.go b/vendor/github.com/docker/distribution/context/trace.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/context/trace.go rename to vendor/github.com/docker/distribution/context/trace.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/context/trace_test.go b/vendor/github.com/docker/distribution/context/trace_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/context/trace_test.go rename to vendor/github.com/docker/distribution/context/trace_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/context/util.go b/vendor/github.com/docker/distribution/context/util.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/context/util.go rename to vendor/github.com/docker/distribution/context/util.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/digest.go b/vendor/github.com/docker/distribution/digest/digest.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/digest.go rename to vendor/github.com/docker/distribution/digest/digest.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/digest_test.go b/vendor/github.com/docker/distribution/digest/digest_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/digest_test.go rename to vendor/github.com/docker/distribution/digest/digest_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/digester.go b/vendor/github.com/docker/distribution/digest/digester.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/digester.go rename to vendor/github.com/docker/distribution/digest/digester.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/digester_resumable_test.go b/vendor/github.com/docker/distribution/digest/digester_resumable_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/digester_resumable_test.go rename to vendor/github.com/docker/distribution/digest/digester_resumable_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/doc.go b/vendor/github.com/docker/distribution/digest/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/doc.go rename to vendor/github.com/docker/distribution/digest/doc.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/set.go b/vendor/github.com/docker/distribution/digest/set.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/set.go rename to vendor/github.com/docker/distribution/digest/set.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/set_test.go b/vendor/github.com/docker/distribution/digest/set_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/set_test.go rename to vendor/github.com/docker/distribution/digest/set_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/tarsum.go b/vendor/github.com/docker/distribution/digest/tarsum.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/tarsum.go rename to vendor/github.com/docker/distribution/digest/tarsum.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/tarsum_test.go b/vendor/github.com/docker/distribution/digest/tarsum_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/tarsum_test.go rename to vendor/github.com/docker/distribution/digest/tarsum_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/verifiers.go b/vendor/github.com/docker/distribution/digest/verifiers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/verifiers.go rename to vendor/github.com/docker/distribution/digest/verifiers.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/verifiers_test.go b/vendor/github.com/docker/distribution/digest/verifiers_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/verifiers_test.go rename to vendor/github.com/docker/distribution/digest/verifiers_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/health/api/api.go b/vendor/github.com/docker/distribution/health/api/api.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/health/api/api.go rename to vendor/github.com/docker/distribution/health/api/api.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/health/api/api_test.go b/vendor/github.com/docker/distribution/health/api/api_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/health/api/api_test.go rename to vendor/github.com/docker/distribution/health/api/api_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/health/checks/checks.go b/vendor/github.com/docker/distribution/health/checks/checks.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/health/checks/checks.go rename to vendor/github.com/docker/distribution/health/checks/checks.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/health/checks/checks_test.go b/vendor/github.com/docker/distribution/health/checks/checks_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/health/checks/checks_test.go rename to vendor/github.com/docker/distribution/health/checks/checks_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/health/doc.go b/vendor/github.com/docker/distribution/health/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/health/doc.go rename to vendor/github.com/docker/distribution/health/doc.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/health/health.go b/vendor/github.com/docker/distribution/health/health.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/health/health.go rename to vendor/github.com/docker/distribution/health/health.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/health/health_test.go b/vendor/github.com/docker/distribution/health/health_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/health/health_test.go rename to vendor/github.com/docker/distribution/health/health_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/errcode/errors.go b/vendor/github.com/docker/distribution/registry/api/errcode/errors.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/errcode/errors.go rename to vendor/github.com/docker/distribution/registry/api/errcode/errors.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/errcode/errors_test.go b/vendor/github.com/docker/distribution/registry/api/errcode/errors_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/errcode/errors_test.go rename to vendor/github.com/docker/distribution/registry/api/errcode/errors_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/errcode/handler.go b/vendor/github.com/docker/distribution/registry/api/errcode/handler.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/errcode/handler.go rename to vendor/github.com/docker/distribution/registry/api/errcode/handler.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/errcode/register.go b/vendor/github.com/docker/distribution/registry/api/errcode/register.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/errcode/register.go rename to vendor/github.com/docker/distribution/registry/api/errcode/register.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/descriptors.go b/vendor/github.com/docker/distribution/registry/api/v2/descriptors.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/descriptors.go rename to vendor/github.com/docker/distribution/registry/api/v2/descriptors.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/doc.go b/vendor/github.com/docker/distribution/registry/api/v2/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/doc.go rename to vendor/github.com/docker/distribution/registry/api/v2/doc.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/errors.go b/vendor/github.com/docker/distribution/registry/api/v2/errors.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/errors.go rename to vendor/github.com/docker/distribution/registry/api/v2/errors.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/names.go b/vendor/github.com/docker/distribution/registry/api/v2/names.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/names.go rename to vendor/github.com/docker/distribution/registry/api/v2/names.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/names_test.go b/vendor/github.com/docker/distribution/registry/api/v2/names_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/names_test.go rename to vendor/github.com/docker/distribution/registry/api/v2/names_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/routes.go b/vendor/github.com/docker/distribution/registry/api/v2/routes.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/routes.go rename to vendor/github.com/docker/distribution/registry/api/v2/routes.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/routes_test.go b/vendor/github.com/docker/distribution/registry/api/v2/routes_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/routes_test.go rename to vendor/github.com/docker/distribution/registry/api/v2/routes_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/urls.go b/vendor/github.com/docker/distribution/registry/api/v2/urls.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/urls.go rename to vendor/github.com/docker/distribution/registry/api/v2/urls.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/urls_test.go b/vendor/github.com/docker/distribution/registry/api/v2/urls_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/api/v2/urls_test.go rename to vendor/github.com/docker/distribution/registry/api/v2/urls_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/auth.go b/vendor/github.com/docker/distribution/registry/auth/auth.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/auth.go rename to vendor/github.com/docker/distribution/registry/auth/auth.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/htpasswd/access.go b/vendor/github.com/docker/distribution/registry/auth/htpasswd/access.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/htpasswd/access.go rename to vendor/github.com/docker/distribution/registry/auth/htpasswd/access.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/htpasswd/access_test.go b/vendor/github.com/docker/distribution/registry/auth/htpasswd/access_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/htpasswd/access_test.go rename to vendor/github.com/docker/distribution/registry/auth/htpasswd/access_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/htpasswd/htpasswd.go b/vendor/github.com/docker/distribution/registry/auth/htpasswd/htpasswd.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/htpasswd/htpasswd.go rename to vendor/github.com/docker/distribution/registry/auth/htpasswd/htpasswd.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/htpasswd/htpasswd_test.go b/vendor/github.com/docker/distribution/registry/auth/htpasswd/htpasswd_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/htpasswd/htpasswd_test.go rename to vendor/github.com/docker/distribution/registry/auth/htpasswd/htpasswd_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/silly/access.go b/vendor/github.com/docker/distribution/registry/auth/silly/access.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/silly/access.go rename to vendor/github.com/docker/distribution/registry/auth/silly/access.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/silly/access_test.go b/vendor/github.com/docker/distribution/registry/auth/silly/access_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/silly/access_test.go rename to vendor/github.com/docker/distribution/registry/auth/silly/access_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/accesscontroller.go b/vendor/github.com/docker/distribution/registry/auth/token/accesscontroller.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/accesscontroller.go rename to vendor/github.com/docker/distribution/registry/auth/token/accesscontroller.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/stringset.go b/vendor/github.com/docker/distribution/registry/auth/token/stringset.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/stringset.go rename to vendor/github.com/docker/distribution/registry/auth/token/stringset.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/token.go b/vendor/github.com/docker/distribution/registry/auth/token/token.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/token.go rename to vendor/github.com/docker/distribution/registry/auth/token/token.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/token_test.go b/vendor/github.com/docker/distribution/registry/auth/token/token_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/token_test.go rename to vendor/github.com/docker/distribution/registry/auth/token/token_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/util.go b/vendor/github.com/docker/distribution/registry/auth/token/util.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/auth/token/util.go rename to vendor/github.com/docker/distribution/registry/auth/token/util.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/api_version.go b/vendor/github.com/docker/distribution/registry/client/auth/api_version.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/api_version.go rename to vendor/github.com/docker/distribution/registry/client/auth/api_version.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/authchallenge.go b/vendor/github.com/docker/distribution/registry/client/auth/authchallenge.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/authchallenge.go rename to vendor/github.com/docker/distribution/registry/client/auth/authchallenge.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/authchallenge_test.go b/vendor/github.com/docker/distribution/registry/client/auth/authchallenge_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/authchallenge_test.go rename to vendor/github.com/docker/distribution/registry/client/auth/authchallenge_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/session.go b/vendor/github.com/docker/distribution/registry/client/auth/session.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/session.go rename to vendor/github.com/docker/distribution/registry/client/auth/session.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/session_test.go b/vendor/github.com/docker/distribution/registry/client/auth/session_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/client/auth/session_test.go rename to vendor/github.com/docker/distribution/registry/client/auth/session_test.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/client/transport/http_reader.go b/vendor/github.com/docker/distribution/registry/client/transport/http_reader.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/client/transport/http_reader.go rename to vendor/github.com/docker/distribution/registry/client/transport/http_reader.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/registry/client/transport/transport.go b/vendor/github.com/docker/distribution/registry/client/transport/transport.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/registry/client/transport/transport.go rename to vendor/github.com/docker/distribution/registry/client/transport/transport.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/uuid/uuid.go b/vendor/github.com/docker/distribution/uuid/uuid.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/uuid/uuid.go rename to vendor/github.com/docker/distribution/uuid/uuid.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/uuid/uuid_test.go b/vendor/github.com/docker/distribution/uuid/uuid_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/uuid/uuid_test.go rename to vendor/github.com/docker/distribution/uuid/uuid_test.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/builder_context.go b/vendor/github.com/docker/docker/pkg/tarsum/builder_context.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/builder_context.go rename to vendor/github.com/docker/docker/pkg/tarsum/builder_context.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/fileinfosums.go b/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/fileinfosums.go rename to vendor/github.com/docker/docker/pkg/tarsum/fileinfosums.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go b/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go rename to vendor/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/tarsum.go b/vendor/github.com/docker/docker/pkg/tarsum/tarsum.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/tarsum.go rename to vendor/github.com/docker/docker/pkg/tarsum/tarsum.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/tarsum_spec.md b/vendor/github.com/docker/docker/pkg/tarsum/tarsum_spec.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/tarsum_spec.md rename to vendor/github.com/docker/docker/pkg/tarsum/tarsum_spec.md diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/tarsum_test.go b/vendor/github.com/docker/docker/pkg/tarsum/tarsum_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/tarsum_test.go rename to vendor/github.com/docker/docker/pkg/tarsum/tarsum_test.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json b/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar b/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json b/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar b/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar b/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar b/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar b/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar b/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/xattr/json b/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/json similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/xattr/json rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/json diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar b/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar rename to vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/versioning.go b/vendor/github.com/docker/docker/pkg/tarsum/versioning.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/versioning.go rename to vendor/github.com/docker/docker/pkg/tarsum/versioning.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/versioning_test.go b/vendor/github.com/docker/docker/pkg/tarsum/versioning_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/versioning_test.go rename to vendor/github.com/docker/docker/pkg/tarsum/versioning_test.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/writercloser.go b/vendor/github.com/docker/docker/pkg/tarsum/writercloser.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/tarsum/writercloser.go rename to vendor/github.com/docker/docker/pkg/tarsum/writercloser.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go b/vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go rename to vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go b/vendor/github.com/docker/docker/pkg/term/tc_other.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go rename to vendor/github.com/docker/docker/pkg/term/tc_other.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go b/vendor/github.com/docker/docker/pkg/term/term.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go rename to vendor/github.com/docker/docker/pkg/term/term.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go b/vendor/github.com/docker/docker/pkg/term/term_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go rename to vendor/github.com/docker/docker/pkg/term/term_windows.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go b/vendor/github.com/docker/docker/pkg/term/termios_darwin.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go rename to vendor/github.com/docker/docker/pkg/term/termios_darwin.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go b/vendor/github.com/docker/docker/pkg/term/termios_freebsd.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go rename to vendor/github.com/docker/docker/pkg/term/termios_freebsd.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go b/vendor/github.com/docker/docker/pkg/term/termios_linux.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go rename to vendor/github.com/docker/docker/pkg/term/termios_linux.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/console_windows.go b/vendor/github.com/docker/docker/pkg/term/winconsole/console_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/console_windows.go rename to vendor/github.com/docker/docker/pkg/term/winconsole/console_windows.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/console_windows_test.go b/vendor/github.com/docker/docker/pkg/term/winconsole/console_windows_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/console_windows_test.go rename to vendor/github.com/docker/docker/pkg/term/winconsole/console_windows_test.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/term_emulator.go b/vendor/github.com/docker/docker/pkg/term/winconsole/term_emulator.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/term_emulator.go rename to vendor/github.com/docker/docker/pkg/term/winconsole/term_emulator.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/term_emulator_test.go b/vendor/github.com/docker/docker/pkg/term/winconsole/term_emulator_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/term_emulator_test.go rename to vendor/github.com/docker/docker/pkg/term/winconsole/term_emulator_test.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go b/vendor/github.com/docker/go-connections/tlsconfig/config.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go rename to vendor/github.com/docker/go-connections/tlsconfig/config.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go b/vendor/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go rename to vendor/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go b/vendor/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go rename to vendor/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/decode.go b/vendor/github.com/docker/go/canonical/json/decode.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go/canonical/json/decode.go rename to vendor/github.com/docker/go/canonical/json/decode.go diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/encode.go b/vendor/github.com/docker/go/canonical/json/encode.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go/canonical/json/encode.go rename to vendor/github.com/docker/go/canonical/json/encode.go diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/fold.go b/vendor/github.com/docker/go/canonical/json/fold.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go/canonical/json/fold.go rename to vendor/github.com/docker/go/canonical/json/fold.go diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/indent.go b/vendor/github.com/docker/go/canonical/json/indent.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go/canonical/json/indent.go rename to vendor/github.com/docker/go/canonical/json/indent.go diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/scanner.go b/vendor/github.com/docker/go/canonical/json/scanner.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go/canonical/json/scanner.go rename to vendor/github.com/docker/go/canonical/json/scanner.go diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/stream.go b/vendor/github.com/docker/go/canonical/json/stream.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go/canonical/json/stream.go rename to vendor/github.com/docker/go/canonical/json/stream.go diff --git a/Godeps/_workspace/src/github.com/docker/go/canonical/json/tags.go b/vendor/github.com/docker/go/canonical/json/tags.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go/canonical/json/tags.go rename to vendor/github.com/docker/go/canonical/json/tags.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/CONTRIBUTING.md b/vendor/github.com/docker/libtrust/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/CONTRIBUTING.md rename to vendor/github.com/docker/libtrust/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/LICENSE b/vendor/github.com/docker/libtrust/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/LICENSE rename to vendor/github.com/docker/libtrust/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/MAINTAINERS b/vendor/github.com/docker/libtrust/MAINTAINERS similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/MAINTAINERS rename to vendor/github.com/docker/libtrust/MAINTAINERS diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/README.md b/vendor/github.com/docker/libtrust/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/README.md rename to vendor/github.com/docker/libtrust/README.md diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/certificates.go b/vendor/github.com/docker/libtrust/certificates.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/certificates.go rename to vendor/github.com/docker/libtrust/certificates.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/certificates_test.go b/vendor/github.com/docker/libtrust/certificates_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/certificates_test.go rename to vendor/github.com/docker/libtrust/certificates_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/doc.go b/vendor/github.com/docker/libtrust/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/doc.go rename to vendor/github.com/docker/libtrust/doc.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/ec_key.go b/vendor/github.com/docker/libtrust/ec_key.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/ec_key.go rename to vendor/github.com/docker/libtrust/ec_key.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/ec_key_test.go b/vendor/github.com/docker/libtrust/ec_key_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/ec_key_test.go rename to vendor/github.com/docker/libtrust/ec_key_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/filter.go b/vendor/github.com/docker/libtrust/filter.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/filter.go rename to vendor/github.com/docker/libtrust/filter.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/filter_test.go b/vendor/github.com/docker/libtrust/filter_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/filter_test.go rename to vendor/github.com/docker/libtrust/filter_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/hash.go b/vendor/github.com/docker/libtrust/hash.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/hash.go rename to vendor/github.com/docker/libtrust/hash.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/jsonsign.go b/vendor/github.com/docker/libtrust/jsonsign.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/jsonsign.go rename to vendor/github.com/docker/libtrust/jsonsign.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/jsonsign_test.go b/vendor/github.com/docker/libtrust/jsonsign_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/jsonsign_test.go rename to vendor/github.com/docker/libtrust/jsonsign_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/key.go b/vendor/github.com/docker/libtrust/key.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/key.go rename to vendor/github.com/docker/libtrust/key.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/key_files.go b/vendor/github.com/docker/libtrust/key_files.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/key_files.go rename to vendor/github.com/docker/libtrust/key_files.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/key_files_test.go b/vendor/github.com/docker/libtrust/key_files_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/key_files_test.go rename to vendor/github.com/docker/libtrust/key_files_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/key_manager.go b/vendor/github.com/docker/libtrust/key_manager.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/key_manager.go rename to vendor/github.com/docker/libtrust/key_manager.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/key_test.go b/vendor/github.com/docker/libtrust/key_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/key_test.go rename to vendor/github.com/docker/libtrust/key_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/rsa_key.go b/vendor/github.com/docker/libtrust/rsa_key.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/rsa_key.go rename to vendor/github.com/docker/libtrust/rsa_key.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/rsa_key_test.go b/vendor/github.com/docker/libtrust/rsa_key_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/rsa_key_test.go rename to vendor/github.com/docker/libtrust/rsa_key_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/testutil/certificates.go b/vendor/github.com/docker/libtrust/testutil/certificates.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/testutil/certificates.go rename to vendor/github.com/docker/libtrust/testutil/certificates.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/README.md b/vendor/github.com/docker/libtrust/tlsdemo/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/README.md rename to vendor/github.com/docker/libtrust/tlsdemo/README.md diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client.go b/vendor/github.com/docker/libtrust/tlsdemo/client.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client.go rename to vendor/github.com/docker/libtrust/tlsdemo/client.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client_data/private_key.pem b/vendor/github.com/docker/libtrust/tlsdemo/client_data/private_key.pem similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client_data/private_key.pem rename to vendor/github.com/docker/libtrust/tlsdemo/client_data/private_key.pem diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client_data/public_key.pem b/vendor/github.com/docker/libtrust/tlsdemo/client_data/public_key.pem similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client_data/public_key.pem rename to vendor/github.com/docker/libtrust/tlsdemo/client_data/public_key.pem diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client_data/trusted_hosts.pem b/vendor/github.com/docker/libtrust/tlsdemo/client_data/trusted_hosts.pem similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client_data/trusted_hosts.pem rename to vendor/github.com/docker/libtrust/tlsdemo/client_data/trusted_hosts.pem diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/gencert.go b/vendor/github.com/docker/libtrust/tlsdemo/gencert.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/gencert.go rename to vendor/github.com/docker/libtrust/tlsdemo/gencert.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/genkeys.go b/vendor/github.com/docker/libtrust/tlsdemo/genkeys.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/genkeys.go rename to vendor/github.com/docker/libtrust/tlsdemo/genkeys.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server.go b/vendor/github.com/docker/libtrust/tlsdemo/server.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server.go rename to vendor/github.com/docker/libtrust/tlsdemo/server.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server_data/private_key.pem b/vendor/github.com/docker/libtrust/tlsdemo/server_data/private_key.pem similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server_data/private_key.pem rename to vendor/github.com/docker/libtrust/tlsdemo/server_data/private_key.pem diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server_data/public_key.pem b/vendor/github.com/docker/libtrust/tlsdemo/server_data/public_key.pem similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server_data/public_key.pem rename to vendor/github.com/docker/libtrust/tlsdemo/server_data/public_key.pem diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server_data/trusted_clients.pem b/vendor/github.com/docker/libtrust/tlsdemo/server_data/trusted_clients.pem similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server_data/trusted_clients.pem rename to vendor/github.com/docker/libtrust/tlsdemo/server_data/trusted_clients.pem diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/graph.go b/vendor/github.com/docker/libtrust/trustgraph/graph.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/graph.go rename to vendor/github.com/docker/libtrust/trustgraph/graph.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/memory_graph.go b/vendor/github.com/docker/libtrust/trustgraph/memory_graph.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/memory_graph.go rename to vendor/github.com/docker/libtrust/trustgraph/memory_graph.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/memory_graph_test.go b/vendor/github.com/docker/libtrust/trustgraph/memory_graph_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/memory_graph_test.go rename to vendor/github.com/docker/libtrust/trustgraph/memory_graph_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/statement.go b/vendor/github.com/docker/libtrust/trustgraph/statement.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/statement.go rename to vendor/github.com/docker/libtrust/trustgraph/statement.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/statement_test.go b/vendor/github.com/docker/libtrust/trustgraph/statement_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/statement_test.go rename to vendor/github.com/docker/libtrust/trustgraph/statement_test.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/util.go b/vendor/github.com/docker/libtrust/util.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/util.go rename to vendor/github.com/docker/libtrust/util.go diff --git a/Godeps/_workspace/src/github.com/docker/libtrust/util_test.go b/vendor/github.com/docker/libtrust/util_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libtrust/util_test.go rename to vendor/github.com/docker/libtrust/util_test.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/.gitignore b/vendor/github.com/dvsekhvalnov/jose2go/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/.gitignore rename to vendor/github.com/dvsekhvalnov/jose2go/.gitignore diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/LICENSE b/vendor/github.com/dvsekhvalnov/jose2go/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/LICENSE rename to vendor/github.com/dvsekhvalnov/jose2go/LICENSE diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/README.md b/vendor/github.com/dvsekhvalnov/jose2go/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/README.md rename to vendor/github.com/dvsekhvalnov/jose2go/README.md diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes/ecb.go b/vendor/github.com/dvsekhvalnov/jose2go/aes/ecb.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes/ecb.go rename to vendor/github.com/dvsekhvalnov/jose2go/aes/ecb.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes/key_wrap.go b/vendor/github.com/dvsekhvalnov/jose2go/aes/key_wrap.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes/key_wrap.go rename to vendor/github.com/dvsekhvalnov/jose2go/aes/key_wrap.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes_cbc_hmac.go b/vendor/github.com/dvsekhvalnov/jose2go/aes_cbc_hmac.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes_cbc_hmac.go rename to vendor/github.com/dvsekhvalnov/jose2go/aes_cbc_hmac.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes_gcm.go b/vendor/github.com/dvsekhvalnov/jose2go/aes_gcm.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes_gcm.go rename to vendor/github.com/dvsekhvalnov/jose2go/aes_gcm.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes_gcm_kw.go b/vendor/github.com/dvsekhvalnov/jose2go/aes_gcm_kw.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aes_gcm_kw.go rename to vendor/github.com/dvsekhvalnov/jose2go/aes_gcm_kw.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aeskw.go b/vendor/github.com/dvsekhvalnov/jose2go/aeskw.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/aeskw.go rename to vendor/github.com/dvsekhvalnov/jose2go/aeskw.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/arrays/arrays.go b/vendor/github.com/dvsekhvalnov/jose2go/arrays/arrays.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/arrays/arrays.go rename to vendor/github.com/dvsekhvalnov/jose2go/arrays/arrays.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/base64url/base64url.go b/vendor/github.com/dvsekhvalnov/jose2go/base64url/base64url.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/base64url/base64url.go rename to vendor/github.com/dvsekhvalnov/jose2go/base64url/base64url.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/compact/compact.go b/vendor/github.com/dvsekhvalnov/jose2go/compact/compact.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/compact/compact.go rename to vendor/github.com/dvsekhvalnov/jose2go/compact/compact.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/deflate.go b/vendor/github.com/dvsekhvalnov/jose2go/deflate.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/deflate.go rename to vendor/github.com/dvsekhvalnov/jose2go/deflate.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/direct.go b/vendor/github.com/dvsekhvalnov/jose2go/direct.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/direct.go rename to vendor/github.com/dvsekhvalnov/jose2go/direct.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/ecdh.go b/vendor/github.com/dvsekhvalnov/jose2go/ecdh.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/ecdh.go rename to vendor/github.com/dvsekhvalnov/jose2go/ecdh.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/ecdh_aeskw.go b/vendor/github.com/dvsekhvalnov/jose2go/ecdh_aeskw.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/ecdh_aeskw.go rename to vendor/github.com/dvsekhvalnov/jose2go/ecdh_aeskw.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/ecdsa_using_sha.go b/vendor/github.com/dvsekhvalnov/jose2go/ecdsa_using_sha.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/ecdsa_using_sha.go rename to vendor/github.com/dvsekhvalnov/jose2go/ecdsa_using_sha.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/hmac.go b/vendor/github.com/dvsekhvalnov/jose2go/hmac.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/hmac.go rename to vendor/github.com/dvsekhvalnov/jose2go/hmac.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/hmac_using_sha.go b/vendor/github.com/dvsekhvalnov/jose2go/hmac_using_sha.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/hmac_using_sha.go rename to vendor/github.com/dvsekhvalnov/jose2go/hmac_using_sha.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/jose.go b/vendor/github.com/dvsekhvalnov/jose2go/jose.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/jose.go rename to vendor/github.com/dvsekhvalnov/jose2go/jose.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/kdf/nist_sp800_56a.go b/vendor/github.com/dvsekhvalnov/jose2go/kdf/nist_sp800_56a.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/kdf/nist_sp800_56a.go rename to vendor/github.com/dvsekhvalnov/jose2go/kdf/nist_sp800_56a.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/kdf/pbkdf2.go b/vendor/github.com/dvsekhvalnov/jose2go/kdf/pbkdf2.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/kdf/pbkdf2.go rename to vendor/github.com/dvsekhvalnov/jose2go/kdf/pbkdf2.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_cert.pem b/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_cert.pem similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_cert.pem rename to vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_cert.pem diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.key b/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.key similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.key rename to vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.key diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.pem b/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.pem similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.pem rename to vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.pem diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_public.key b/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_public.key similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_public.key rename to vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_public.key diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ecc.go b/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ecc.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/ecc/ecc.go rename to vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ecc.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.key b/vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.key similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.key rename to vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.key diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.pem b/vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.pem similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.pem rename to vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/priv.pem diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.key b/vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.key similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.key rename to vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.key diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.pem b/vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.pem similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.pem rename to vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/pub.pem diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/rsa.go b/vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/rsa.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/keys/rsa/rsa.go rename to vendor/github.com/dvsekhvalnov/jose2go/keys/rsa/rsa.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/padding/align.go b/vendor/github.com/dvsekhvalnov/jose2go/padding/align.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/padding/align.go rename to vendor/github.com/dvsekhvalnov/jose2go/padding/align.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/padding/pkcs7.go b/vendor/github.com/dvsekhvalnov/jose2go/padding/pkcs7.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/padding/pkcs7.go rename to vendor/github.com/dvsekhvalnov/jose2go/padding/pkcs7.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/pbse2_hmac_aeskw.go b/vendor/github.com/dvsekhvalnov/jose2go/pbse2_hmac_aeskw.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/pbse2_hmac_aeskw.go rename to vendor/github.com/dvsekhvalnov/jose2go/pbse2_hmac_aeskw.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/plaintext.go b/vendor/github.com/dvsekhvalnov/jose2go/plaintext.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/plaintext.go rename to vendor/github.com/dvsekhvalnov/jose2go/plaintext.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/rsa_oaep.go b/vendor/github.com/dvsekhvalnov/jose2go/rsa_oaep.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/rsa_oaep.go rename to vendor/github.com/dvsekhvalnov/jose2go/rsa_oaep.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/rsa_pkcs1v15.go b/vendor/github.com/dvsekhvalnov/jose2go/rsa_pkcs1v15.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/rsa_pkcs1v15.go rename to vendor/github.com/dvsekhvalnov/jose2go/rsa_pkcs1v15.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/rsa_using_sha.go b/vendor/github.com/dvsekhvalnov/jose2go/rsa_using_sha.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/rsa_using_sha.go rename to vendor/github.com/dvsekhvalnov/jose2go/rsa_using_sha.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/rsapss_using_sha.go b/vendor/github.com/dvsekhvalnov/jose2go/rsapss_using_sha.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/rsapss_using_sha.go rename to vendor/github.com/dvsekhvalnov/jose2go/rsapss_using_sha.go diff --git a/Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/sha.go b/vendor/github.com/dvsekhvalnov/jose2go/sha.go similarity index 100% rename from Godeps/_workspace/src/github.com/dvsekhvalnov/jose2go/sha.go rename to vendor/github.com/dvsekhvalnov/jose2go/sha.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/.gitignore b/vendor/github.com/go-sql-driver/mysql/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/.gitignore rename to vendor/github.com/go-sql-driver/mysql/.gitignore diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/.travis.yml b/vendor/github.com/go-sql-driver/mysql/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/.travis.yml rename to vendor/github.com/go-sql-driver/mysql/.travis.yml diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/AUTHORS b/vendor/github.com/go-sql-driver/mysql/AUTHORS similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/AUTHORS rename to vendor/github.com/go-sql-driver/mysql/AUTHORS diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/CHANGELOG.md b/vendor/github.com/go-sql-driver/mysql/CHANGELOG.md similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/CHANGELOG.md rename to vendor/github.com/go-sql-driver/mysql/CHANGELOG.md diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/CONTRIBUTING.md b/vendor/github.com/go-sql-driver/mysql/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/CONTRIBUTING.md rename to vendor/github.com/go-sql-driver/mysql/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/LICENSE b/vendor/github.com/go-sql-driver/mysql/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/LICENSE rename to vendor/github.com/go-sql-driver/mysql/LICENSE diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/README.md b/vendor/github.com/go-sql-driver/mysql/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/README.md rename to vendor/github.com/go-sql-driver/mysql/README.md diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/appengine.go b/vendor/github.com/go-sql-driver/mysql/appengine.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/appengine.go rename to vendor/github.com/go-sql-driver/mysql/appengine.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/benchmark_test.go b/vendor/github.com/go-sql-driver/mysql/benchmark_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/benchmark_test.go rename to vendor/github.com/go-sql-driver/mysql/benchmark_test.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/buffer.go b/vendor/github.com/go-sql-driver/mysql/buffer.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/buffer.go rename to vendor/github.com/go-sql-driver/mysql/buffer.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/collations.go b/vendor/github.com/go-sql-driver/mysql/collations.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/collations.go rename to vendor/github.com/go-sql-driver/mysql/collations.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/connection.go b/vendor/github.com/go-sql-driver/mysql/connection.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/connection.go rename to vendor/github.com/go-sql-driver/mysql/connection.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/const.go b/vendor/github.com/go-sql-driver/mysql/const.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/const.go rename to vendor/github.com/go-sql-driver/mysql/const.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/driver.go b/vendor/github.com/go-sql-driver/mysql/driver.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/driver.go rename to vendor/github.com/go-sql-driver/mysql/driver.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/driver_test.go b/vendor/github.com/go-sql-driver/mysql/driver_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/driver_test.go rename to vendor/github.com/go-sql-driver/mysql/driver_test.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/errors.go b/vendor/github.com/go-sql-driver/mysql/errors.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/errors.go rename to vendor/github.com/go-sql-driver/mysql/errors.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/errors_test.go b/vendor/github.com/go-sql-driver/mysql/errors_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/errors_test.go rename to vendor/github.com/go-sql-driver/mysql/errors_test.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/infile.go b/vendor/github.com/go-sql-driver/mysql/infile.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/infile.go rename to vendor/github.com/go-sql-driver/mysql/infile.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/packets.go b/vendor/github.com/go-sql-driver/mysql/packets.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/packets.go rename to vendor/github.com/go-sql-driver/mysql/packets.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/result.go b/vendor/github.com/go-sql-driver/mysql/result.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/result.go rename to vendor/github.com/go-sql-driver/mysql/result.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/rows.go b/vendor/github.com/go-sql-driver/mysql/rows.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/rows.go rename to vendor/github.com/go-sql-driver/mysql/rows.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/statement.go b/vendor/github.com/go-sql-driver/mysql/statement.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/statement.go rename to vendor/github.com/go-sql-driver/mysql/statement.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/transaction.go b/vendor/github.com/go-sql-driver/mysql/transaction.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/transaction.go rename to vendor/github.com/go-sql-driver/mysql/transaction.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/utils.go b/vendor/github.com/go-sql-driver/mysql/utils.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/utils.go rename to vendor/github.com/go-sql-driver/mysql/utils.go diff --git a/Godeps/_workspace/src/github.com/go-sql-driver/mysql/utils_test.go b/vendor/github.com/go-sql-driver/mysql/utils_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/go-sql-driver/mysql/utils_test.go rename to vendor/github.com/go-sql-driver/mysql/utils_test.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/Makefile b/vendor/github.com/golang/protobuf/proto/Makefile similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/Makefile rename to vendor/github.com/golang/protobuf/proto/Makefile diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/clone.go b/vendor/github.com/golang/protobuf/proto/clone.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/clone.go rename to vendor/github.com/golang/protobuf/proto/clone.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/decode.go b/vendor/github.com/golang/protobuf/proto/decode.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/decode.go rename to vendor/github.com/golang/protobuf/proto/decode.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/encode.go b/vendor/github.com/golang/protobuf/proto/encode.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/encode.go rename to vendor/github.com/golang/protobuf/proto/encode.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/equal.go b/vendor/github.com/golang/protobuf/proto/equal.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/equal.go rename to vendor/github.com/golang/protobuf/proto/equal.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/extensions.go b/vendor/github.com/golang/protobuf/proto/extensions.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/extensions.go rename to vendor/github.com/golang/protobuf/proto/extensions.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/lib.go b/vendor/github.com/golang/protobuf/proto/lib.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/lib.go rename to vendor/github.com/golang/protobuf/proto/lib.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/message_set.go b/vendor/github.com/golang/protobuf/proto/message_set.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/message_set.go rename to vendor/github.com/golang/protobuf/proto/message_set.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_reflect.go b/vendor/github.com/golang/protobuf/proto/pointer_reflect.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_reflect.go rename to vendor/github.com/golang/protobuf/proto/pointer_reflect.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_unsafe.go b/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_unsafe.go rename to vendor/github.com/golang/protobuf/proto/pointer_unsafe.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/properties.go b/vendor/github.com/golang/protobuf/proto/properties.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/properties.go rename to vendor/github.com/golang/protobuf/proto/properties.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go b/vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go rename to vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto b/vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.proto similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto rename to vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.proto diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/text.go b/vendor/github.com/golang/protobuf/proto/text.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/text.go rename to vendor/github.com/golang/protobuf/proto/text.go diff --git a/Godeps/_workspace/src/github.com/golang/protobuf/proto/text_parser.go b/vendor/github.com/golang/protobuf/proto/text_parser.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/protobuf/proto/text_parser.go rename to vendor/github.com/golang/protobuf/proto/text_parser.go diff --git a/Godeps/_workspace/src/github.com/google/gofuzz/.travis.yml b/vendor/github.com/google/gofuzz/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/google/gofuzz/.travis.yml rename to vendor/github.com/google/gofuzz/.travis.yml diff --git a/Godeps/_workspace/src/github.com/google/gofuzz/CONTRIBUTING.md b/vendor/github.com/google/gofuzz/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/github.com/google/gofuzz/CONTRIBUTING.md rename to vendor/github.com/google/gofuzz/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/github.com/google/gofuzz/LICENSE b/vendor/github.com/google/gofuzz/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/google/gofuzz/LICENSE rename to vendor/github.com/google/gofuzz/LICENSE diff --git a/Godeps/_workspace/src/github.com/google/gofuzz/README.md b/vendor/github.com/google/gofuzz/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/google/gofuzz/README.md rename to vendor/github.com/google/gofuzz/README.md diff --git a/Godeps/_workspace/src/github.com/google/gofuzz/doc.go b/vendor/github.com/google/gofuzz/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/google/gofuzz/doc.go rename to vendor/github.com/google/gofuzz/doc.go diff --git a/Godeps/_workspace/src/github.com/google/gofuzz/example_test.go b/vendor/github.com/google/gofuzz/example_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/google/gofuzz/example_test.go rename to vendor/github.com/google/gofuzz/example_test.go diff --git a/Godeps/_workspace/src/github.com/google/gofuzz/fuzz.go b/vendor/github.com/google/gofuzz/fuzz.go similarity index 100% rename from Godeps/_workspace/src/github.com/google/gofuzz/fuzz.go rename to vendor/github.com/google/gofuzz/fuzz.go diff --git a/Godeps/_workspace/src/github.com/google/gofuzz/fuzz_test.go b/vendor/github.com/google/gofuzz/fuzz_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/google/gofuzz/fuzz_test.go rename to vendor/github.com/google/gofuzz/fuzz_test.go diff --git a/Godeps/_workspace/src/github.com/gorilla/context/.travis.yml b/vendor/github.com/gorilla/context/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/.travis.yml rename to vendor/github.com/gorilla/context/.travis.yml diff --git a/Godeps/_workspace/src/github.com/gorilla/context/LICENSE b/vendor/github.com/gorilla/context/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/LICENSE rename to vendor/github.com/gorilla/context/LICENSE diff --git a/Godeps/_workspace/src/github.com/gorilla/context/README.md b/vendor/github.com/gorilla/context/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/README.md rename to vendor/github.com/gorilla/context/README.md diff --git a/Godeps/_workspace/src/github.com/gorilla/context/context.go b/vendor/github.com/gorilla/context/context.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/context.go rename to vendor/github.com/gorilla/context/context.go diff --git a/Godeps/_workspace/src/github.com/gorilla/context/context_test.go b/vendor/github.com/gorilla/context/context_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/context_test.go rename to vendor/github.com/gorilla/context/context_test.go diff --git a/Godeps/_workspace/src/github.com/gorilla/context/doc.go b/vendor/github.com/gorilla/context/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/doc.go rename to vendor/github.com/gorilla/context/doc.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/.travis.yml b/vendor/github.com/gorilla/mux/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/.travis.yml rename to vendor/github.com/gorilla/mux/.travis.yml diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/LICENSE b/vendor/github.com/gorilla/mux/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/LICENSE rename to vendor/github.com/gorilla/mux/LICENSE diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/README.md b/vendor/github.com/gorilla/mux/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/README.md rename to vendor/github.com/gorilla/mux/README.md diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/bench_test.go b/vendor/github.com/gorilla/mux/bench_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/bench_test.go rename to vendor/github.com/gorilla/mux/bench_test.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/doc.go b/vendor/github.com/gorilla/mux/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/doc.go rename to vendor/github.com/gorilla/mux/doc.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/mux.go b/vendor/github.com/gorilla/mux/mux.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/mux.go rename to vendor/github.com/gorilla/mux/mux.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go b/vendor/github.com/gorilla/mux/mux_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go rename to vendor/github.com/gorilla/mux/mux_test.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/old_test.go b/vendor/github.com/gorilla/mux/old_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/old_test.go rename to vendor/github.com/gorilla/mux/old_test.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/regexp.go b/vendor/github.com/gorilla/mux/regexp.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/regexp.go rename to vendor/github.com/gorilla/mux/regexp.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/route.go b/vendor/github.com/gorilla/mux/route.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/route.go rename to vendor/github.com/gorilla/mux/route.go diff --git a/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/LICENSE b/vendor/github.com/inconshreveable/mousetrap/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/inconshreveable/mousetrap/LICENSE rename to vendor/github.com/inconshreveable/mousetrap/LICENSE diff --git a/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/README.md b/vendor/github.com/inconshreveable/mousetrap/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/inconshreveable/mousetrap/README.md rename to vendor/github.com/inconshreveable/mousetrap/README.md diff --git a/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_others.go b/vendor/github.com/inconshreveable/mousetrap/trap_others.go similarity index 100% rename from Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_others.go rename to vendor/github.com/inconshreveable/mousetrap/trap_others.go diff --git a/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_windows.go b/vendor/github.com/inconshreveable/mousetrap/trap_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_windows.go rename to vendor/github.com/inconshreveable/mousetrap/trap_windows.go diff --git a/Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_windows_1.4.go b/vendor/github.com/inconshreveable/mousetrap/trap_windows_1.4.go similarity index 100% rename from Godeps/_workspace/src/github.com/inconshreveable/mousetrap/trap_windows_1.4.go rename to vendor/github.com/inconshreveable/mousetrap/trap_windows_1.4.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/License b/vendor/github.com/jinzhu/gorm/License similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/License rename to vendor/github.com/jinzhu/gorm/License diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/README.md b/vendor/github.com/jinzhu/gorm/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/README.md rename to vendor/github.com/jinzhu/gorm/README.md diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/association.go b/vendor/github.com/jinzhu/gorm/association.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/association.go rename to vendor/github.com/jinzhu/gorm/association.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/association_test.go b/vendor/github.com/jinzhu/gorm/association_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/association_test.go rename to vendor/github.com/jinzhu/gorm/association_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/callback.go b/vendor/github.com/jinzhu/gorm/callback.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/callback.go rename to vendor/github.com/jinzhu/gorm/callback.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/callback_create.go b/vendor/github.com/jinzhu/gorm/callback_create.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/callback_create.go rename to vendor/github.com/jinzhu/gorm/callback_create.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/callback_delete.go b/vendor/github.com/jinzhu/gorm/callback_delete.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/callback_delete.go rename to vendor/github.com/jinzhu/gorm/callback_delete.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/callback_query.go b/vendor/github.com/jinzhu/gorm/callback_query.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/callback_query.go rename to vendor/github.com/jinzhu/gorm/callback_query.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/callback_shared.go b/vendor/github.com/jinzhu/gorm/callback_shared.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/callback_shared.go rename to vendor/github.com/jinzhu/gorm/callback_shared.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/callback_test.go b/vendor/github.com/jinzhu/gorm/callback_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/callback_test.go rename to vendor/github.com/jinzhu/gorm/callback_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/callback_update.go b/vendor/github.com/jinzhu/gorm/callback_update.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/callback_update.go rename to vendor/github.com/jinzhu/gorm/callback_update.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/callbacks_test.go b/vendor/github.com/jinzhu/gorm/callbacks_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/callbacks_test.go rename to vendor/github.com/jinzhu/gorm/callbacks_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/common_dialect.go b/vendor/github.com/jinzhu/gorm/common_dialect.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/common_dialect.go rename to vendor/github.com/jinzhu/gorm/common_dialect.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/create_test.go b/vendor/github.com/jinzhu/gorm/create_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/create_test.go rename to vendor/github.com/jinzhu/gorm/create_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/customize_column_test.go b/vendor/github.com/jinzhu/gorm/customize_column_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/customize_column_test.go rename to vendor/github.com/jinzhu/gorm/customize_column_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/delete_test.go b/vendor/github.com/jinzhu/gorm/delete_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/delete_test.go rename to vendor/github.com/jinzhu/gorm/delete_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/dialect.go b/vendor/github.com/jinzhu/gorm/dialect.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/dialect.go rename to vendor/github.com/jinzhu/gorm/dialect.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/doc/development.md b/vendor/github.com/jinzhu/gorm/doc/development.md similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/doc/development.md rename to vendor/github.com/jinzhu/gorm/doc/development.md diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/embedded_struct_test.go b/vendor/github.com/jinzhu/gorm/embedded_struct_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/embedded_struct_test.go rename to vendor/github.com/jinzhu/gorm/embedded_struct_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/errors.go b/vendor/github.com/jinzhu/gorm/errors.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/errors.go rename to vendor/github.com/jinzhu/gorm/errors.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/field.go b/vendor/github.com/jinzhu/gorm/field.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/field.go rename to vendor/github.com/jinzhu/gorm/field.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/foundation.go b/vendor/github.com/jinzhu/gorm/foundation.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/foundation.go rename to vendor/github.com/jinzhu/gorm/foundation.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/images/logger.png b/vendor/github.com/jinzhu/gorm/images/logger.png similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/images/logger.png rename to vendor/github.com/jinzhu/gorm/images/logger.png diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/interface.go b/vendor/github.com/jinzhu/gorm/interface.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/interface.go rename to vendor/github.com/jinzhu/gorm/interface.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/join_table_handler.go b/vendor/github.com/jinzhu/gorm/join_table_handler.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/join_table_handler.go rename to vendor/github.com/jinzhu/gorm/join_table_handler.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/join_table_test.go b/vendor/github.com/jinzhu/gorm/join_table_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/join_table_test.go rename to vendor/github.com/jinzhu/gorm/join_table_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/logger.go b/vendor/github.com/jinzhu/gorm/logger.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/logger.go rename to vendor/github.com/jinzhu/gorm/logger.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/main.go b/vendor/github.com/jinzhu/gorm/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/main.go rename to vendor/github.com/jinzhu/gorm/main.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/main_private.go b/vendor/github.com/jinzhu/gorm/main_private.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/main_private.go rename to vendor/github.com/jinzhu/gorm/main_private.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/main_test.go b/vendor/github.com/jinzhu/gorm/main_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/main_test.go rename to vendor/github.com/jinzhu/gorm/main_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/migration_test.go b/vendor/github.com/jinzhu/gorm/migration_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/migration_test.go rename to vendor/github.com/jinzhu/gorm/migration_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/model.go b/vendor/github.com/jinzhu/gorm/model.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/model.go rename to vendor/github.com/jinzhu/gorm/model.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/model_struct.go b/vendor/github.com/jinzhu/gorm/model_struct.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/model_struct.go rename to vendor/github.com/jinzhu/gorm/model_struct.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/mssql.go b/vendor/github.com/jinzhu/gorm/mssql.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/mssql.go rename to vendor/github.com/jinzhu/gorm/mssql.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/multi_primary_keys_test.go b/vendor/github.com/jinzhu/gorm/multi_primary_keys_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/multi_primary_keys_test.go rename to vendor/github.com/jinzhu/gorm/multi_primary_keys_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/mysql.go b/vendor/github.com/jinzhu/gorm/mysql.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/mysql.go rename to vendor/github.com/jinzhu/gorm/mysql.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/pointer_test.go b/vendor/github.com/jinzhu/gorm/pointer_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/pointer_test.go rename to vendor/github.com/jinzhu/gorm/pointer_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/polymorphic_test.go b/vendor/github.com/jinzhu/gorm/polymorphic_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/polymorphic_test.go rename to vendor/github.com/jinzhu/gorm/polymorphic_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/postgres.go b/vendor/github.com/jinzhu/gorm/postgres.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/postgres.go rename to vendor/github.com/jinzhu/gorm/postgres.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/preload.go b/vendor/github.com/jinzhu/gorm/preload.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/preload.go rename to vendor/github.com/jinzhu/gorm/preload.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/preload_test.go b/vendor/github.com/jinzhu/gorm/preload_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/preload_test.go rename to vendor/github.com/jinzhu/gorm/preload_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/query_test.go b/vendor/github.com/jinzhu/gorm/query_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/query_test.go rename to vendor/github.com/jinzhu/gorm/query_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/scope.go b/vendor/github.com/jinzhu/gorm/scope.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/scope.go rename to vendor/github.com/jinzhu/gorm/scope.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/scope_private.go b/vendor/github.com/jinzhu/gorm/scope_private.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/scope_private.go rename to vendor/github.com/jinzhu/gorm/scope_private.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/scope_test.go b/vendor/github.com/jinzhu/gorm/scope_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/scope_test.go rename to vendor/github.com/jinzhu/gorm/scope_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/search.go b/vendor/github.com/jinzhu/gorm/search.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/search.go rename to vendor/github.com/jinzhu/gorm/search.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/search_test.go b/vendor/github.com/jinzhu/gorm/search_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/search_test.go rename to vendor/github.com/jinzhu/gorm/search_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/slice_test.go b/vendor/github.com/jinzhu/gorm/slice_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/slice_test.go rename to vendor/github.com/jinzhu/gorm/slice_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/sqlite3.go b/vendor/github.com/jinzhu/gorm/sqlite3.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/sqlite3.go rename to vendor/github.com/jinzhu/gorm/sqlite3.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/structs_test.go b/vendor/github.com/jinzhu/gorm/structs_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/structs_test.go rename to vendor/github.com/jinzhu/gorm/structs_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/test_all.sh b/vendor/github.com/jinzhu/gorm/test_all.sh similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/test_all.sh rename to vendor/github.com/jinzhu/gorm/test_all.sh diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/update_test.go b/vendor/github.com/jinzhu/gorm/update_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/update_test.go rename to vendor/github.com/jinzhu/gorm/update_test.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/utils.go b/vendor/github.com/jinzhu/gorm/utils.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/utils.go rename to vendor/github.com/jinzhu/gorm/utils.go diff --git a/Godeps/_workspace/src/github.com/jinzhu/gorm/utils_private.go b/vendor/github.com/jinzhu/gorm/utils_private.go similarity index 100% rename from Godeps/_workspace/src/github.com/jinzhu/gorm/utils_private.go rename to vendor/github.com/jinzhu/gorm/utils_private.go diff --git a/Godeps/_workspace/src/github.com/kr/pretty/.gitignore b/vendor/github.com/kr/pretty/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/.gitignore rename to vendor/github.com/kr/pretty/.gitignore diff --git a/Godeps/_workspace/src/github.com/kr/pretty/License b/vendor/github.com/kr/pretty/License similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/License rename to vendor/github.com/kr/pretty/License diff --git a/Godeps/_workspace/src/github.com/kr/pretty/Readme b/vendor/github.com/kr/pretty/Readme similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/Readme rename to vendor/github.com/kr/pretty/Readme diff --git a/Godeps/_workspace/src/github.com/kr/pretty/diff.go b/vendor/github.com/kr/pretty/diff.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/diff.go rename to vendor/github.com/kr/pretty/diff.go diff --git a/Godeps/_workspace/src/github.com/kr/pretty/diff_test.go b/vendor/github.com/kr/pretty/diff_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/diff_test.go rename to vendor/github.com/kr/pretty/diff_test.go diff --git a/Godeps/_workspace/src/github.com/kr/pretty/example_test.go b/vendor/github.com/kr/pretty/example_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/example_test.go rename to vendor/github.com/kr/pretty/example_test.go diff --git a/Godeps/_workspace/src/github.com/kr/pretty/formatter.go b/vendor/github.com/kr/pretty/formatter.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/formatter.go rename to vendor/github.com/kr/pretty/formatter.go diff --git a/Godeps/_workspace/src/github.com/kr/pretty/formatter_test.go b/vendor/github.com/kr/pretty/formatter_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/formatter_test.go rename to vendor/github.com/kr/pretty/formatter_test.go diff --git a/Godeps/_workspace/src/github.com/kr/pretty/pretty.go b/vendor/github.com/kr/pretty/pretty.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/pretty.go rename to vendor/github.com/kr/pretty/pretty.go diff --git a/Godeps/_workspace/src/github.com/kr/pretty/zero.go b/vendor/github.com/kr/pretty/zero.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/pretty/zero.go rename to vendor/github.com/kr/pretty/zero.go diff --git a/Godeps/_workspace/src/github.com/kr/text/License b/vendor/github.com/kr/text/License similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/License rename to vendor/github.com/kr/text/License diff --git a/Godeps/_workspace/src/github.com/kr/text/Readme b/vendor/github.com/kr/text/Readme similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/Readme rename to vendor/github.com/kr/text/Readme diff --git a/Godeps/_workspace/src/github.com/kr/text/colwriter/Readme b/vendor/github.com/kr/text/colwriter/Readme similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/colwriter/Readme rename to vendor/github.com/kr/text/colwriter/Readme diff --git a/Godeps/_workspace/src/github.com/kr/text/colwriter/column.go b/vendor/github.com/kr/text/colwriter/column.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/colwriter/column.go rename to vendor/github.com/kr/text/colwriter/column.go diff --git a/Godeps/_workspace/src/github.com/kr/text/colwriter/column_test.go b/vendor/github.com/kr/text/colwriter/column_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/colwriter/column_test.go rename to vendor/github.com/kr/text/colwriter/column_test.go diff --git a/Godeps/_workspace/src/github.com/kr/text/doc.go b/vendor/github.com/kr/text/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/doc.go rename to vendor/github.com/kr/text/doc.go diff --git a/Godeps/_workspace/src/github.com/kr/text/indent.go b/vendor/github.com/kr/text/indent.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/indent.go rename to vendor/github.com/kr/text/indent.go diff --git a/Godeps/_workspace/src/github.com/kr/text/indent_test.go b/vendor/github.com/kr/text/indent_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/indent_test.go rename to vendor/github.com/kr/text/indent_test.go diff --git a/Godeps/_workspace/src/github.com/kr/text/mc/Readme b/vendor/github.com/kr/text/mc/Readme similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/mc/Readme rename to vendor/github.com/kr/text/mc/Readme diff --git a/Godeps/_workspace/src/github.com/kr/text/mc/mc.go b/vendor/github.com/kr/text/mc/mc.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/mc/mc.go rename to vendor/github.com/kr/text/mc/mc.go diff --git a/Godeps/_workspace/src/github.com/kr/text/wrap.go b/vendor/github.com/kr/text/wrap.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/wrap.go rename to vendor/github.com/kr/text/wrap.go diff --git a/Godeps/_workspace/src/github.com/kr/text/wrap_test.go b/vendor/github.com/kr/text/wrap_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/text/wrap_test.go rename to vendor/github.com/kr/text/wrap_test.go diff --git a/Godeps/_workspace/src/github.com/lib/pq/hstore/hstore.go b/vendor/github.com/lib/pq/hstore/hstore.go similarity index 100% rename from Godeps/_workspace/src/github.com/lib/pq/hstore/hstore.go rename to vendor/github.com/lib/pq/hstore/hstore.go diff --git a/Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go b/vendor/github.com/lib/pq/hstore/hstore_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go rename to vendor/github.com/lib/pq/hstore/hstore_test.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/.gitignore b/vendor/github.com/magiconair/properties/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/.gitignore rename to vendor/github.com/magiconair/properties/.gitignore diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/.travis.yml b/vendor/github.com/magiconair/properties/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/.travis.yml rename to vendor/github.com/magiconair/properties/.travis.yml diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/LICENSE b/vendor/github.com/magiconair/properties/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/LICENSE rename to vendor/github.com/magiconair/properties/LICENSE diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/README.md b/vendor/github.com/magiconair/properties/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/README.md rename to vendor/github.com/magiconair/properties/README.md diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/benchmark_test.go b/vendor/github.com/magiconair/properties/benchmark_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/benchmark_test.go rename to vendor/github.com/magiconair/properties/benchmark_test.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/doc.go b/vendor/github.com/magiconair/properties/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/doc.go rename to vendor/github.com/magiconair/properties/doc.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/example_test.go b/vendor/github.com/magiconair/properties/example_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/example_test.go rename to vendor/github.com/magiconair/properties/example_test.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/lex.go b/vendor/github.com/magiconair/properties/lex.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/lex.go rename to vendor/github.com/magiconair/properties/lex.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/load.go b/vendor/github.com/magiconair/properties/load.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/load.go rename to vendor/github.com/magiconair/properties/load.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/load_test.go b/vendor/github.com/magiconair/properties/load_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/load_test.go rename to vendor/github.com/magiconair/properties/load_test.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/parser.go b/vendor/github.com/magiconair/properties/parser.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/parser.go rename to vendor/github.com/magiconair/properties/parser.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/properties.go b/vendor/github.com/magiconair/properties/properties.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/properties.go rename to vendor/github.com/magiconair/properties/properties.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/properties_test.go b/vendor/github.com/magiconair/properties/properties_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/properties_test.go rename to vendor/github.com/magiconair/properties/properties_test.go diff --git a/Godeps/_workspace/src/github.com/magiconair/properties/rangecheck.go b/vendor/github.com/magiconair/properties/rangecheck.go similarity index 100% rename from Godeps/_workspace/src/github.com/magiconair/properties/rangecheck.go rename to vendor/github.com/magiconair/properties/rangecheck.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/.gitignore b/vendor/github.com/mattn/go-sqlite3/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/.gitignore rename to vendor/github.com/mattn/go-sqlite3/.gitignore diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/.travis.yml b/vendor/github.com/mattn/go-sqlite3/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/.travis.yml rename to vendor/github.com/mattn/go-sqlite3/.travis.yml diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/LICENSE b/vendor/github.com/mattn/go-sqlite3/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/LICENSE rename to vendor/github.com/mattn/go-sqlite3/LICENSE diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/README.md b/vendor/github.com/mattn/go-sqlite3/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/README.md rename to vendor/github.com/mattn/go-sqlite3/README.md diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/backup.go b/vendor/github.com/mattn/go-sqlite3/backup.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/backup.go rename to vendor/github.com/mattn/go-sqlite3/backup.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/code/sqlite3-binding.c b/vendor/github.com/mattn/go-sqlite3/code/sqlite3-binding.c similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/code/sqlite3-binding.c rename to vendor/github.com/mattn/go-sqlite3/code/sqlite3-binding.c diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/code/sqlite3-binding.h b/vendor/github.com/mattn/go-sqlite3/code/sqlite3-binding.h similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/code/sqlite3-binding.h rename to vendor/github.com/mattn/go-sqlite3/code/sqlite3-binding.h diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/code/sqlite3ext.h b/vendor/github.com/mattn/go-sqlite3/code/sqlite3ext.h similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/code/sqlite3ext.h rename to vendor/github.com/mattn/go-sqlite3/code/sqlite3ext.h diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/doc.go b/vendor/github.com/mattn/go-sqlite3/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/doc.go rename to vendor/github.com/mattn/go-sqlite3/doc.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/error.go b/vendor/github.com/mattn/go-sqlite3/error.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/error.go rename to vendor/github.com/mattn/go-sqlite3/error.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/error_test.go b/vendor/github.com/mattn/go-sqlite3/error_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/error_test.go rename to vendor/github.com/mattn/go-sqlite3/error_test.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3-binding.c b/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3-binding.c rename to vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3-binding.h b/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3-binding.h rename to vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3.go b/vendor/github.com/mattn/go-sqlite3/sqlite3.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3.go rename to vendor/github.com/mattn/go-sqlite3/sqlite3.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_fts3_test.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_fts3_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_fts3_test.go rename to vendor/github.com/mattn/go-sqlite3/sqlite3_fts3_test.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go rename to vendor/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_other.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_other.go rename to vendor/github.com/mattn/go-sqlite3/sqlite3_other.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_test.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_test.go rename to vendor/github.com/mattn/go-sqlite3/sqlite3_test.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_test/sqltest.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_test/sqltest.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_test/sqltest.go rename to vendor/github.com/mattn/go-sqlite3/sqlite3_test/sqltest.go diff --git a/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_windows.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_windows.go rename to vendor/github.com/mattn/go-sqlite3/sqlite3_windows.go diff --git a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go similarity index 100% rename from Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go rename to vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go diff --git a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go rename to vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go diff --git a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go similarity index 100% rename from Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go rename to vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/.gitignore b/vendor/github.com/miekg/pkcs11/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/.gitignore rename to vendor/github.com/miekg/pkcs11/.gitignore diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/LICENSE b/vendor/github.com/miekg/pkcs11/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/LICENSE rename to vendor/github.com/miekg/pkcs11/LICENSE diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/README.md b/vendor/github.com/miekg/pkcs11/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/README.md rename to vendor/github.com/miekg/pkcs11/README.md diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/const.go b/vendor/github.com/miekg/pkcs11/const.go similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/const.go rename to vendor/github.com/miekg/pkcs11/const.go diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/error.go b/vendor/github.com/miekg/pkcs11/error.go similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/error.go rename to vendor/github.com/miekg/pkcs11/error.go diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/hsm.db b/vendor/github.com/miekg/pkcs11/hsm.db similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/hsm.db rename to vendor/github.com/miekg/pkcs11/hsm.db diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/parallel_test.go b/vendor/github.com/miekg/pkcs11/parallel_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/parallel_test.go rename to vendor/github.com/miekg/pkcs11/parallel_test.go diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11.go b/vendor/github.com/miekg/pkcs11/pkcs11.go similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11.go rename to vendor/github.com/miekg/pkcs11/pkcs11.go diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11.h b/vendor/github.com/miekg/pkcs11/pkcs11.h similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11.h rename to vendor/github.com/miekg/pkcs11/pkcs11.h diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11_test.go b/vendor/github.com/miekg/pkcs11/pkcs11_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11_test.go rename to vendor/github.com/miekg/pkcs11/pkcs11_test.go diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11f.h b/vendor/github.com/miekg/pkcs11/pkcs11f.h similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11f.h rename to vendor/github.com/miekg/pkcs11/pkcs11f.h diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11t.h b/vendor/github.com/miekg/pkcs11/pkcs11t.h similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/pkcs11t.h rename to vendor/github.com/miekg/pkcs11/pkcs11t.h diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/softhsm.conf b/vendor/github.com/miekg/pkcs11/softhsm.conf similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/softhsm.conf rename to vendor/github.com/miekg/pkcs11/softhsm.conf diff --git a/Godeps/_workspace/src/github.com/miekg/pkcs11/types.go b/vendor/github.com/miekg/pkcs11/types.go similarity index 100% rename from Godeps/_workspace/src/github.com/miekg/pkcs11/types.go rename to vendor/github.com/miekg/pkcs11/types.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/go-homedir/LICENSE b/vendor/github.com/mitchellh/go-homedir/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/go-homedir/LICENSE rename to vendor/github.com/mitchellh/go-homedir/LICENSE diff --git a/Godeps/_workspace/src/github.com/mitchellh/go-homedir/README.md b/vendor/github.com/mitchellh/go-homedir/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/go-homedir/README.md rename to vendor/github.com/mitchellh/go-homedir/README.md diff --git a/Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir.go b/vendor/github.com/mitchellh/go-homedir/homedir.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir.go rename to vendor/github.com/mitchellh/go-homedir/homedir.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir_test.go b/vendor/github.com/mitchellh/go-homedir/homedir_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir_test.go rename to vendor/github.com/mitchellh/go-homedir/homedir_test.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/.travis.yml b/vendor/github.com/mitchellh/mapstructure/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/.travis.yml rename to vendor/github.com/mitchellh/mapstructure/.travis.yml diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/LICENSE b/vendor/github.com/mitchellh/mapstructure/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/LICENSE rename to vendor/github.com/mitchellh/mapstructure/LICENSE diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/README.md b/vendor/github.com/mitchellh/mapstructure/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/README.md rename to vendor/github.com/mitchellh/mapstructure/README.md diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks.go b/vendor/github.com/mitchellh/mapstructure/decode_hooks.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks.go rename to vendor/github.com/mitchellh/mapstructure/decode_hooks.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks_test.go b/vendor/github.com/mitchellh/mapstructure/decode_hooks_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks_test.go rename to vendor/github.com/mitchellh/mapstructure/decode_hooks_test.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/error.go b/vendor/github.com/mitchellh/mapstructure/error.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/error.go rename to vendor/github.com/mitchellh/mapstructure/error.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure.go b/vendor/github.com/mitchellh/mapstructure/mapstructure.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure.go rename to vendor/github.com/mitchellh/mapstructure/mapstructure.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go b/vendor/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go rename to vendor/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go b/vendor/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go rename to vendor/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_examples_test.go b/vendor/github.com/mitchellh/mapstructure/mapstructure_examples_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_examples_test.go rename to vendor/github.com/mitchellh/mapstructure/mapstructure_examples_test.go diff --git a/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_test.go b/vendor/github.com/mitchellh/mapstructure/mapstructure_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_test.go rename to vendor/github.com/mitchellh/mapstructure/mapstructure_test.go diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/.travis.yml b/vendor/github.com/olekukonko/tablewriter/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/.travis.yml rename to vendor/github.com/olekukonko/tablewriter/.travis.yml diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/LICENCE.md b/vendor/github.com/olekukonko/tablewriter/LICENCE.md similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/LICENCE.md rename to vendor/github.com/olekukonko/tablewriter/LICENCE.md diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/README.md b/vendor/github.com/olekukonko/tablewriter/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/README.md rename to vendor/github.com/olekukonko/tablewriter/README.md diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/csv.go b/vendor/github.com/olekukonko/tablewriter/csv.go similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/csv.go rename to vendor/github.com/olekukonko/tablewriter/csv.go diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/csv2table/README.md b/vendor/github.com/olekukonko/tablewriter/csv2table/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/csv2table/README.md rename to vendor/github.com/olekukonko/tablewriter/csv2table/README.md diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/csv2table/csv2table.go b/vendor/github.com/olekukonko/tablewriter/csv2table/csv2table.go similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/csv2table/csv2table.go rename to vendor/github.com/olekukonko/tablewriter/csv2table/csv2table.go diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/table.go b/vendor/github.com/olekukonko/tablewriter/table.go similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/table.go rename to vendor/github.com/olekukonko/tablewriter/table.go diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/test.csv b/vendor/github.com/olekukonko/tablewriter/test.csv similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/test.csv rename to vendor/github.com/olekukonko/tablewriter/test.csv diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/test_info.csv b/vendor/github.com/olekukonko/tablewriter/test_info.csv similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/test_info.csv rename to vendor/github.com/olekukonko/tablewriter/test_info.csv diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/util.go b/vendor/github.com/olekukonko/tablewriter/util.go similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/util.go rename to vendor/github.com/olekukonko/tablewriter/util.go diff --git a/Godeps/_workspace/src/github.com/olekukonko/tablewriter/wrap.go b/vendor/github.com/olekukonko/tablewriter/wrap.go similarity index 100% rename from Godeps/_workspace/src/github.com/olekukonko/tablewriter/wrap.go rename to vendor/github.com/olekukonko/tablewriter/wrap.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/.gitignore b/vendor/github.com/prometheus/client_golang/prometheus/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/.gitignore rename to vendor/github.com/prometheus/client_golang/prometheus/.gitignore diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/README.md b/vendor/github.com/prometheus/client_golang/prometheus/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/README.md rename to vendor/github.com/prometheus/client_golang/prometheus/README.md diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/collector.go b/vendor/github.com/prometheus/client_golang/prometheus/collector.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/collector.go rename to vendor/github.com/prometheus/client_golang/prometheus/collector.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/counter.go b/vendor/github.com/prometheus/client_golang/prometheus/counter.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/counter.go rename to vendor/github.com/prometheus/client_golang/prometheus/counter.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/desc.go b/vendor/github.com/prometheus/client_golang/prometheus/desc.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/desc.go rename to vendor/github.com/prometheus/client_golang/prometheus/desc.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/doc.go b/vendor/github.com/prometheus/client_golang/prometheus/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/doc.go rename to vendor/github.com/prometheus/client_golang/prometheus/doc.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/expvar.go b/vendor/github.com/prometheus/client_golang/prometheus/expvar.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/expvar.go rename to vendor/github.com/prometheus/client_golang/prometheus/expvar.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/gauge.go b/vendor/github.com/prometheus/client_golang/prometheus/gauge.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/gauge.go rename to vendor/github.com/prometheus/client_golang/prometheus/gauge.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/go_collector.go b/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/go_collector.go rename to vendor/github.com/prometheus/client_golang/prometheus/go_collector.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/histogram.go b/vendor/github.com/prometheus/client_golang/prometheus/histogram.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/histogram.go rename to vendor/github.com/prometheus/client_golang/prometheus/histogram.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/http.go b/vendor/github.com/prometheus/client_golang/prometheus/http.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/http.go rename to vendor/github.com/prometheus/client_golang/prometheus/http.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/metric.go b/vendor/github.com/prometheus/client_golang/prometheus/metric.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/metric.go rename to vendor/github.com/prometheus/client_golang/prometheus/metric.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/process_collector.go b/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/process_collector.go rename to vendor/github.com/prometheus/client_golang/prometheus/process_collector.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/push.go b/vendor/github.com/prometheus/client_golang/prometheus/push.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/push.go rename to vendor/github.com/prometheus/client_golang/prometheus/push.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/registry.go b/vendor/github.com/prometheus/client_golang/prometheus/registry.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/registry.go rename to vendor/github.com/prometheus/client_golang/prometheus/registry.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/summary.go b/vendor/github.com/prometheus/client_golang/prometheus/summary.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/summary.go rename to vendor/github.com/prometheus/client_golang/prometheus/summary.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/untyped.go b/vendor/github.com/prometheus/client_golang/prometheus/untyped.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/untyped.go rename to vendor/github.com/prometheus/client_golang/prometheus/untyped.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/value.go b/vendor/github.com/prometheus/client_golang/prometheus/value.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/value.go rename to vendor/github.com/prometheus/client_golang/prometheus/value.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/vec.go b/vendor/github.com/prometheus/client_golang/prometheus/vec.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_golang/prometheus/vec.go rename to vendor/github.com/prometheus/client_golang/prometheus/vec.go diff --git a/Godeps/_workspace/src/github.com/prometheus/client_model/go/metrics.pb.go b/vendor/github.com/prometheus/client_model/go/metrics.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/client_model/go/metrics.pb.go rename to vendor/github.com/prometheus/client_model/go/metrics.pb.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/decode.go b/vendor/github.com/prometheus/common/expfmt/decode.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/decode.go rename to vendor/github.com/prometheus/common/expfmt/decode.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/encode.go b/vendor/github.com/prometheus/common/expfmt/encode.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/encode.go rename to vendor/github.com/prometheus/common/expfmt/encode.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/expfmt.go b/vendor/github.com/prometheus/common/expfmt/expfmt.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/expfmt.go rename to vendor/github.com/prometheus/common/expfmt/expfmt.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz.go b/vendor/github.com/prometheus/common/expfmt/fuzz.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz.go rename to vendor/github.com/prometheus/common/expfmt/fuzz.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_1 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_1 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_1 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_1 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_2 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_2 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_2 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_2 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_3 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_3 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_3 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_3 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_4 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_4 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_4 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_4 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_12 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_12 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_12 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_12 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_13 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_13 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_13 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_13 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_14 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_14 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_14 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_14 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_19 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_19 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_19 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_19 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_7 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_7 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_7 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_7 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9 b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9 rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9 diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/minimal b/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/fuzz/corpus/minimal rename to vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/json_decode.go b/vendor/github.com/prometheus/common/expfmt/json_decode.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/json_decode.go rename to vendor/github.com/prometheus/common/expfmt/json_decode.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/text_create.go b/vendor/github.com/prometheus/common/expfmt/text_create.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/text_create.go rename to vendor/github.com/prometheus/common/expfmt/text_create.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/expfmt/text_parse.go b/vendor/github.com/prometheus/common/expfmt/text_parse.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/expfmt/text_parse.go rename to vendor/github.com/prometheus/common/expfmt/text_parse.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt b/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt rename to vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt diff --git a/Godeps/_workspace/src/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go b/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go rename to vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/alert.go b/vendor/github.com/prometheus/common/model/alert.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/alert.go rename to vendor/github.com/prometheus/common/model/alert.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/fingerprinting.go b/vendor/github.com/prometheus/common/model/fingerprinting.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/fingerprinting.go rename to vendor/github.com/prometheus/common/model/fingerprinting.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/labels.go b/vendor/github.com/prometheus/common/model/labels.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/labels.go rename to vendor/github.com/prometheus/common/model/labels.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/labelset.go b/vendor/github.com/prometheus/common/model/labelset.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/labelset.go rename to vendor/github.com/prometheus/common/model/labelset.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/metric.go b/vendor/github.com/prometheus/common/model/metric.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/metric.go rename to vendor/github.com/prometheus/common/model/metric.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/model.go b/vendor/github.com/prometheus/common/model/model.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/model.go rename to vendor/github.com/prometheus/common/model/model.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/signature.go b/vendor/github.com/prometheus/common/model/signature.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/signature.go rename to vendor/github.com/prometheus/common/model/signature.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/silence.go b/vendor/github.com/prometheus/common/model/silence.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/silence.go rename to vendor/github.com/prometheus/common/model/silence.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/time.go b/vendor/github.com/prometheus/common/model/time.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/time.go rename to vendor/github.com/prometheus/common/model/time.go diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/value.go b/vendor/github.com/prometheus/common/model/value.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/common/model/value.go rename to vendor/github.com/prometheus/common/model/value.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/.travis.yml b/vendor/github.com/prometheus/procfs/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/.travis.yml rename to vendor/github.com/prometheus/procfs/.travis.yml diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/AUTHORS.md b/vendor/github.com/prometheus/procfs/AUTHORS.md similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/AUTHORS.md rename to vendor/github.com/prometheus/procfs/AUTHORS.md diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/CONTRIBUTING.md b/vendor/github.com/prometheus/procfs/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/CONTRIBUTING.md rename to vendor/github.com/prometheus/procfs/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/LICENSE b/vendor/github.com/prometheus/procfs/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/LICENSE rename to vendor/github.com/prometheus/procfs/LICENSE diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/Makefile b/vendor/github.com/prometheus/procfs/Makefile similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/Makefile rename to vendor/github.com/prometheus/procfs/Makefile diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/NOTICE b/vendor/github.com/prometheus/procfs/NOTICE similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/NOTICE rename to vendor/github.com/prometheus/procfs/NOTICE diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/README.md b/vendor/github.com/prometheus/procfs/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/README.md rename to vendor/github.com/prometheus/procfs/README.md diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/doc.go b/vendor/github.com/prometheus/procfs/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/doc.go rename to vendor/github.com/prometheus/procfs/doc.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/cmdline b/vendor/github.com/prometheus/procfs/fixtures/26231/cmdline similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/cmdline rename to vendor/github.com/prometheus/procfs/fixtures/26231/cmdline diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/exe b/vendor/github.com/prometheus/procfs/fixtures/26231/exe similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/exe rename to vendor/github.com/prometheus/procfs/fixtures/26231/exe diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/0 b/vendor/github.com/prometheus/procfs/fixtures/26231/fd/0 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/0 rename to vendor/github.com/prometheus/procfs/fixtures/26231/fd/0 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/1 b/vendor/github.com/prometheus/procfs/fixtures/26231/fd/1 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/1 rename to vendor/github.com/prometheus/procfs/fixtures/26231/fd/1 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/10 b/vendor/github.com/prometheus/procfs/fixtures/26231/fd/10 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/10 rename to vendor/github.com/prometheus/procfs/fixtures/26231/fd/10 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/2 b/vendor/github.com/prometheus/procfs/fixtures/26231/fd/2 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/2 rename to vendor/github.com/prometheus/procfs/fixtures/26231/fd/2 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/3 b/vendor/github.com/prometheus/procfs/fixtures/26231/fd/3 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/fd/3 rename to vendor/github.com/prometheus/procfs/fixtures/26231/fd/3 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/io b/vendor/github.com/prometheus/procfs/fixtures/26231/io similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/io rename to vendor/github.com/prometheus/procfs/fixtures/26231/io diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/limits b/vendor/github.com/prometheus/procfs/fixtures/26231/limits similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/limits rename to vendor/github.com/prometheus/procfs/fixtures/26231/limits diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/stat b/vendor/github.com/prometheus/procfs/fixtures/26231/stat similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26231/stat rename to vendor/github.com/prometheus/procfs/fixtures/26231/stat diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/cmdline b/vendor/github.com/prometheus/procfs/fixtures/26232/cmdline similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/cmdline rename to vendor/github.com/prometheus/procfs/fixtures/26232/cmdline diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/0 b/vendor/github.com/prometheus/procfs/fixtures/26232/fd/0 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/0 rename to vendor/github.com/prometheus/procfs/fixtures/26232/fd/0 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/1 b/vendor/github.com/prometheus/procfs/fixtures/26232/fd/1 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/1 rename to vendor/github.com/prometheus/procfs/fixtures/26232/fd/1 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/2 b/vendor/github.com/prometheus/procfs/fixtures/26232/fd/2 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/2 rename to vendor/github.com/prometheus/procfs/fixtures/26232/fd/2 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/3 b/vendor/github.com/prometheus/procfs/fixtures/26232/fd/3 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/3 rename to vendor/github.com/prometheus/procfs/fixtures/26232/fd/3 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/4 b/vendor/github.com/prometheus/procfs/fixtures/26232/fd/4 similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/fd/4 rename to vendor/github.com/prometheus/procfs/fixtures/26232/fd/4 diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/limits b/vendor/github.com/prometheus/procfs/fixtures/26232/limits similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/limits rename to vendor/github.com/prometheus/procfs/fixtures/26232/limits diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/stat b/vendor/github.com/prometheus/procfs/fixtures/26232/stat similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/26232/stat rename to vendor/github.com/prometheus/procfs/fixtures/26232/stat diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/584/stat b/vendor/github.com/prometheus/procfs/fixtures/584/stat similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/584/stat rename to vendor/github.com/prometheus/procfs/fixtures/584/stat diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/mdstat b/vendor/github.com/prometheus/procfs/fixtures/mdstat similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/mdstat rename to vendor/github.com/prometheus/procfs/fixtures/mdstat diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/net/ip_vs b/vendor/github.com/prometheus/procfs/fixtures/net/ip_vs similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/net/ip_vs rename to vendor/github.com/prometheus/procfs/fixtures/net/ip_vs diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/net/ip_vs_stats b/vendor/github.com/prometheus/procfs/fixtures/net/ip_vs_stats similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/net/ip_vs_stats rename to vendor/github.com/prometheus/procfs/fixtures/net/ip_vs_stats diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/self b/vendor/github.com/prometheus/procfs/fixtures/self similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/self rename to vendor/github.com/prometheus/procfs/fixtures/self diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/stat b/vendor/github.com/prometheus/procfs/fixtures/stat similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/stat rename to vendor/github.com/prometheus/procfs/fixtures/stat diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/README b/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/README similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/README rename to vendor/github.com/prometheus/procfs/fixtures/symlinktargets/README diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/abc b/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/abc similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/abc rename to vendor/github.com/prometheus/procfs/fixtures/symlinktargets/abc diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/def b/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/def similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/def rename to vendor/github.com/prometheus/procfs/fixtures/symlinktargets/def diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/ghi b/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/ghi similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/ghi rename to vendor/github.com/prometheus/procfs/fixtures/symlinktargets/ghi diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/uvw b/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/uvw similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/uvw rename to vendor/github.com/prometheus/procfs/fixtures/symlinktargets/uvw diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/xyz b/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/xyz similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fixtures/symlinktargets/xyz rename to vendor/github.com/prometheus/procfs/fixtures/symlinktargets/xyz diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/fs.go b/vendor/github.com/prometheus/procfs/fs.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/fs.go rename to vendor/github.com/prometheus/procfs/fs.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/ipvs.go b/vendor/github.com/prometheus/procfs/ipvs.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/ipvs.go rename to vendor/github.com/prometheus/procfs/ipvs.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/mdstat.go b/vendor/github.com/prometheus/procfs/mdstat.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/mdstat.go rename to vendor/github.com/prometheus/procfs/mdstat.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/proc.go b/vendor/github.com/prometheus/procfs/proc.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/proc.go rename to vendor/github.com/prometheus/procfs/proc.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/proc_io.go b/vendor/github.com/prometheus/procfs/proc_io.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/proc_io.go rename to vendor/github.com/prometheus/procfs/proc_io.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/proc_limits.go b/vendor/github.com/prometheus/procfs/proc_limits.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/proc_limits.go rename to vendor/github.com/prometheus/procfs/proc_limits.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/proc_stat.go b/vendor/github.com/prometheus/procfs/proc_stat.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/proc_stat.go rename to vendor/github.com/prometheus/procfs/proc_stat.go diff --git a/Godeps/_workspace/src/github.com/prometheus/procfs/stat.go b/vendor/github.com/prometheus/procfs/stat.go similarity index 100% rename from Godeps/_workspace/src/github.com/prometheus/procfs/stat.go rename to vendor/github.com/prometheus/procfs/stat.go diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/.gitignore b/vendor/github.com/russross/blackfriday/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/.gitignore rename to vendor/github.com/russross/blackfriday/.gitignore diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/.travis.yml b/vendor/github.com/russross/blackfriday/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/.travis.yml rename to vendor/github.com/russross/blackfriday/.travis.yml diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/LICENSE.txt b/vendor/github.com/russross/blackfriday/LICENSE.txt similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/LICENSE.txt rename to vendor/github.com/russross/blackfriday/LICENSE.txt diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/README.md b/vendor/github.com/russross/blackfriday/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/README.md rename to vendor/github.com/russross/blackfriday/README.md diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/block.go b/vendor/github.com/russross/blackfriday/block.go similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/block.go rename to vendor/github.com/russross/blackfriday/block.go diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/html.go b/vendor/github.com/russross/blackfriday/html.go similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/html.go rename to vendor/github.com/russross/blackfriday/html.go diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/inline.go b/vendor/github.com/russross/blackfriday/inline.go similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/inline.go rename to vendor/github.com/russross/blackfriday/inline.go diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/latex.go b/vendor/github.com/russross/blackfriday/latex.go similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/latex.go rename to vendor/github.com/russross/blackfriday/latex.go diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/markdown.go b/vendor/github.com/russross/blackfriday/markdown.go similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/markdown.go rename to vendor/github.com/russross/blackfriday/markdown.go diff --git a/Godeps/_workspace/src/github.com/russross/blackfriday/smartypants.go b/vendor/github.com/russross/blackfriday/smartypants.go similarity index 100% rename from Godeps/_workspace/src/github.com/russross/blackfriday/smartypants.go rename to vendor/github.com/russross/blackfriday/smartypants.go diff --git a/Godeps/_workspace/src/github.com/shurcooL/sanitized_anchor_name/.travis.yml b/vendor/github.com/shurcooL/sanitized_anchor_name/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/shurcooL/sanitized_anchor_name/.travis.yml rename to vendor/github.com/shurcooL/sanitized_anchor_name/.travis.yml diff --git a/Godeps/_workspace/src/github.com/shurcooL/sanitized_anchor_name/README.md b/vendor/github.com/shurcooL/sanitized_anchor_name/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/shurcooL/sanitized_anchor_name/README.md rename to vendor/github.com/shurcooL/sanitized_anchor_name/README.md diff --git a/Godeps/_workspace/src/github.com/shurcooL/sanitized_anchor_name/main.go b/vendor/github.com/shurcooL/sanitized_anchor_name/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/shurcooL/sanitized_anchor_name/main.go rename to vendor/github.com/shurcooL/sanitized_anchor_name/main.go diff --git a/Godeps/_workspace/src/github.com/spf13/cast/.gitignore b/vendor/github.com/spf13/cast/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cast/.gitignore rename to vendor/github.com/spf13/cast/.gitignore diff --git a/Godeps/_workspace/src/github.com/spf13/cast/LICENSE b/vendor/github.com/spf13/cast/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cast/LICENSE rename to vendor/github.com/spf13/cast/LICENSE diff --git a/Godeps/_workspace/src/github.com/spf13/cast/README.md b/vendor/github.com/spf13/cast/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cast/README.md rename to vendor/github.com/spf13/cast/README.md diff --git a/Godeps/_workspace/src/github.com/spf13/cast/cast.go b/vendor/github.com/spf13/cast/cast.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cast/cast.go rename to vendor/github.com/spf13/cast/cast.go diff --git a/Godeps/_workspace/src/github.com/spf13/cast/cast_test.go b/vendor/github.com/spf13/cast/cast_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cast/cast_test.go rename to vendor/github.com/spf13/cast/cast_test.go diff --git a/Godeps/_workspace/src/github.com/spf13/cast/caste.go b/vendor/github.com/spf13/cast/caste.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cast/caste.go rename to vendor/github.com/spf13/cast/caste.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/.gitignore b/vendor/github.com/spf13/cobra/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/.gitignore rename to vendor/github.com/spf13/cobra/.gitignore diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/.mailmap b/vendor/github.com/spf13/cobra/.mailmap similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/.mailmap rename to vendor/github.com/spf13/cobra/.mailmap diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/.travis.yml b/vendor/github.com/spf13/cobra/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/.travis.yml rename to vendor/github.com/spf13/cobra/.travis.yml diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/LICENSE.txt b/vendor/github.com/spf13/cobra/LICENSE.txt similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/LICENSE.txt rename to vendor/github.com/spf13/cobra/LICENSE.txt diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/README.md b/vendor/github.com/spf13/cobra/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/README.md rename to vendor/github.com/spf13/cobra/README.md diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/bash_completions.go b/vendor/github.com/spf13/cobra/bash_completions.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/bash_completions.go rename to vendor/github.com/spf13/cobra/bash_completions.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/bash_completions.md b/vendor/github.com/spf13/cobra/bash_completions.md similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/bash_completions.md rename to vendor/github.com/spf13/cobra/bash_completions.md diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/cobra.go b/vendor/github.com/spf13/cobra/cobra.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/cobra.go rename to vendor/github.com/spf13/cobra/cobra.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/add.go b/vendor/github.com/spf13/cobra/cobra/cmd/add.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/add.go rename to vendor/github.com/spf13/cobra/cobra/cmd/add.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/helpers.go b/vendor/github.com/spf13/cobra/cobra/cmd/helpers.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/helpers.go rename to vendor/github.com/spf13/cobra/cobra/cmd/helpers.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/init.go b/vendor/github.com/spf13/cobra/cobra/cmd/init.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/init.go rename to vendor/github.com/spf13/cobra/cobra/cmd/init.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/licenses.go b/vendor/github.com/spf13/cobra/cobra/cmd/licenses.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/licenses.go rename to vendor/github.com/spf13/cobra/cobra/cmd/licenses.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/root.go b/vendor/github.com/spf13/cobra/cobra/cmd/root.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/cobra/cmd/root.go rename to vendor/github.com/spf13/cobra/cobra/cmd/root.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/cobra/main.go b/vendor/github.com/spf13/cobra/cobra/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/cobra/main.go rename to vendor/github.com/spf13/cobra/cobra/main.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/command.go b/vendor/github.com/spf13/cobra/command.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/command.go rename to vendor/github.com/spf13/cobra/command.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/command_notwin.go b/vendor/github.com/spf13/cobra/command_notwin.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/command_notwin.go rename to vendor/github.com/spf13/cobra/command_notwin.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/command_win.go b/vendor/github.com/spf13/cobra/command_win.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/command_win.go rename to vendor/github.com/spf13/cobra/command_win.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/doc/man_docs.go b/vendor/github.com/spf13/cobra/doc/man_docs.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/doc/man_docs.go rename to vendor/github.com/spf13/cobra/doc/man_docs.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/doc/man_docs.md b/vendor/github.com/spf13/cobra/doc/man_docs.md similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/doc/man_docs.md rename to vendor/github.com/spf13/cobra/doc/man_docs.md diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/doc/md_docs.go b/vendor/github.com/spf13/cobra/doc/md_docs.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/doc/md_docs.go rename to vendor/github.com/spf13/cobra/doc/md_docs.go diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/doc/md_docs.md b/vendor/github.com/spf13/cobra/doc/md_docs.md similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/doc/md_docs.md rename to vendor/github.com/spf13/cobra/doc/md_docs.md diff --git a/Godeps/_workspace/src/github.com/spf13/cobra/doc/util.go b/vendor/github.com/spf13/cobra/doc/util.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/cobra/doc/util.go rename to vendor/github.com/spf13/cobra/doc/util.go diff --git a/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/.gitignore b/vendor/github.com/spf13/jwalterweatherman/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/jwalterweatherman/.gitignore rename to vendor/github.com/spf13/jwalterweatherman/.gitignore diff --git a/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/LICENSE b/vendor/github.com/spf13/jwalterweatherman/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/jwalterweatherman/LICENSE rename to vendor/github.com/spf13/jwalterweatherman/LICENSE diff --git a/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/README.md b/vendor/github.com/spf13/jwalterweatherman/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/jwalterweatherman/README.md rename to vendor/github.com/spf13/jwalterweatherman/README.md diff --git a/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/jww_test.go b/vendor/github.com/spf13/jwalterweatherman/jww_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/jwalterweatherman/jww_test.go rename to vendor/github.com/spf13/jwalterweatherman/jww_test.go diff --git a/Godeps/_workspace/src/github.com/spf13/jwalterweatherman/thatswhyyoualwaysleaveanote.go b/vendor/github.com/spf13/jwalterweatherman/thatswhyyoualwaysleaveanote.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/jwalterweatherman/thatswhyyoualwaysleaveanote.go rename to vendor/github.com/spf13/jwalterweatherman/thatswhyyoualwaysleaveanote.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/.travis.yml b/vendor/github.com/spf13/pflag/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/.travis.yml rename to vendor/github.com/spf13/pflag/.travis.yml diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/LICENSE b/vendor/github.com/spf13/pflag/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/LICENSE rename to vendor/github.com/spf13/pflag/LICENSE diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/README.md b/vendor/github.com/spf13/pflag/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/README.md rename to vendor/github.com/spf13/pflag/README.md diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/bool.go b/vendor/github.com/spf13/pflag/bool.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/bool.go rename to vendor/github.com/spf13/pflag/bool.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/count.go b/vendor/github.com/spf13/pflag/count.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/count.go rename to vendor/github.com/spf13/pflag/count.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/duration.go b/vendor/github.com/spf13/pflag/duration.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/duration.go rename to vendor/github.com/spf13/pflag/duration.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/flag.go b/vendor/github.com/spf13/pflag/flag.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/flag.go rename to vendor/github.com/spf13/pflag/flag.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/float32.go b/vendor/github.com/spf13/pflag/float32.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/float32.go rename to vendor/github.com/spf13/pflag/float32.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/float64.go b/vendor/github.com/spf13/pflag/float64.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/float64.go rename to vendor/github.com/spf13/pflag/float64.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/golangflag.go b/vendor/github.com/spf13/pflag/golangflag.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/golangflag.go rename to vendor/github.com/spf13/pflag/golangflag.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/int.go b/vendor/github.com/spf13/pflag/int.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/int.go rename to vendor/github.com/spf13/pflag/int.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/int32.go b/vendor/github.com/spf13/pflag/int32.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/int32.go rename to vendor/github.com/spf13/pflag/int32.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/int64.go b/vendor/github.com/spf13/pflag/int64.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/int64.go rename to vendor/github.com/spf13/pflag/int64.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/int8.go b/vendor/github.com/spf13/pflag/int8.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/int8.go rename to vendor/github.com/spf13/pflag/int8.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/int_slice.go b/vendor/github.com/spf13/pflag/int_slice.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/int_slice.go rename to vendor/github.com/spf13/pflag/int_slice.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/ip.go b/vendor/github.com/spf13/pflag/ip.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/ip.go rename to vendor/github.com/spf13/pflag/ip.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/ipmask.go b/vendor/github.com/spf13/pflag/ipmask.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/ipmask.go rename to vendor/github.com/spf13/pflag/ipmask.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/ipnet.go b/vendor/github.com/spf13/pflag/ipnet.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/ipnet.go rename to vendor/github.com/spf13/pflag/ipnet.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/string.go b/vendor/github.com/spf13/pflag/string.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/string.go rename to vendor/github.com/spf13/pflag/string.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/string_slice.go b/vendor/github.com/spf13/pflag/string_slice.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/string_slice.go rename to vendor/github.com/spf13/pflag/string_slice.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/uint.go b/vendor/github.com/spf13/pflag/uint.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/uint.go rename to vendor/github.com/spf13/pflag/uint.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/uint16.go b/vendor/github.com/spf13/pflag/uint16.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/uint16.go rename to vendor/github.com/spf13/pflag/uint16.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/uint32.go b/vendor/github.com/spf13/pflag/uint32.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/uint32.go rename to vendor/github.com/spf13/pflag/uint32.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/uint64.go b/vendor/github.com/spf13/pflag/uint64.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/uint64.go rename to vendor/github.com/spf13/pflag/uint64.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/uint8.go b/vendor/github.com/spf13/pflag/uint8.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/uint8.go rename to vendor/github.com/spf13/pflag/uint8.go diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/verify/all.sh b/vendor/github.com/spf13/pflag/verify/all.sh similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/verify/all.sh rename to vendor/github.com/spf13/pflag/verify/all.sh diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/verify/gofmt.sh b/vendor/github.com/spf13/pflag/verify/gofmt.sh similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/verify/gofmt.sh rename to vendor/github.com/spf13/pflag/verify/gofmt.sh diff --git a/Godeps/_workspace/src/github.com/spf13/pflag/verify/golint.sh b/vendor/github.com/spf13/pflag/verify/golint.sh similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/pflag/verify/golint.sh rename to vendor/github.com/spf13/pflag/verify/golint.sh diff --git a/Godeps/_workspace/src/github.com/spf13/viper/.gitignore b/vendor/github.com/spf13/viper/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/viper/.gitignore rename to vendor/github.com/spf13/viper/.gitignore diff --git a/Godeps/_workspace/src/github.com/spf13/viper/.travis.yml b/vendor/github.com/spf13/viper/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/viper/.travis.yml rename to vendor/github.com/spf13/viper/.travis.yml diff --git a/Godeps/_workspace/src/github.com/spf13/viper/LICENSE b/vendor/github.com/spf13/viper/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/viper/LICENSE rename to vendor/github.com/spf13/viper/LICENSE diff --git a/Godeps/_workspace/src/github.com/spf13/viper/README.md b/vendor/github.com/spf13/viper/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/viper/README.md rename to vendor/github.com/spf13/viper/README.md diff --git a/Godeps/_workspace/src/github.com/spf13/viper/remote/remote.go b/vendor/github.com/spf13/viper/remote/remote.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/viper/remote/remote.go rename to vendor/github.com/spf13/viper/remote/remote.go diff --git a/Godeps/_workspace/src/github.com/spf13/viper/util.go b/vendor/github.com/spf13/viper/util.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/viper/util.go rename to vendor/github.com/spf13/viper/util.go diff --git a/Godeps/_workspace/src/github.com/spf13/viper/viper.go b/vendor/github.com/spf13/viper/viper.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/viper/viper.go rename to vendor/github.com/spf13/viper/viper.go diff --git a/Godeps/_workspace/src/github.com/spf13/viper/viper_test.go b/vendor/github.com/spf13/viper/viper_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/spf13/viper/viper_test.go rename to vendor/github.com/spf13/viper/viper_test.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go b/vendor/github.com/stretchr/testify/assert/assertions.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go rename to vendor/github.com/stretchr/testify/assert/assertions.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions_test.go b/vendor/github.com/stretchr/testify/assert/assertions_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions_test.go rename to vendor/github.com/stretchr/testify/assert/assertions_test.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go b/vendor/github.com/stretchr/testify/assert/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go rename to vendor/github.com/stretchr/testify/assert/doc.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go b/vendor/github.com/stretchr/testify/assert/errors.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go rename to vendor/github.com/stretchr/testify/assert/errors.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go b/vendor/github.com/stretchr/testify/assert/forward_assertions.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go rename to vendor/github.com/stretchr/testify/assert/forward_assertions.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions_test.go b/vendor/github.com/stretchr/testify/assert/forward_assertions_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions_test.go rename to vendor/github.com/stretchr/testify/assert/forward_assertions_test.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go b/vendor/github.com/stretchr/testify/assert/http_assertions.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go rename to vendor/github.com/stretchr/testify/assert/http_assertions.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions_test.go b/vendor/github.com/stretchr/testify/assert/http_assertions_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions_test.go rename to vendor/github.com/stretchr/testify/assert/http_assertions_test.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/require/doc.go b/vendor/github.com/stretchr/testify/require/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/require/doc.go rename to vendor/github.com/stretchr/testify/require/doc.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/require/forward_requirements.go b/vendor/github.com/stretchr/testify/require/forward_requirements.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/require/forward_requirements.go rename to vendor/github.com/stretchr/testify/require/forward_requirements.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/require/forward_requirements_test.go b/vendor/github.com/stretchr/testify/require/forward_requirements_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/require/forward_requirements_test.go rename to vendor/github.com/stretchr/testify/require/forward_requirements_test.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/require/requirements.go b/vendor/github.com/stretchr/testify/require/requirements.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/require/requirements.go rename to vendor/github.com/stretchr/testify/require/requirements.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/require/requirements_test.go b/vendor/github.com/stretchr/testify/require/requirements_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/require/requirements_test.go rename to vendor/github.com/stretchr/testify/require/requirements_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/bcrypt/base64.go b/vendor/golang.org/x/crypto/bcrypt/base64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/bcrypt/base64.go rename to vendor/golang.org/x/crypto/bcrypt/base64.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go b/vendor/golang.org/x/crypto/bcrypt/bcrypt.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go rename to vendor/golang.org/x/crypto/bcrypt/bcrypt.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt_test.go b/vendor/golang.org/x/crypto/bcrypt/bcrypt_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt_test.go rename to vendor/golang.org/x/crypto/bcrypt/bcrypt_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/blowfish/block.go b/vendor/golang.org/x/crypto/blowfish/block.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/blowfish/block.go rename to vendor/golang.org/x/crypto/blowfish/block.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/blowfish/blowfish_test.go b/vendor/golang.org/x/crypto/blowfish/blowfish_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/blowfish/blowfish_test.go rename to vendor/golang.org/x/crypto/blowfish/blowfish_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/blowfish/cipher.go b/vendor/golang.org/x/crypto/blowfish/cipher.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/blowfish/cipher.go rename to vendor/golang.org/x/crypto/blowfish/cipher.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/blowfish/const.go b/vendor/golang.org/x/crypto/blowfish/const.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/blowfish/const.go rename to vendor/golang.org/x/crypto/blowfish/const.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/nacl/secretbox/secretbox.go b/vendor/golang.org/x/crypto/nacl/secretbox/secretbox.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/nacl/secretbox/secretbox.go rename to vendor/golang.org/x/crypto/nacl/secretbox/secretbox.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/nacl/secretbox/secretbox_test.go b/vendor/golang.org/x/crypto/nacl/secretbox/secretbox_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/nacl/secretbox/secretbox_test.go rename to vendor/golang.org/x/crypto/nacl/secretbox/secretbox_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2.go b/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2.go rename to vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2_test.go b/vendor/golang.org/x/crypto/pbkdf2/pbkdf2_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2_test.go rename to vendor/golang.org/x/crypto/pbkdf2/pbkdf2_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/const_amd64.s b/vendor/golang.org/x/crypto/poly1305/const_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/const_amd64.s rename to vendor/golang.org/x/crypto/poly1305/const_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305.go b/vendor/golang.org/x/crypto/poly1305/poly1305.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305.go rename to vendor/golang.org/x/crypto/poly1305/poly1305.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_amd64.s b/vendor/golang.org/x/crypto/poly1305/poly1305_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_amd64.s rename to vendor/golang.org/x/crypto/poly1305/poly1305_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_test.go b/vendor/golang.org/x/crypto/poly1305/poly1305_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_test.go rename to vendor/golang.org/x/crypto/poly1305/poly1305_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_amd64.go b/vendor/golang.org/x/crypto/poly1305/sum_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_amd64.go rename to vendor/golang.org/x/crypto/poly1305/sum_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_ref.go b/vendor/golang.org/x/crypto/poly1305/sum_ref.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_ref.go rename to vendor/golang.org/x/crypto/poly1305/sum_ref.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/hsalsa20.go b/vendor/golang.org/x/crypto/salsa20/salsa/hsalsa20.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/hsalsa20.go rename to vendor/golang.org/x/crypto/salsa20/salsa/hsalsa20.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa2020_amd64.s b/vendor/golang.org/x/crypto/salsa20/salsa/salsa2020_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa2020_amd64.s rename to vendor/golang.org/x/crypto/salsa20/salsa/salsa2020_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa208.go b/vendor/golang.org/x/crypto/salsa20/salsa/salsa208.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa208.go rename to vendor/golang.org/x/crypto/salsa20/salsa/salsa208.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go b/vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go rename to vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa20_ref.go b/vendor/golang.org/x/crypto/salsa20/salsa/salsa20_ref.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa20_ref.go rename to vendor/golang.org/x/crypto/salsa20/salsa/salsa20_ref.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa_test.go b/vendor/golang.org/x/crypto/salsa20/salsa/salsa_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/salsa20/salsa/salsa_test.go rename to vendor/golang.org/x/crypto/salsa20/salsa/salsa_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/scrypt/scrypt.go b/vendor/golang.org/x/crypto/scrypt/scrypt.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/scrypt/scrypt.go rename to vendor/golang.org/x/crypto/scrypt/scrypt.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/scrypt/scrypt_test.go b/vendor/golang.org/x/crypto/scrypt/scrypt_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/scrypt/scrypt_test.go rename to vendor/golang.org/x/crypto/scrypt/scrypt_test.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/context.go b/vendor/golang.org/x/net/context/context.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/context.go rename to vendor/golang.org/x/net/context/context.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq.go b/vendor/golang.org/x/net/context/ctxhttp/cancelreq.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq.go rename to vendor/golang.org/x/net/context/ctxhttp/cancelreq.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq_go14.go b/vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq_go14.go rename to vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/ctxhttp.go b/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/ctxhttp.go rename to vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/.gitignore b/vendor/golang.org/x/net/http2/.gitignore similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/.gitignore rename to vendor/golang.org/x/net/http2/.gitignore diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/Dockerfile b/vendor/golang.org/x/net/http2/Dockerfile similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/Dockerfile rename to vendor/golang.org/x/net/http2/Dockerfile diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/Makefile b/vendor/golang.org/x/net/http2/Makefile similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/Makefile rename to vendor/golang.org/x/net/http2/Makefile diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/README b/vendor/golang.org/x/net/http2/README similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/README rename to vendor/golang.org/x/net/http2/README diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/buffer.go b/vendor/golang.org/x/net/http2/buffer.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/buffer.go rename to vendor/golang.org/x/net/http2/buffer.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/errors.go b/vendor/golang.org/x/net/http2/errors.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/errors.go rename to vendor/golang.org/x/net/http2/errors.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/flow.go b/vendor/golang.org/x/net/http2/flow.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/flow.go rename to vendor/golang.org/x/net/http2/flow.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/frame.go b/vendor/golang.org/x/net/http2/frame.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/frame.go rename to vendor/golang.org/x/net/http2/frame.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/gotrack.go b/vendor/golang.org/x/net/http2/gotrack.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/gotrack.go rename to vendor/golang.org/x/net/http2/gotrack.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/.gitignore b/vendor/golang.org/x/net/http2/h2demo/.gitignore similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/.gitignore rename to vendor/golang.org/x/net/http2/h2demo/.gitignore diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/Makefile b/vendor/golang.org/x/net/http2/h2demo/Makefile similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/Makefile rename to vendor/golang.org/x/net/http2/h2demo/Makefile diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/README b/vendor/golang.org/x/net/http2/h2demo/README similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/README rename to vendor/golang.org/x/net/http2/h2demo/README diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/h2demo.go b/vendor/golang.org/x/net/http2/h2demo/h2demo.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/h2demo.go rename to vendor/golang.org/x/net/http2/h2demo/h2demo.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/launch.go b/vendor/golang.org/x/net/http2/h2demo/launch.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/launch.go rename to vendor/golang.org/x/net/http2/h2demo/launch.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/rootCA.key b/vendor/golang.org/x/net/http2/h2demo/rootCA.key similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/rootCA.key rename to vendor/golang.org/x/net/http2/h2demo/rootCA.key diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/rootCA.pem b/vendor/golang.org/x/net/http2/h2demo/rootCA.pem similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/rootCA.pem rename to vendor/golang.org/x/net/http2/h2demo/rootCA.pem diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/rootCA.srl b/vendor/golang.org/x/net/http2/h2demo/rootCA.srl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/rootCA.srl rename to vendor/golang.org/x/net/http2/h2demo/rootCA.srl diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/server.crt b/vendor/golang.org/x/net/http2/h2demo/server.crt similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/server.crt rename to vendor/golang.org/x/net/http2/h2demo/server.crt diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2demo/server.key b/vendor/golang.org/x/net/http2/h2demo/server.key similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2demo/server.key rename to vendor/golang.org/x/net/http2/h2demo/server.key diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2i/README.md b/vendor/golang.org/x/net/http2/h2i/README.md similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2i/README.md rename to vendor/golang.org/x/net/http2/h2i/README.md diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/h2i/h2i.go b/vendor/golang.org/x/net/http2/h2i/h2i.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/h2i/h2i.go rename to vendor/golang.org/x/net/http2/h2i/h2i.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/headermap.go b/vendor/golang.org/x/net/http2/headermap.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/headermap.go rename to vendor/golang.org/x/net/http2/headermap.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/hpack/encode.go b/vendor/golang.org/x/net/http2/hpack/encode.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/hpack/encode.go rename to vendor/golang.org/x/net/http2/hpack/encode.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/hpack/hpack.go b/vendor/golang.org/x/net/http2/hpack/hpack.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/hpack/hpack.go rename to vendor/golang.org/x/net/http2/hpack/hpack.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/hpack/huffman.go b/vendor/golang.org/x/net/http2/hpack/huffman.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/hpack/huffman.go rename to vendor/golang.org/x/net/http2/hpack/huffman.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/hpack/tables.go b/vendor/golang.org/x/net/http2/hpack/tables.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/hpack/tables.go rename to vendor/golang.org/x/net/http2/hpack/tables.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/http2.go b/vendor/golang.org/x/net/http2/http2.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/http2.go rename to vendor/golang.org/x/net/http2/http2.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/pipe.go b/vendor/golang.org/x/net/http2/pipe.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/pipe.go rename to vendor/golang.org/x/net/http2/pipe.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/server.go b/vendor/golang.org/x/net/http2/server.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/server.go rename to vendor/golang.org/x/net/http2/server.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/transport.go b/vendor/golang.org/x/net/http2/transport.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/transport.go rename to vendor/golang.org/x/net/http2/transport.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/write.go b/vendor/golang.org/x/net/http2/write.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/write.go rename to vendor/golang.org/x/net/http2/write.go diff --git a/Godeps/_workspace/src/golang.org/x/net/http2/writesched.go b/vendor/golang.org/x/net/http2/writesched.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/http2/writesched.go rename to vendor/golang.org/x/net/http2/writesched.go diff --git a/Godeps/_workspace/src/golang.org/x/net/internal/timeseries/timeseries.go b/vendor/golang.org/x/net/internal/timeseries/timeseries.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/internal/timeseries/timeseries.go rename to vendor/golang.org/x/net/internal/timeseries/timeseries.go diff --git a/Godeps/_workspace/src/golang.org/x/net/trace/events.go b/vendor/golang.org/x/net/trace/events.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/trace/events.go rename to vendor/golang.org/x/net/trace/events.go diff --git a/Godeps/_workspace/src/golang.org/x/net/trace/histogram.go b/vendor/golang.org/x/net/trace/histogram.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/trace/histogram.go rename to vendor/golang.org/x/net/trace/histogram.go diff --git a/Godeps/_workspace/src/golang.org/x/net/trace/trace.go b/vendor/golang.org/x/net/trace/trace.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/trace/trace.go rename to vendor/golang.org/x/net/trace/trace.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/.travis.yml b/vendor/google.golang.org/grpc/.travis.yml similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/.travis.yml rename to vendor/google.golang.org/grpc/.travis.yml diff --git a/Godeps/_workspace/src/google.golang.org/grpc/CONTRIBUTING.md b/vendor/google.golang.org/grpc/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/CONTRIBUTING.md rename to vendor/google.golang.org/grpc/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/google.golang.org/grpc/Documentation/grpc-auth-support.md b/vendor/google.golang.org/grpc/Documentation/grpc-auth-support.md similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/Documentation/grpc-auth-support.md rename to vendor/google.golang.org/grpc/Documentation/grpc-auth-support.md diff --git a/Godeps/_workspace/src/google.golang.org/grpc/LICENSE b/vendor/google.golang.org/grpc/LICENSE similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/LICENSE rename to vendor/google.golang.org/grpc/LICENSE diff --git a/Godeps/_workspace/src/google.golang.org/grpc/Makefile b/vendor/google.golang.org/grpc/Makefile similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/Makefile rename to vendor/google.golang.org/grpc/Makefile diff --git a/Godeps/_workspace/src/google.golang.org/grpc/PATENTS b/vendor/google.golang.org/grpc/PATENTS similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/PATENTS rename to vendor/google.golang.org/grpc/PATENTS diff --git a/Godeps/_workspace/src/google.golang.org/grpc/README.md b/vendor/google.golang.org/grpc/README.md similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/README.md rename to vendor/google.golang.org/grpc/README.md diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/benchmark.go b/vendor/google.golang.org/grpc/benchmark/benchmark.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/benchmark.go rename to vendor/google.golang.org/grpc/benchmark/benchmark.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/client/main.go b/vendor/google.golang.org/grpc/benchmark/client/main.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/client/main.go rename to vendor/google.golang.org/grpc/benchmark/client/main.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/grpc_testing/test.pb.go b/vendor/google.golang.org/grpc/benchmark/grpc_testing/test.pb.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/grpc_testing/test.pb.go rename to vendor/google.golang.org/grpc/benchmark/grpc_testing/test.pb.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/grpc_testing/test.proto b/vendor/google.golang.org/grpc/benchmark/grpc_testing/test.proto similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/grpc_testing/test.proto rename to vendor/google.golang.org/grpc/benchmark/grpc_testing/test.proto diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/server/main.go b/vendor/google.golang.org/grpc/benchmark/server/main.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/server/main.go rename to vendor/google.golang.org/grpc/benchmark/server/main.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/counter.go b/vendor/google.golang.org/grpc/benchmark/stats/counter.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/counter.go rename to vendor/google.golang.org/grpc/benchmark/stats/counter.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/histogram.go b/vendor/google.golang.org/grpc/benchmark/stats/histogram.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/histogram.go rename to vendor/google.golang.org/grpc/benchmark/stats/histogram.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/stats.go b/vendor/google.golang.org/grpc/benchmark/stats/stats.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/stats.go rename to vendor/google.golang.org/grpc/benchmark/stats/stats.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/timeseries.go b/vendor/google.golang.org/grpc/benchmark/stats/timeseries.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/timeseries.go rename to vendor/google.golang.org/grpc/benchmark/stats/timeseries.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/tracker.go b/vendor/google.golang.org/grpc/benchmark/stats/tracker.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/tracker.go rename to vendor/google.golang.org/grpc/benchmark/stats/tracker.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/util.go b/vendor/google.golang.org/grpc/benchmark/stats/util.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/benchmark/stats/util.go rename to vendor/google.golang.org/grpc/benchmark/stats/util.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/call.go b/vendor/google.golang.org/grpc/call.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/call.go rename to vendor/google.golang.org/grpc/call.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/clientconn.go b/vendor/google.golang.org/grpc/clientconn.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/clientconn.go rename to vendor/google.golang.org/grpc/clientconn.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/codegen.sh b/vendor/google.golang.org/grpc/codegen.sh similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/codegen.sh rename to vendor/google.golang.org/grpc/codegen.sh diff --git a/Godeps/_workspace/src/google.golang.org/grpc/codes/code_string.go b/vendor/google.golang.org/grpc/codes/code_string.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/codes/code_string.go rename to vendor/google.golang.org/grpc/codes/code_string.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/codes/codes.go b/vendor/google.golang.org/grpc/codes/codes.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/codes/codes.go rename to vendor/google.golang.org/grpc/codes/codes.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/credentials/credentials.go b/vendor/google.golang.org/grpc/credentials/credentials.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/credentials/credentials.go rename to vendor/google.golang.org/grpc/credentials/credentials.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/credentials/oauth/oauth.go b/vendor/google.golang.org/grpc/credentials/oauth/oauth.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/credentials/oauth/oauth.go rename to vendor/google.golang.org/grpc/credentials/oauth/oauth.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/doc.go b/vendor/google.golang.org/grpc/doc.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/doc.go rename to vendor/google.golang.org/grpc/doc.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/README.md b/vendor/google.golang.org/grpc/examples/README.md similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/README.md rename to vendor/google.golang.org/grpc/examples/README.md diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/gotutorial.md b/vendor/google.golang.org/grpc/examples/gotutorial.md similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/gotutorial.md rename to vendor/google.golang.org/grpc/examples/gotutorial.md diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/helloworld/greeter_client/main.go b/vendor/google.golang.org/grpc/examples/helloworld/greeter_client/main.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/helloworld/greeter_client/main.go rename to vendor/google.golang.org/grpc/examples/helloworld/greeter_client/main.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/helloworld/greeter_server/main.go b/vendor/google.golang.org/grpc/examples/helloworld/greeter_server/main.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/helloworld/greeter_server/main.go rename to vendor/google.golang.org/grpc/examples/helloworld/greeter_server/main.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.pb.go b/vendor/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.pb.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.pb.go rename to vendor/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.pb.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.proto b/vendor/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.proto similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.proto rename to vendor/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.proto diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/README.md b/vendor/google.golang.org/grpc/examples/route_guide/README.md similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/README.md rename to vendor/google.golang.org/grpc/examples/route_guide/README.md diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/client/client.go b/vendor/google.golang.org/grpc/examples/route_guide/client/client.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/client/client.go rename to vendor/google.golang.org/grpc/examples/route_guide/client/client.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.pb.go b/vendor/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.pb.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.pb.go rename to vendor/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.pb.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.proto b/vendor/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.proto similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.proto rename to vendor/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.proto diff --git a/Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/server/server.go b/vendor/google.golang.org/grpc/examples/route_guide/server/server.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/examples/route_guide/server/server.go rename to vendor/google.golang.org/grpc/examples/route_guide/server/server.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/grpclog/glogger/glogger.go b/vendor/google.golang.org/grpc/grpclog/glogger/glogger.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/grpclog/glogger/glogger.go rename to vendor/google.golang.org/grpc/grpclog/glogger/glogger.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/grpclog/logger.go b/vendor/google.golang.org/grpc/grpclog/logger.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/grpclog/logger.go rename to vendor/google.golang.org/grpc/grpclog/logger.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/health/grpc_health_v1alpha/health.pb.go b/vendor/google.golang.org/grpc/health/grpc_health_v1alpha/health.pb.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/health/grpc_health_v1alpha/health.pb.go rename to vendor/google.golang.org/grpc/health/grpc_health_v1alpha/health.pb.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/health/grpc_health_v1alpha/health.proto b/vendor/google.golang.org/grpc/health/grpc_health_v1alpha/health.proto similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/health/grpc_health_v1alpha/health.proto rename to vendor/google.golang.org/grpc/health/grpc_health_v1alpha/health.proto diff --git a/Godeps/_workspace/src/google.golang.org/grpc/health/health.go b/vendor/google.golang.org/grpc/health/health.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/health/health.go rename to vendor/google.golang.org/grpc/health/health.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/interop/client/client.go b/vendor/google.golang.org/grpc/interop/client/client.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/interop/client/client.go rename to vendor/google.golang.org/grpc/interop/client/client.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/interop/grpc_testing/test.pb.go b/vendor/google.golang.org/grpc/interop/grpc_testing/test.pb.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/interop/grpc_testing/test.pb.go rename to vendor/google.golang.org/grpc/interop/grpc_testing/test.pb.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/interop/grpc_testing/test.proto b/vendor/google.golang.org/grpc/interop/grpc_testing/test.proto similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/interop/grpc_testing/test.proto rename to vendor/google.golang.org/grpc/interop/grpc_testing/test.proto diff --git a/Godeps/_workspace/src/google.golang.org/grpc/interop/server/server.go b/vendor/google.golang.org/grpc/interop/server/server.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/interop/server/server.go rename to vendor/google.golang.org/grpc/interop/server/server.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/metadata/metadata.go b/vendor/google.golang.org/grpc/metadata/metadata.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/metadata/metadata.go rename to vendor/google.golang.org/grpc/metadata/metadata.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/naming/etcd/etcd.go b/vendor/google.golang.org/grpc/naming/etcd/etcd.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/naming/etcd/etcd.go rename to vendor/google.golang.org/grpc/naming/etcd/etcd.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/naming/naming.go b/vendor/google.golang.org/grpc/naming/naming.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/naming/naming.go rename to vendor/google.golang.org/grpc/naming/naming.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/picker.go b/vendor/google.golang.org/grpc/picker.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/picker.go rename to vendor/google.golang.org/grpc/picker.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/rpc_util.go b/vendor/google.golang.org/grpc/rpc_util.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/rpc_util.go rename to vendor/google.golang.org/grpc/rpc_util.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/server.go b/vendor/google.golang.org/grpc/server.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/server.go rename to vendor/google.golang.org/grpc/server.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/stream.go b/vendor/google.golang.org/grpc/stream.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/stream.go rename to vendor/google.golang.org/grpc/stream.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/test/codec_perf/perf.pb.go b/vendor/google.golang.org/grpc/test/codec_perf/perf.pb.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/test/codec_perf/perf.pb.go rename to vendor/google.golang.org/grpc/test/codec_perf/perf.pb.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/test/codec_perf/perf.proto b/vendor/google.golang.org/grpc/test/codec_perf/perf.proto similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/test/codec_perf/perf.proto rename to vendor/google.golang.org/grpc/test/codec_perf/perf.proto diff --git a/Godeps/_workspace/src/google.golang.org/grpc/test/grpc_testing/test.pb.go b/vendor/google.golang.org/grpc/test/grpc_testing/test.pb.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/test/grpc_testing/test.pb.go rename to vendor/google.golang.org/grpc/test/grpc_testing/test.pb.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/test/grpc_testing/test.proto b/vendor/google.golang.org/grpc/test/grpc_testing/test.proto similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/test/grpc_testing/test.proto rename to vendor/google.golang.org/grpc/test/grpc_testing/test.proto diff --git a/Godeps/_workspace/src/google.golang.org/grpc/trace.go b/vendor/google.golang.org/grpc/trace.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/trace.go rename to vendor/google.golang.org/grpc/trace.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/transport/control.go b/vendor/google.golang.org/grpc/transport/control.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/transport/control.go rename to vendor/google.golang.org/grpc/transport/control.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/transport/http2_client.go b/vendor/google.golang.org/grpc/transport/http2_client.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/transport/http2_client.go rename to vendor/google.golang.org/grpc/transport/http2_client.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/transport/http2_server.go b/vendor/google.golang.org/grpc/transport/http2_server.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/transport/http2_server.go rename to vendor/google.golang.org/grpc/transport/http2_server.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/transport/http_util.go b/vendor/google.golang.org/grpc/transport/http_util.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/transport/http_util.go rename to vendor/google.golang.org/grpc/transport/http_util.go diff --git a/Godeps/_workspace/src/google.golang.org/grpc/transport/transport.go b/vendor/google.golang.org/grpc/transport/transport.go similarity index 100% rename from Godeps/_workspace/src/google.golang.org/grpc/transport/transport.go rename to vendor/google.golang.org/grpc/transport/transport.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE b/vendor/gopkg.in/yaml.v2/LICENSE similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE rename to vendor/gopkg.in/yaml.v2/LICENSE diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml b/vendor/gopkg.in/yaml.v2/LICENSE.libyaml similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml rename to vendor/gopkg.in/yaml.v2/LICENSE.libyaml diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/README.md b/vendor/gopkg.in/yaml.v2/README.md similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/README.md rename to vendor/gopkg.in/yaml.v2/README.md diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go b/vendor/gopkg.in/yaml.v2/apic.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go rename to vendor/gopkg.in/yaml.v2/apic.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go b/vendor/gopkg.in/yaml.v2/decode.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go rename to vendor/gopkg.in/yaml.v2/decode.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go b/vendor/gopkg.in/yaml.v2/decode_test.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go rename to vendor/gopkg.in/yaml.v2/decode_test.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go b/vendor/gopkg.in/yaml.v2/emitterc.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go rename to vendor/gopkg.in/yaml.v2/emitterc.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go b/vendor/gopkg.in/yaml.v2/encode.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go rename to vendor/gopkg.in/yaml.v2/encode.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go b/vendor/gopkg.in/yaml.v2/encode_test.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go rename to vendor/gopkg.in/yaml.v2/encode_test.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go b/vendor/gopkg.in/yaml.v2/parserc.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go rename to vendor/gopkg.in/yaml.v2/parserc.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go b/vendor/gopkg.in/yaml.v2/readerc.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go rename to vendor/gopkg.in/yaml.v2/readerc.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go b/vendor/gopkg.in/yaml.v2/resolve.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go rename to vendor/gopkg.in/yaml.v2/resolve.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go b/vendor/gopkg.in/yaml.v2/scannerc.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go rename to vendor/gopkg.in/yaml.v2/scannerc.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go b/vendor/gopkg.in/yaml.v2/sorter.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go rename to vendor/gopkg.in/yaml.v2/sorter.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go b/vendor/gopkg.in/yaml.v2/suite_test.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go rename to vendor/gopkg.in/yaml.v2/suite_test.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go b/vendor/gopkg.in/yaml.v2/writerc.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go rename to vendor/gopkg.in/yaml.v2/writerc.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go b/vendor/gopkg.in/yaml.v2/yaml.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go rename to vendor/gopkg.in/yaml.v2/yaml.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go b/vendor/gopkg.in/yaml.v2/yamlh.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go rename to vendor/gopkg.in/yaml.v2/yamlh.go diff --git a/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go b/vendor/gopkg.in/yaml.v2/yamlprivateh.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go rename to vendor/gopkg.in/yaml.v2/yamlprivateh.go From 00c667a5b1bf5971fcb33e897d6d2a8d7a24a8d4 Mon Sep 17 00:00:00 2001 From: Ying Li Date: Tue, 8 Mar 2016 11:38:39 -0800 Subject: [PATCH 3/4] Update dockerfiles to be go 1.6 and to no longer set the GOPATH Signed-off-by: Ying Li --- Dockerfile | 4 +--- server.Dockerfile | 5 +---- signer.Dockerfile | 3 +-- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 44ec6dd0e3..3f8ae14dad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.5.1 +FROM golang:1.6.0 RUN apt-get update && apt-get install -y \ libltdl-dev \ @@ -12,6 +12,4 @@ RUN go get golang.org/x/tools/cmd/vet \ COPY . /go/src/github.com/docker/notary -ENV GOPATH /go/src/github.com/docker/notary/Godeps/_workspace:$GOPATH - WORKDIR /go/src/github.com/docker/notary diff --git a/server.Dockerfile b/server.Dockerfile index 693064d7b5..0966cea232 100644 --- a/server.Dockerfile +++ b/server.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.5.3 +FROM golang:1.6.0 MAINTAINER David Lawrence "david.lawrence@docker.com" RUN apt-get update && apt-get install -y \ @@ -12,9 +12,6 @@ EXPOSE 4443 RUN go get github.com/mattes/migrate ENV NOTARYPKG github.com/docker/notary -ENV GOPATH /go/src/${NOTARYPKG}/Godeps/_workspace:$GOPATH - - # Copy the local repo to the expected go path COPY . /go/src/github.com/docker/notary diff --git a/signer.Dockerfile b/signer.Dockerfile index 837273bac5..846e30e56f 100644 --- a/signer.Dockerfile +++ b/signer.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.5.3 +FROM golang:1.6.0 MAINTAINER David Lawrence "david.lawrence@docker.com" RUN apt-get update && apt-get install -y \ @@ -12,7 +12,6 @@ EXPOSE 4444 RUN go get github.com/mattes/migrate ENV NOTARYPKG github.com/docker/notary -ENV GOPATH /go/src/${NOTARYPKG}/Godeps/_workspace:$GOPATH ENV NOTARY_SIGNER_DEFAULT_ALIAS="timestamp_1" ENV NOTARY_SIGNER_TIMESTAMP_1="testpassword" From be91b3342c60340e8a5587552ce551dcdde1eaf6 Mon Sep 17 00:00:00 2001 From: Ying Li Date: Tue, 8 Mar 2016 11:40:32 -0800 Subject: [PATCH 4/4] Fix Makefile to exclude the vendor directory from linting/vetting Signed-off-by: Ying Li --- Makefile | 30 +++++++++++++++--------------- coverpkg.sh | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Makefile b/Makefile index 447514af09..0756159e15 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ GO_EXC = go NOTARYDIR := /go/src/github.com/docker/notary # check to be sure pkcs11 lib is always imported with a build tag -GO_LIST_PKCS11 := $(shell go list -e -f '{{join .Deps "\n"}}' ./... | xargs go list -e -f '{{if not .Standard}}{{.ImportPath}}{{end}}' | grep -q pkcs11) +GO_LIST_PKCS11 := $(shell go list -e -f '{{join .Deps "\n"}}' ./... | grep -v /vendor/ | xargs go list -e -f '{{if not .Standard}}{{.ImportPath}}{{end}}' | grep -q pkcs11) ifeq ($(GO_LIST_PKCS11),) $(info pkcs11 import was not found anywhere without a build tag, yay) else @@ -34,7 +34,7 @@ _space := $(empty) $(empty) COVERDIR=.cover COVERPROFILE?=$(COVERDIR)/cover.out COVERMODE=count -PKGS ?= $(shell go list ./... | tr '\n' ' ') +PKGS ?= $(shell go list ./... | grep -v /vendor/ | tr '\n' ' ') GO_VERSION = $(shell go version | awk '{print $$3}') @@ -79,22 +79,22 @@ ${PREFIX}/bin/static/notary-signer: NOTARY_VERSION $(shell find . -type f -name @godep go build -tags ${NOTARY_BUILDTAGS} -o $@ ${GO_LDFLAGS_STATIC} ./cmd/notary-signer endif -vet: +vet: @echo "+ $@" ifeq ($(shell uname -s), Darwin) - @test -z "$(shell find . -iname *test*.go | grep -v _test.go | grep -v Godeps | xargs echo "This file should end with '_test':" | tee /dev/stderr)" + @test -z "$(shell find . -iname *test*.go | grep -v _test.go | grep -v vendor | xargs echo "This file should end with '_test':" | tee /dev/stderr)" else - @test -z "$(shell find . -iname *test*.go | grep -v _test.go | grep -v Godeps | xargs -r echo "This file should end with '_test':" | tee /dev/stderr)" + @test -z "$(shell find . -iname *test*.go | grep -v _test.go | grep -v vendor | xargs -r echo "This file should end with '_test':" | tee /dev/stderr)" endif - @test -z "$$(go tool vet -printf=false . 2>&1 | grep -v Godeps/_workspace/src/ | tee /dev/stderr)" + @test -z "$$(go tool vet -printf=false . 2>&1 | grep -v vendor/ | tee /dev/stderr)" fmt: @echo "+ $@" - @test -z "$$(gofmt -s -l .| grep -v .pb. | grep -v Godeps/_workspace/src/ | tee /dev/stderr)" + @test -z "$$(gofmt -s -l .| grep -v .pb. | grep -v vendor/ | tee /dev/stderr)" lint: @echo "+ $@" - @test -z "$$(golint ./... | grep -v .pb. | grep -v Godeps/_workspace/src/ | tee /dev/stderr)" + @test -z "$$(golint ./... | grep -v .pb. | grep -v vendor/ | tee /dev/stderr)" # Requires that the following: # go get -u github.com/client9/misspell/cmd/misspell @@ -104,27 +104,27 @@ lint: # misspell target, don't include Godeps, binaries, python tests, or git files misspell: @echo "+ $@" - @test -z "$$(find . -name '*' | grep -v Godeps/_workspace/src/ | grep -v bin/ | grep -v misc/ | grep -v .git/ | xargs misspell | tee /dev/stderr)" + @test -z "$$(find . -name '*' | grep -v vendor/ | grep -v bin/ | grep -v misc/ | grep -v .git/ | xargs misspell | tee /dev/stderr)" build: @echo "+ $@" - @go build -tags "${NOTARY_BUILDTAGS}" -v ${GO_LDFLAGS} ./... + @go build -tags "${NOTARY_BUILDTAGS}" -v ${GO_LDFLAGS} $(PKGS) # When running `go test ./...`, it runs all the suites in parallel, which causes # problems when running with a yubikey test: TESTOPTS = -test: +test: @echo Note: when testing with a yubikey plugged in, make sure to include 'TESTOPTS="-p 1"' @echo "+ $@ $(TESTOPTS)" @echo - go test -tags "${NOTARY_BUILDTAGS}" $(TESTOPTS) ./... + go test -tags "${NOTARY_BUILDTAGS}" $(TESTOPTS) $(PKGS) test-full: TESTOPTS = test-full: vet lint @echo Note: when testing with a yubikey plugged in, make sure to include 'TESTOPTS="-p 1"' @echo "+ $@" @echo - go test -tags "${NOTARY_BUILDTAGS}" $(TESTOPTS) -v ./... + go test -tags "${NOTARY_BUILDTAGS}" $(TESTOPTS) -v $(PKGS) protos: @protoc --go_out=plugins=grpc:. proto/*.proto @@ -139,7 +139,7 @@ define gocover $(GO_EXC) test $(OPTS) $(TESTOPTS) -covermode="$(COVERMODE)" -coverprofile="$(COVERDIR)/$(subst /,-,$(1)).$(subst $(_space),.,$(NOTARY_BUILDTAGS)).coverage.txt" "$(1)" || exit 1; endef -gen-cover: +gen-cover: @mkdir -p "$(COVERDIR)" $(foreach PKG,$(PKGS),$(call gocover,$(PKG))) rm -f "$(COVERDIR)"/*testutils*.coverage.txt @@ -179,7 +179,7 @@ mkdir -p ${PREFIX}/cross/$(1)/$(2); GOOS=$(1) GOARCH=$(2) CGO_ENABLED=0 go build -o ${PREFIX}/cross/$(1)/$(2)/notary -a -tags "static_build netgo" -installsuffix netgo ${GO_LDFLAGS_STATIC} ./cmd/notary; endef -cross: +cross: $(foreach GOARCH,$(GOARCHS),$(foreach GOOS,$(GOOSES),$(call template,$(GOOS),$(GOARCH)))) diff --git a/coverpkg.sh b/coverpkg.sh index eccb28ab7e..00ec5d112d 100755 --- a/coverpkg.sh +++ b/coverpkg.sh @@ -5,6 +5,6 @@ # subpackage's dependencies within the containing package, as well as the # subpackage itself. -DEPENDENCIES="$(go list -f $'{{range $f := .Deps}}{{$f}}\n{{end}}' ${1} | grep ${2})" +DEPENDENCIES="$(go list -f $'{{range $f := .Deps}}{{$f}}\n{{end}}' ${1} | grep ${2} | grep -v ${2}/vendor)" echo "${1} ${DEPENDENCIES}" | xargs echo -n | tr ' ' ','