http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go
----------------------------------------------------------------------
diff --git 
a/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go
 
b/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go
deleted file mode 100644
index 41d2a41..0000000
--- 
a/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go
+++ /dev/null
@@ -1,279 +0,0 @@
-package mapstructure
-
-import (
-       "encoding/json"
-       "testing"
-)
-
-func Benchmark_Decode(b *testing.B) {
-       type Person struct {
-               Name   string
-               Age    int
-               Emails []string
-               Extra  map[string]string
-       }
-
-       input := map[string]interface{}{
-               "name":   "Mitchell",
-               "age":    91,
-               "emails": []string{"one", "two", "three"},
-               "extra": map[string]string{
-                       "twitter": "mitchellh",
-               },
-       }
-
-       var result Person
-       for i := 0; i < b.N; i++ {
-               Decode(input, &result)
-       }
-}
-
-// decodeViaJSON takes the map data and passes it through encoding/json to 
convert it into the
-// given Go native structure pointed to by v. v must be a pointer to a struct.
-func decodeViaJSON(data interface{}, v interface{}) error {
-       // Perform the task by simply marshalling the input into JSON,
-       // then unmarshalling it into target native Go struct.
-       b, err := json.Marshal(data)
-       if err != nil {
-               return err
-       }
-       return json.Unmarshal(b, v)
-}
-
-func Benchmark_DecodeViaJSON(b *testing.B) {
-       type Person struct {
-               Name   string
-               Age    int
-               Emails []string
-               Extra  map[string]string
-       }
-
-       input := map[string]interface{}{
-               "name":   "Mitchell",
-               "age":    91,
-               "emails": []string{"one", "two", "three"},
-               "extra": map[string]string{
-                       "twitter": "mitchellh",
-               },
-       }
-
-       var result Person
-       for i := 0; i < b.N; i++ {
-               decodeViaJSON(input, &result)
-       }
-}
-
-func Benchmark_DecodeBasic(b *testing.B) {
-       input := map[string]interface{}{
-               "vstring": "foo",
-               "vint":    42,
-               "Vuint":   42,
-               "vbool":   true,
-               "Vfloat":  42.42,
-               "vsilent": true,
-               "vdata":   42,
-       }
-
-       var result Basic
-       for i := 0; i < b.N; i++ {
-               Decode(input, &result)
-       }
-}
-
-func Benchmark_DecodeEmbedded(b *testing.B) {
-       input := map[string]interface{}{
-               "vstring": "foo",
-               "Basic": map[string]interface{}{
-                       "vstring": "innerfoo",
-               },
-               "vunique": "bar",
-       }
-
-       var result Embedded
-       for i := 0; i < b.N; i++ {
-               Decode(input, &result)
-       }
-}
-
-func Benchmark_DecodeTypeConversion(b *testing.B) {
-       input := map[string]interface{}{
-               "IntToFloat":    42,
-               "IntToUint":     42,
-               "IntToBool":     1,
-               "IntToString":   42,
-               "UintToInt":     42,
-               "UintToFloat":   42,
-               "UintToBool":    42,
-               "UintToString":  42,
-               "BoolToInt":     true,
-               "BoolToUint":    true,
-               "BoolToFloat":   true,
-               "BoolToString":  true,
-               "FloatToInt":    42.42,
-               "FloatToUint":   42.42,
-               "FloatToBool":   42.42,
-               "FloatToString": 42.42,
-               "StringToInt":   "42",
-               "StringToUint":  "42",
-               "StringToBool":  "1",
-               "StringToFloat": "42.42",
-               "SliceToMap":    []interface{}{},
-               "MapToSlice":    map[string]interface{}{},
-       }
-
-       var resultStrict TypeConversionResult
-       for i := 0; i < b.N; i++ {
-               Decode(input, &resultStrict)
-       }
-}
-
-func Benchmark_DecodeMap(b *testing.B) {
-       input := map[string]interface{}{
-               "vfoo": "foo",
-               "vother": map[interface{}]interface{}{
-                       "foo": "foo",
-                       "bar": "bar",
-               },
-       }
-
-       var result Map
-       for i := 0; i < b.N; i++ {
-               Decode(input, &result)
-       }
-}
-
-func Benchmark_DecodeMapOfStruct(b *testing.B) {
-       input := map[string]interface{}{
-               "value": map[string]interface{}{
-                       "foo": map[string]string{"vstring": "one"},
-                       "bar": map[string]string{"vstring": "two"},
-               },
-       }
-
-       var result MapOfStruct
-       for i := 0; i < b.N; i++ {
-               Decode(input, &result)
-       }
-}
-
-func Benchmark_DecodeSlice(b *testing.B) {
-       input := map[string]interface{}{
-               "vfoo": "foo",
-               "vbar": []string{"foo", "bar", "baz"},
-       }
-
-       var result Slice
-       for i := 0; i < b.N; i++ {
-               Decode(input, &result)
-       }
-}
-
-func Benchmark_DecodeSliceOfStruct(b *testing.B) {
-       input := map[string]interface{}{
-               "value": []map[string]interface{}{
-                       {"vstring": "one"},
-                       {"vstring": "two"},
-               },
-       }
-
-       var result SliceOfStruct
-       for i := 0; i < b.N; i++ {
-               Decode(input, &result)
-       }
-}
-
-func Benchmark_DecodeWeaklyTypedInput(b *testing.B) {
-       type Person struct {
-               Name   string
-               Age    int
-               Emails []string
-       }
-
-       // This input can come from anywhere, but typically comes from
-       // something like decoding JSON, generated by a weakly typed language
-       // such as PHP.
-       input := map[string]interface{}{
-               "name":   123,                      // number => string
-               "age":    "42",                     // string => number
-               "emails": map[string]interface{}{}, // empty map => empty array
-       }
-
-       var result Person
-       config := &DecoderConfig{
-               WeaklyTypedInput: true,
-               Result:           &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               panic(err)
-       }
-
-       for i := 0; i < b.N; i++ {
-               decoder.Decode(input)
-       }
-}
-
-func Benchmark_DecodeMetadata(b *testing.B) {
-       type Person struct {
-               Name string
-               Age  int
-       }
-
-       input := map[string]interface{}{
-               "name":  "Mitchell",
-               "age":   91,
-               "email": "f...@bar.com",
-       }
-
-       var md Metadata
-       var result Person
-       config := &DecoderConfig{
-               Metadata: &md,
-               Result:   &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               panic(err)
-       }
-
-       for i := 0; i < b.N; i++ {
-               decoder.Decode(input)
-       }
-}
-
-func Benchmark_DecodeMetadataEmbedded(b *testing.B) {
-       input := map[string]interface{}{
-               "vstring": "foo",
-               "vunique": "bar",
-       }
-
-       var md Metadata
-       var result EmbeddedSquash
-       config := &DecoderConfig{
-               Metadata: &md,
-               Result:   &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               b.Fatalf("err: %s", err)
-       }
-
-       for i := 0; i < b.N; i++ {
-               decoder.Decode(input)
-       }
-}
-
-func Benchmark_DecodeTagged(b *testing.B) {
-       input := map[string]interface{}{
-               "foo": "bar",
-               "bar": "value",
-       }
-
-       var result Tagged
-       for i := 0; i < b.N; i++ {
-               Decode(input, &result)
-       }
-}

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go
----------------------------------------------------------------------
diff --git 
a/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go
 
b/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go
deleted file mode 100644
index 7054f1a..0000000
--- 
a/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go
+++ /dev/null
@@ -1,47 +0,0 @@
-package mapstructure
-
-import "testing"
-
-// GH-1
-func TestDecode_NilValue(t *testing.T) {
-       input := map[string]interface{}{
-               "vfoo":   nil,
-               "vother": nil,
-       }
-
-       var result Map
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("should not error: %s", err)
-       }
-
-       if result.Vfoo != "" {
-               t.Fatalf("value should be default: %s", result.Vfoo)
-       }
-
-       if result.Vother != nil {
-               t.Fatalf("Vother should be nil: %s", result.Vother)
-       }
-}
-
-// GH-10
-func TestDecode_mapInterfaceInterface(t *testing.T) {
-       input := map[interface{}]interface{}{
-               "vfoo":   nil,
-               "vother": nil,
-       }
-
-       var result Map
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("should not error: %s", err)
-       }
-
-       if result.Vfoo != "" {
-               t.Fatalf("value should be default: %s", result.Vfoo)
-       }
-
-       if result.Vother != nil {
-               t.Fatalf("Vother should be nil: %s", result.Vother)
-       }
-}

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_examples_test.go
----------------------------------------------------------------------
diff --git 
a/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_examples_test.go
 
b/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_examples_test.go
deleted file mode 100644
index f17c214..0000000
--- 
a/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_examples_test.go
+++ /dev/null
@@ -1,203 +0,0 @@
-package mapstructure
-
-import (
-       "fmt"
-)
-
-func ExampleDecode() {
-       type Person struct {
-               Name   string
-               Age    int
-               Emails []string
-               Extra  map[string]string
-       }
-
-       // This input can come from anywhere, but typically comes from
-       // something like decoding JSON where we're not quite sure of the
-       // struct initially.
-       input := map[string]interface{}{
-               "name":   "Mitchell",
-               "age":    91,
-               "emails": []string{"one", "two", "three"},
-               "extra": map[string]string{
-                       "twitter": "mitchellh",
-               },
-       }
-
-       var result Person
-       err := Decode(input, &result)
-       if err != nil {
-               panic(err)
-       }
-
-       fmt.Printf("%#v", result)
-       // Output:
-       // mapstructure.Person{Name:"Mitchell", Age:91, Emails:[]string{"one", 
"two", "three"}, Extra:map[string]string{"twitter":"mitchellh"}}
-}
-
-func ExampleDecode_errors() {
-       type Person struct {
-               Name   string
-               Age    int
-               Emails []string
-               Extra  map[string]string
-       }
-
-       // This input can come from anywhere, but typically comes from
-       // something like decoding JSON where we're not quite sure of the
-       // struct initially.
-       input := map[string]interface{}{
-               "name":   123,
-               "age":    "bad value",
-               "emails": []int{1, 2, 3},
-       }
-
-       var result Person
-       err := Decode(input, &result)
-       if err == nil {
-               panic("should have an error")
-       }
-
-       fmt.Println(err.Error())
-       // Output:
-       // 5 error(s) decoding:
-       //
-       // * 'Age' expected type 'int', got unconvertible type 'string'
-       // * 'Emails[0]' expected type 'string', got unconvertible type 'int'
-       // * 'Emails[1]' expected type 'string', got unconvertible type 'int'
-       // * 'Emails[2]' expected type 'string', got unconvertible type 'int'
-       // * 'Name' expected type 'string', got unconvertible type 'int'
-}
-
-func ExampleDecode_metadata() {
-       type Person struct {
-               Name string
-               Age  int
-       }
-
-       // This input can come from anywhere, but typically comes from
-       // something like decoding JSON where we're not quite sure of the
-       // struct initially.
-       input := map[string]interface{}{
-               "name":  "Mitchell",
-               "age":   91,
-               "email": "f...@bar.com",
-       }
-
-       // For metadata, we make a more advanced DecoderConfig so we can
-       // more finely configure the decoder that is used. In this case, we
-       // just tell the decoder we want to track metadata.
-       var md Metadata
-       var result Person
-       config := &DecoderConfig{
-               Metadata: &md,
-               Result:   &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               panic(err)
-       }
-
-       if err := decoder.Decode(input); err != nil {
-               panic(err)
-       }
-
-       fmt.Printf("Unused keys: %#v", md.Unused)
-       // Output:
-       // Unused keys: []string{"email"}
-}
-
-func ExampleDecode_weaklyTypedInput() {
-       type Person struct {
-               Name   string
-               Age    int
-               Emails []string
-       }
-
-       // This input can come from anywhere, but typically comes from
-       // something like decoding JSON, generated by a weakly typed language
-       // such as PHP.
-       input := map[string]interface{}{
-               "name":   123,                      // number => string
-               "age":    "42",                     // string => number
-               "emails": map[string]interface{}{}, // empty map => empty array
-       }
-
-       var result Person
-       config := &DecoderConfig{
-               WeaklyTypedInput: true,
-               Result:           &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               panic(err)
-       }
-
-       err = decoder.Decode(input)
-       if err != nil {
-               panic(err)
-       }
-
-       fmt.Printf("%#v", result)
-       // Output: mapstructure.Person{Name:"123", Age:42, Emails:[]string{}}
-}
-
-func ExampleDecode_tags() {
-       // Note that the mapstructure tags defined in the struct type
-       // can indicate which fields the values are mapped to.
-       type Person struct {
-               Name string `mapstructure:"person_name"`
-               Age  int    `mapstructure:"person_age"`
-       }
-
-       input := map[string]interface{}{
-               "person_name": "Mitchell",
-               "person_age":  91,
-       }
-
-       var result Person
-       err := Decode(input, &result)
-       if err != nil {
-               panic(err)
-       }
-
-       fmt.Printf("%#v", result)
-       // Output:
-       // mapstructure.Person{Name:"Mitchell", Age:91}
-}
-
-func ExampleDecode_embeddedStruct() {
-       // Squashing multiple embedded structs is allowed using the squash tag.
-       // This is demonstrated by creating a composite struct of multiple types
-       // and decoding into it. In this case, a person can carry with it both
-       // a Family and a Location, as well as their own FirstName.
-       type Family struct {
-               LastName string
-       }
-       type Location struct {
-               City string
-       }
-       type Person struct {
-               Family    `mapstructure:",squash"`
-               Location  `mapstructure:",squash"`
-               FirstName string
-       }
-
-       input := map[string]interface{}{
-               "FirstName": "Mitchell",
-               "LastName":  "Hashimoto",
-               "City":      "San Francisco",
-       }
-
-       var result Person
-       err := Decode(input, &result)
-       if err != nil {
-               panic(err)
-       }
-
-       fmt.Printf("%s %s, %s", result.FirstName, result.LastName, result.City)
-       // Output:
-       // Mitchell Hashimoto, San Francisco
-}

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_test.go
----------------------------------------------------------------------
diff --git 
a/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_test.go
 
b/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_test.go
deleted file mode 100644
index 45e7284..0000000
--- 
a/newt/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_test.go
+++ /dev/null
@@ -1,1047 +0,0 @@
-package mapstructure
-
-import (
-       "reflect"
-       "sort"
-       "strings"
-       "testing"
-)
-
-type Basic struct {
-       Vstring string
-       Vint    int
-       Vuint   uint
-       Vbool   bool
-       Vfloat  float64
-       Vextra  string
-       vsilent bool
-       Vdata   interface{}
-}
-
-type BasicSquash struct {
-       Test Basic `mapstructure:",squash"`
-}
-
-type Embedded struct {
-       Basic
-       Vunique string
-}
-
-type EmbeddedPointer struct {
-       *Basic
-       Vunique string
-}
-
-type EmbeddedSquash struct {
-       Basic   `mapstructure:",squash"`
-       Vunique string
-}
-
-type SquashOnNonStructType struct {
-       InvalidSquashType int `mapstructure:",squash"`
-}
-
-type Map struct {
-       Vfoo   string
-       Vother map[string]string
-}
-
-type MapOfStruct struct {
-       Value map[string]Basic
-}
-
-type Nested struct {
-       Vfoo string
-       Vbar Basic
-}
-
-type NestedPointer struct {
-       Vfoo string
-       Vbar *Basic
-}
-
-type Slice struct {
-       Vfoo string
-       Vbar []string
-}
-
-type SliceOfStruct struct {
-       Value []Basic
-}
-
-type Tagged struct {
-       Extra string `mapstructure:"bar,what,what"`
-       Value string `mapstructure:"foo"`
-}
-
-type TypeConversionResult struct {
-       IntToFloat         float32
-       IntToUint          uint
-       IntToBool          bool
-       IntToString        string
-       UintToInt          int
-       UintToFloat        float32
-       UintToBool         bool
-       UintToString       string
-       BoolToInt          int
-       BoolToUint         uint
-       BoolToFloat        float32
-       BoolToString       string
-       FloatToInt         int
-       FloatToUint        uint
-       FloatToBool        bool
-       FloatToString      string
-       SliceUint8ToString string
-       StringToInt        int
-       StringToUint       uint
-       StringToBool       bool
-       StringToFloat      float32
-       SliceToMap         map[string]interface{}
-       MapToSlice         []interface{}
-}
-
-func TestBasicTypes(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vstring": "foo",
-               "vint":    42,
-               "Vuint":   42,
-               "vbool":   true,
-               "Vfloat":  42.42,
-               "vsilent": true,
-               "vdata":   42,
-       }
-
-       var result Basic
-       err := Decode(input, &result)
-       if err != nil {
-               t.Errorf("got an err: %s", err.Error())
-               t.FailNow()
-       }
-
-       if result.Vstring != "foo" {
-               t.Errorf("vstring value should be 'foo': %#v", result.Vstring)
-       }
-
-       if result.Vint != 42 {
-               t.Errorf("vint value should be 42: %#v", result.Vint)
-       }
-
-       if result.Vuint != 42 {
-               t.Errorf("vuint value should be 42: %#v", result.Vuint)
-       }
-
-       if result.Vbool != true {
-               t.Errorf("vbool value should be true: %#v", result.Vbool)
-       }
-
-       if result.Vfloat != 42.42 {
-               t.Errorf("vfloat value should be 42.42: %#v", result.Vfloat)
-       }
-
-       if result.Vextra != "" {
-               t.Errorf("vextra value should be empty: %#v", result.Vextra)
-       }
-
-       if result.vsilent != false {
-               t.Error("vsilent should not be set, it is unexported")
-       }
-
-       if result.Vdata != 42 {
-               t.Error("vdata should be valid")
-       }
-}
-
-func TestBasic_IntWithFloat(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vint": float64(42),
-       }
-
-       var result Basic
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err)
-       }
-}
-
-func TestBasic_Merge(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vint": 42,
-       }
-
-       var result Basic
-       result.Vuint = 100
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err)
-       }
-
-       expected := Basic{
-               Vint:  42,
-               Vuint: 100,
-       }
-       if !reflect.DeepEqual(result, expected) {
-               t.Fatalf("bad: %#v", result)
-       }
-}
-
-func TestDecode_BasicSquash(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vstring": "foo",
-       }
-
-       var result BasicSquash
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err.Error())
-       }
-
-       if result.Test.Vstring != "foo" {
-               t.Errorf("vstring value should be 'foo': %#v", 
result.Test.Vstring)
-       }
-}
-
-func TestDecode_Embedded(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vstring": "foo",
-               "Basic": map[string]interface{}{
-                       "vstring": "innerfoo",
-               },
-               "vunique": "bar",
-       }
-
-       var result Embedded
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err.Error())
-       }
-
-       if result.Vstring != "innerfoo" {
-               t.Errorf("vstring value should be 'innerfoo': %#v", 
result.Vstring)
-       }
-
-       if result.Vunique != "bar" {
-               t.Errorf("vunique value should be 'bar': %#v", result.Vunique)
-       }
-}
-
-func TestDecode_EmbeddedPointer(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vstring": "foo",
-               "Basic": map[string]interface{}{
-                       "vstring": "innerfoo",
-               },
-               "vunique": "bar",
-       }
-
-       var result EmbeddedPointer
-       err := Decode(input, &result)
-       if err == nil {
-               t.Fatal("should get error")
-       }
-}
-
-func TestDecode_EmbeddedSquash(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vstring": "foo",
-               "vunique": "bar",
-       }
-
-       var result EmbeddedSquash
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err.Error())
-       }
-
-       if result.Vstring != "foo" {
-               t.Errorf("vstring value should be 'foo': %#v", result.Vstring)
-       }
-
-       if result.Vunique != "bar" {
-               t.Errorf("vunique value should be 'bar': %#v", result.Vunique)
-       }
-}
-
-func TestDecode_SquashOnNonStructType(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "InvalidSquashType": 42,
-       }
-
-       var result SquashOnNonStructType
-       err := Decode(input, &result)
-       if err == nil {
-               t.Fatal("unexpected success decoding invalid squash field type")
-       } else if !strings.Contains(err.Error(), "unsupported type for squash") 
{
-               t.Fatalf("unexpected error message for invalid squash field 
type: %s", err)
-       }
-}
-
-func TestDecode_DecodeHook(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vint": "WHAT",
-       }
-
-       decodeHook := func(from reflect.Kind, to reflect.Kind, v interface{}) 
(interface{}, error) {
-               if from == reflect.String && to != reflect.String {
-                       return 5, nil
-               }
-
-               return v, nil
-       }
-
-       var result Basic
-       config := &DecoderConfig{
-               DecodeHook: decodeHook,
-               Result:     &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       err = decoder.Decode(input)
-       if err != nil {
-               t.Fatalf("got an err: %s", err)
-       }
-
-       if result.Vint != 5 {
-               t.Errorf("vint should be 5: %#v", result.Vint)
-       }
-}
-
-func TestDecode_DecodeHookType(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vint": "WHAT",
-       }
-
-       decodeHook := func(from reflect.Type, to reflect.Type, v interface{}) 
(interface{}, error) {
-               if from.Kind() == reflect.String &&
-                       to.Kind() != reflect.String {
-                       return 5, nil
-               }
-
-               return v, nil
-       }
-
-       var result Basic
-       config := &DecoderConfig{
-               DecodeHook: decodeHook,
-               Result:     &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       err = decoder.Decode(input)
-       if err != nil {
-               t.Fatalf("got an err: %s", err)
-       }
-
-       if result.Vint != 5 {
-               t.Errorf("vint should be 5: %#v", result.Vint)
-       }
-}
-
-func TestDecode_Nil(t *testing.T) {
-       t.Parallel()
-
-       var input interface{} = nil
-       result := Basic{
-               Vstring: "foo",
-       }
-
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       if result.Vstring != "foo" {
-               t.Fatalf("bad: %#v", result.Vstring)
-       }
-}
-
-func TestDecode_NonStruct(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "foo": "bar",
-               "bar": "baz",
-       }
-
-       var result map[string]string
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       if result["foo"] != "bar" {
-               t.Fatal("foo is not bar")
-       }
-}
-
-func TestDecode_StructMatch(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vbar": Basic{
-                       Vstring: "foo",
-               },
-       }
-
-       var result Nested
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err.Error())
-       }
-
-       if result.Vbar.Vstring != "foo" {
-               t.Errorf("bad: %#v", result)
-       }
-}
-
-func TestDecode_TypeConversion(t *testing.T) {
-       input := map[string]interface{}{
-               "IntToFloat":         42,
-               "IntToUint":          42,
-               "IntToBool":          1,
-               "IntToString":        42,
-               "UintToInt":          42,
-               "UintToFloat":        42,
-               "UintToBool":         42,
-               "UintToString":       42,
-               "BoolToInt":          true,
-               "BoolToUint":         true,
-               "BoolToFloat":        true,
-               "BoolToString":       true,
-               "FloatToInt":         42.42,
-               "FloatToUint":        42.42,
-               "FloatToBool":        42.42,
-               "FloatToString":      42.42,
-               "SliceUint8ToString": []uint8("foo"),
-               "StringToInt":        "42",
-               "StringToUint":       "42",
-               "StringToBool":       "1",
-               "StringToFloat":      "42.42",
-               "SliceToMap":         []interface{}{},
-               "MapToSlice":         map[string]interface{}{},
-       }
-
-       expectedResultStrict := TypeConversionResult{
-               IntToFloat:  42.0,
-               IntToUint:   42,
-               UintToInt:   42,
-               UintToFloat: 42,
-               BoolToInt:   0,
-               BoolToUint:  0,
-               BoolToFloat: 0,
-               FloatToInt:  42,
-               FloatToUint: 42,
-       }
-
-       expectedResultWeak := TypeConversionResult{
-               IntToFloat:         42.0,
-               IntToUint:          42,
-               IntToBool:          true,
-               IntToString:        "42",
-               UintToInt:          42,
-               UintToFloat:        42,
-               UintToBool:         true,
-               UintToString:       "42",
-               BoolToInt:          1,
-               BoolToUint:         1,
-               BoolToFloat:        1,
-               BoolToString:       "1",
-               FloatToInt:         42,
-               FloatToUint:        42,
-               FloatToBool:        true,
-               FloatToString:      "42.42",
-               SliceUint8ToString: "foo",
-               StringToInt:        42,
-               StringToUint:       42,
-               StringToBool:       true,
-               StringToFloat:      42.42,
-               SliceToMap:         map[string]interface{}{},
-               MapToSlice:         []interface{}{},
-       }
-
-       // Test strict type conversion
-       var resultStrict TypeConversionResult
-       err := Decode(input, &resultStrict)
-       if err == nil {
-               t.Errorf("should return an error")
-       }
-       if !reflect.DeepEqual(resultStrict, expectedResultStrict) {
-               t.Errorf("expected %v, got: %v", expectedResultStrict, 
resultStrict)
-       }
-
-       // Test weak type conversion
-       var decoder *Decoder
-       var resultWeak TypeConversionResult
-
-       config := &DecoderConfig{
-               WeaklyTypedInput: true,
-               Result:           &resultWeak,
-       }
-
-       decoder, err = NewDecoder(config)
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       err = decoder.Decode(input)
-       if err != nil {
-               t.Fatalf("got an err: %s", err)
-       }
-
-       if !reflect.DeepEqual(resultWeak, expectedResultWeak) {
-               t.Errorf("expected \n%#v, got: \n%#v", expectedResultWeak, 
resultWeak)
-       }
-}
-
-func TestDecoder_ErrorUnused(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vstring": "hello",
-               "foo":     "bar",
-       }
-
-       var result Basic
-       config := &DecoderConfig{
-               ErrorUnused: true,
-               Result:      &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       err = decoder.Decode(input)
-       if err == nil {
-               t.Fatal("expected error")
-       }
-}
-
-func TestMap(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vfoo": "foo",
-               "vother": map[interface{}]interface{}{
-                       "foo": "foo",
-                       "bar": "bar",
-               },
-       }
-
-       var result Map
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an error: %s", err)
-       }
-
-       if result.Vfoo != "foo" {
-               t.Errorf("vfoo value should be 'foo': %#v", result.Vfoo)
-       }
-
-       if result.Vother == nil {
-               t.Fatal("vother should not be nil")
-       }
-
-       if len(result.Vother) != 2 {
-               t.Error("vother should have two items")
-       }
-
-       if result.Vother["foo"] != "foo" {
-               t.Errorf("'foo' key should be foo, got: %#v", 
result.Vother["foo"])
-       }
-
-       if result.Vother["bar"] != "bar" {
-               t.Errorf("'bar' key should be bar, got: %#v", 
result.Vother["bar"])
-       }
-}
-
-func TestMapMerge(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vfoo": "foo",
-               "vother": map[interface{}]interface{}{
-                       "foo": "foo",
-                       "bar": "bar",
-               },
-       }
-
-       var result Map
-       result.Vother = map[string]string{"hello": "world"}
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an error: %s", err)
-       }
-
-       if result.Vfoo != "foo" {
-               t.Errorf("vfoo value should be 'foo': %#v", result.Vfoo)
-       }
-
-       expected := map[string]string{
-               "foo":   "foo",
-               "bar":   "bar",
-               "hello": "world",
-       }
-       if !reflect.DeepEqual(result.Vother, expected) {
-               t.Errorf("bad: %#v", result.Vother)
-       }
-}
-
-func TestMapOfStruct(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "value": map[string]interface{}{
-                       "foo": map[string]string{"vstring": "one"},
-                       "bar": map[string]string{"vstring": "two"},
-               },
-       }
-
-       var result MapOfStruct
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err)
-       }
-
-       if result.Value == nil {
-               t.Fatal("value should not be nil")
-       }
-
-       if len(result.Value) != 2 {
-               t.Error("value should have two items")
-       }
-
-       if result.Value["foo"].Vstring != "one" {
-               t.Errorf("foo value should be 'one', got: %s", 
result.Value["foo"].Vstring)
-       }
-
-       if result.Value["bar"].Vstring != "two" {
-               t.Errorf("bar value should be 'two', got: %s", 
result.Value["bar"].Vstring)
-       }
-}
-
-func TestNestedType(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vfoo": "foo",
-               "vbar": map[string]interface{}{
-                       "vstring": "foo",
-                       "vint":    42,
-                       "vbool":   true,
-               },
-       }
-
-       var result Nested
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err.Error())
-       }
-
-       if result.Vfoo != "foo" {
-               t.Errorf("vfoo value should be 'foo': %#v", result.Vfoo)
-       }
-
-       if result.Vbar.Vstring != "foo" {
-               t.Errorf("vstring value should be 'foo': %#v", 
result.Vbar.Vstring)
-       }
-
-       if result.Vbar.Vint != 42 {
-               t.Errorf("vint value should be 42: %#v", result.Vbar.Vint)
-       }
-
-       if result.Vbar.Vbool != true {
-               t.Errorf("vbool value should be true: %#v", result.Vbar.Vbool)
-       }
-
-       if result.Vbar.Vextra != "" {
-               t.Errorf("vextra value should be empty: %#v", 
result.Vbar.Vextra)
-       }
-}
-
-func TestNestedTypePointer(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vfoo": "foo",
-               "vbar": &map[string]interface{}{
-                       "vstring": "foo",
-                       "vint":    42,
-                       "vbool":   true,
-               },
-       }
-
-       var result NestedPointer
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got an err: %s", err.Error())
-       }
-
-       if result.Vfoo != "foo" {
-               t.Errorf("vfoo value should be 'foo': %#v", result.Vfoo)
-       }
-
-       if result.Vbar.Vstring != "foo" {
-               t.Errorf("vstring value should be 'foo': %#v", 
result.Vbar.Vstring)
-       }
-
-       if result.Vbar.Vint != 42 {
-               t.Errorf("vint value should be 42: %#v", result.Vbar.Vint)
-       }
-
-       if result.Vbar.Vbool != true {
-               t.Errorf("vbool value should be true: %#v", result.Vbar.Vbool)
-       }
-
-       if result.Vbar.Vextra != "" {
-               t.Errorf("vextra value should be empty: %#v", 
result.Vbar.Vextra)
-       }
-}
-
-func TestSlice(t *testing.T) {
-       t.Parallel()
-
-       inputStringSlice := map[string]interface{}{
-               "vfoo": "foo",
-               "vbar": []string{"foo", "bar", "baz"},
-       }
-
-       inputStringSlicePointer := map[string]interface{}{
-               "vfoo": "foo",
-               "vbar": &[]string{"foo", "bar", "baz"},
-       }
-
-       outputStringSlice := &Slice{
-               "foo",
-               []string{"foo", "bar", "baz"},
-       }
-
-       testSliceInput(t, inputStringSlice, outputStringSlice)
-       testSliceInput(t, inputStringSlicePointer, outputStringSlice)
-}
-
-func TestInvalidSlice(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vfoo": "foo",
-               "vbar": 42,
-       }
-
-       result := Slice{}
-       err := Decode(input, &result)
-       if err == nil {
-               t.Errorf("expected failure")
-       }
-}
-
-func TestSliceOfStruct(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "value": []map[string]interface{}{
-                       {"vstring": "one"},
-                       {"vstring": "two"},
-               },
-       }
-
-       var result SliceOfStruct
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got unexpected error: %s", err)
-       }
-
-       if len(result.Value) != 2 {
-               t.Fatalf("expected two values, got %d", len(result.Value))
-       }
-
-       if result.Value[0].Vstring != "one" {
-               t.Errorf("first value should be 'one', got: %s", 
result.Value[0].Vstring)
-       }
-
-       if result.Value[1].Vstring != "two" {
-               t.Errorf("second value should be 'two', got: %s", 
result.Value[1].Vstring)
-       }
-}
-
-func TestSliceToMap(t *testing.T) {
-       t.Parallel()
-
-       input := []map[string]interface{}{
-               map[string]interface{}{
-                       "foo": "bar",
-               },
-               map[string]interface{}{
-                       "bar": "baz",
-               },
-       }
-
-       var result map[string]interface{}
-       err := WeakDecode(input, &result)
-       if err != nil {
-               t.Fatalf("got an error: %s", err)
-       }
-
-       expected := map[string]interface{}{
-               "foo": "bar",
-               "bar": "baz",
-       }
-       if !reflect.DeepEqual(result, expected) {
-               t.Errorf("bad: %#v", result)
-       }
-}
-
-func TestInvalidType(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vstring": 42,
-       }
-
-       var result Basic
-       err := Decode(input, &result)
-       if err == nil {
-               t.Fatal("error should exist")
-       }
-
-       derr, ok := err.(*Error)
-       if !ok {
-               t.Fatalf("error should be kind of Error, instead: %#v", err)
-       }
-
-       if derr.Errors[0] != "'Vstring' expected type 'string', got 
unconvertible type 'int'" {
-               t.Errorf("got unexpected error: %s", err)
-       }
-
-       inputNegIntUint := map[string]interface{}{
-               "vuint": -42,
-       }
-
-       err = Decode(inputNegIntUint, &result)
-       if err == nil {
-               t.Fatal("error should exist")
-       }
-
-       derr, ok = err.(*Error)
-       if !ok {
-               t.Fatalf("error should be kind of Error, instead: %#v", err)
-       }
-
-       if derr.Errors[0] != "cannot parse 'Vuint', -42 overflows uint" {
-               t.Errorf("got unexpected error: %s", err)
-       }
-
-       inputNegFloatUint := map[string]interface{}{
-               "vuint": -42.0,
-       }
-
-       err = Decode(inputNegFloatUint, &result)
-       if err == nil {
-               t.Fatal("error should exist")
-       }
-
-       derr, ok = err.(*Error)
-       if !ok {
-               t.Fatalf("error should be kind of Error, instead: %#v", err)
-       }
-
-       if derr.Errors[0] != "cannot parse 'Vuint', -42.000000 overflows uint" {
-               t.Errorf("got unexpected error: %s", err)
-       }
-}
-
-func TestMetadata(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vfoo": "foo",
-               "vbar": map[string]interface{}{
-                       "vstring": "foo",
-                       "Vuint":   42,
-                       "foo":     "bar",
-               },
-               "bar": "nil",
-       }
-
-       var md Metadata
-       var result Nested
-       config := &DecoderConfig{
-               Metadata: &md,
-               Result:   &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       err = decoder.Decode(input)
-       if err != nil {
-               t.Fatalf("err: %s", err.Error())
-       }
-
-       expectedKeys := []string{"Vbar", "Vbar.Vstring", "Vbar.Vuint", "Vfoo"}
-       sort.Strings(md.Keys)
-       if !reflect.DeepEqual(md.Keys, expectedKeys) {
-               t.Fatalf("bad keys: %#v", md.Keys)
-       }
-
-       expectedUnused := []string{"Vbar.foo", "bar"}
-       if !reflect.DeepEqual(md.Unused, expectedUnused) {
-               t.Fatalf("bad unused: %#v", md.Unused)
-       }
-}
-
-func TestMetadata_Embedded(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "vstring": "foo",
-               "vunique": "bar",
-       }
-
-       var md Metadata
-       var result EmbeddedSquash
-       config := &DecoderConfig{
-               Metadata: &md,
-               Result:   &result,
-       }
-
-       decoder, err := NewDecoder(config)
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       err = decoder.Decode(input)
-       if err != nil {
-               t.Fatalf("err: %s", err.Error())
-       }
-
-       expectedKeys := []string{"Vstring", "Vunique"}
-
-       sort.Strings(md.Keys)
-       if !reflect.DeepEqual(md.Keys, expectedKeys) {
-               t.Fatalf("bad keys: %#v", md.Keys)
-       }
-
-       expectedUnused := []string{}
-       if !reflect.DeepEqual(md.Unused, expectedUnused) {
-               t.Fatalf("bad unused: %#v", md.Unused)
-       }
-}
-
-func TestNonPtrValue(t *testing.T) {
-       t.Parallel()
-
-       err := Decode(map[string]interface{}{}, Basic{})
-       if err == nil {
-               t.Fatal("error should exist")
-       }
-
-       if err.Error() != "result must be a pointer" {
-               t.Errorf("got unexpected error: %s", err)
-       }
-}
-
-func TestTagged(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "foo": "bar",
-               "bar": "value",
-       }
-
-       var result Tagged
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("unexpected error: %s", err)
-       }
-
-       if result.Value != "bar" {
-               t.Errorf("value should be 'bar', got: %#v", result.Value)
-       }
-
-       if result.Extra != "value" {
-               t.Errorf("extra should be 'value', got: %#v", result.Extra)
-       }
-}
-
-func TestWeakDecode(t *testing.T) {
-       t.Parallel()
-
-       input := map[string]interface{}{
-               "foo": "4",
-               "bar": "value",
-       }
-
-       var result struct {
-               Foo int
-               Bar string
-       }
-
-       if err := WeakDecode(input, &result); err != nil {
-               t.Fatalf("err: %s", err)
-       }
-       if result.Foo != 4 {
-               t.Fatalf("bad: %#v", result)
-       }
-       if result.Bar != "value" {
-               t.Fatalf("bad: %#v", result)
-       }
-}
-
-func testSliceInput(t *testing.T, input map[string]interface{}, expected 
*Slice) {
-       var result Slice
-       err := Decode(input, &result)
-       if err != nil {
-               t.Fatalf("got error: %s", err)
-       }
-
-       if result.Vfoo != expected.Vfoo {
-               t.Errorf("Vfoo expected '%s', got '%s'", expected.Vfoo, 
result.Vfoo)
-       }
-
-       if result.Vbar == nil {
-               t.Fatalf("Vbar a slice, got '%#v'", result.Vbar)
-       }
-
-       if len(result.Vbar) != len(expected.Vbar) {
-               t.Errorf("Vbar length should be %d, got %d", 
len(expected.Vbar), len(result.Vbar))
-       }
-
-       for i, v := range result.Vbar {
-               if v != expected.Vbar[i] {
-                       t.Errorf(
-                               "Vbar[%d] should be '%#v', got '%#v'",
-                               i, expected.Vbar[i], v)
-               }
-       }
-}

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cast/.gitignore
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cast/.gitignore 
b/newt/Godeps/_workspace/src/github.com/spf13/cast/.gitignore
deleted file mode 100644
index 8365624..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cast/.gitignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# Compiled Object files, Static and Dynamic libs (Shared Objects)
-*.o
-*.a
-*.so
-
-# Folders
-_obj
-_test
-
-# Architecture specific extensions/prefixes
-*.[568vq]
-[568vq].out
-
-*.cgo1.go
-*.cgo2.c
-_cgo_defun.c
-_cgo_gotypes.go
-_cgo_export.*
-
-_testmain.go
-
-*.exe
-*.test

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cast/LICENSE
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cast/LICENSE 
b/newt/Godeps/_workspace/src/github.com/spf13/cast/LICENSE
deleted file mode 100644
index 4527efb..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cast/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014 Steve Francia
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cast/README.md
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cast/README.md 
b/newt/Godeps/_workspace/src/github.com/spf13/cast/README.md
deleted file mode 100644
index af7a1fd..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cast/README.md
+++ /dev/null
@@ -1,72 +0,0 @@
-cast
-====
-
-Easy and safe casting from one type to another in Go
-
-Don’t Panic! ... Cast
-
-## What is Cast?
-
-Cast is a library to convert between different go types in a consistent and 
easy way.
-
-Cast provides simple functions to easily convert a number to a string, an
-interface into a bool, etc. Cast does this intelligently when an obvious
-conversion is possible. It doesn’t make any attempts to guess what you meant,
-for example you can only convert a string to an int when it is a string
-representation of an int such as “8”. Cast was developed for use in
-[Hugo](http://hugo.spf13.com), a website engine which uses YAML, TOML or JSON
-for meta data.
-
-## Why use Cast?
-
-When working with dynamic data in Go you often need to cast or convert the data
-from one type into another. Cast goes beyond just using type assertion (though
-it uses that when possible) to provide a very straightforward and convenient
-library.
-
-If you are working with interfaces to handle things like dynamic content
-you’ll need an easy way to convert an interface into a given type. This
-is the library for you.
-
-If you are taking in data from YAML, TOML or JSON or other formats which lack
-full types, then Cast is the library for you.
-
-## Usage
-
-Cast provides a handful of To_____ methods. These methods will always return
-the desired type. **If input is provided that will not convert to that type, 
the
-0 or nil value for that type will be returned**.
-
-Cast also provides identical methods To_____E. These return the same result as
-the To_____ methods, plus an additional error which tells you if it 
successfully
-converted. Using these methods you can tell the difference between when the
-input matched the zero value or when the conversion failed and the zero value
-was returned.
-
-The following examples are merely a sample of what is available. Please review
-the code for a complete set.
-
-### Example ‘ToString’:
-
-    cast.ToString("mayonegg")         // "mayonegg"
-    cast.ToString(8)                  // "8"
-    cast.ToString(8.31)               // "8.31"
-    cast.ToString([]byte("one time")) // "one time"
-    cast.ToString(nil)                // ""
-
-       var foo interface{} = "one more time"
-    cast.ToString(foo)                // "one more time"
-
-
-### Example ‘ToInt’:
-
-    cast.ToInt(8)                  // 8
-    cast.ToInt(8.31)               // 8
-    cast.ToInt("8")                // 8
-    cast.ToInt(true)               // 1
-    cast.ToInt(false)              // 0
-
-       var eight interface{} = 8
-    cast.ToInt(eight)              // 8
-    cast.ToInt(nil)                // 0
-

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cast/cast.go
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cast/cast.go 
b/newt/Godeps/_workspace/src/github.com/spf13/cast/cast.go
deleted file mode 100644
index de5a686..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cast/cast.go
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright © 2014 Steve Francia <s...@spf13.com>.
-//
-// Use of this source code is governed by an MIT-style
-// license that can be found in the LICENSE file.
-
-package cast
-
-import "time"
-
-func ToBool(i interface{}) bool {
-       v, _ := ToBoolE(i)
-       return v
-}
-
-func ToTime(i interface{}) time.Time {
-       v, _ := ToTimeE(i)
-       return v
-}
-
-func ToDuration(i interface{}) time.Duration {
-       v, _ := ToDurationE(i)
-       return v
-}
-
-func ToFloat64(i interface{}) float64 {
-       v, _ := ToFloat64E(i)
-       return v
-}
-
-func ToInt64(i interface{}) int64 {
-       v, _ := ToInt64E(i)
-       return v
-}
-
-func ToInt(i interface{}) int {
-       v, _ := ToIntE(i)
-       return v
-}
-
-func ToString(i interface{}) string {
-       v, _ := ToStringE(i)
-       return v
-}
-
-func ToStringMapString(i interface{}) map[string]string {
-       v, _ := ToStringMapStringE(i)
-       return v
-}
-
-func ToStringMapStringSlice(i interface{}) map[string][]string {
-       v, _ := ToStringMapStringSliceE(i)
-       return v
-}
-
-func ToStringMapBool(i interface{}) map[string]bool {
-       v, _ := ToStringMapBoolE(i)
-       return v
-}
-
-func ToStringMap(i interface{}) map[string]interface{} {
-       v, _ := ToStringMapE(i)
-       return v
-}
-
-func ToSlice(i interface{}) []interface{} {
-       v, _ := ToSliceE(i)
-       return v
-}
-
-func ToStringSlice(i interface{}) []string {
-       v, _ := ToStringSliceE(i)
-       return v
-}
-
-func ToIntSlice(i interface{}) []int {
-       v, _ := ToIntSliceE(i)
-       return v
-}

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cast/cast_test.go
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cast/cast_test.go 
b/newt/Godeps/_workspace/src/github.com/spf13/cast/cast_test.go
deleted file mode 100644
index 3fbcf87..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cast/cast_test.go
+++ /dev/null
@@ -1,179 +0,0 @@
-// Copyright © 2014 Steve Francia <s...@spf13.com>.
-//
-// Use of this source code is governed by an MIT-style
-// license that can be found in the LICENSE file.
-
-package cast
-
-import (
-       "html/template"
-       "testing"
-       "time"
-
-       "github.com/stretchr/testify/assert"
-)
-
-func TestToInt(t *testing.T) {
-       var eight interface{} = 8
-       assert.Equal(t, ToInt(8), 8)
-       assert.Equal(t, ToInt(8.31), 8)
-       assert.Equal(t, ToInt("8"), 8)
-       assert.Equal(t, ToInt(true), 1)
-       assert.Equal(t, ToInt(false), 0)
-       assert.Equal(t, ToInt(eight), 8)
-}
-
-func TestToInt64(t *testing.T) {
-       var eight interface{} = 8
-       assert.Equal(t, ToInt64(int64(8)), int64(8))
-       assert.Equal(t, ToInt64(8), int64(8))
-       assert.Equal(t, ToInt64(8.31), int64(8))
-       assert.Equal(t, ToInt64("8"), int64(8))
-       assert.Equal(t, ToInt64(true), int64(1))
-       assert.Equal(t, ToInt64(false), int64(0))
-       assert.Equal(t, ToInt64(eight), int64(8))
-}
-
-func TestToFloat64(t *testing.T) {
-       var eight interface{} = 8
-       assert.Equal(t, ToFloat64(8), 8.00)
-       assert.Equal(t, ToFloat64(8.31), 8.31)
-       assert.Equal(t, ToFloat64("8.31"), 8.31)
-       assert.Equal(t, ToFloat64(eight), 8.0)
-}
-
-func TestToString(t *testing.T) {
-       var foo interface{} = "one more time"
-       assert.Equal(t, ToString(8), "8")
-       assert.Equal(t, ToString(int64(16)), "16")
-       assert.Equal(t, ToString(8.12), "8.12")
-       assert.Equal(t, ToString([]byte("one time")), "one time")
-       assert.Equal(t, ToString(template.HTML("one time")), "one time")
-       assert.Equal(t, ToString(template.URL("http://somehost.foo";)), 
"http://somehost.foo";)
-       assert.Equal(t, ToString(template.JS("(1+2)")), "(1+2)")
-       assert.Equal(t, ToString(template.CSS("a")), "a")
-       assert.Equal(t, ToString(template.HTMLAttr("a")), "a")
-       assert.Equal(t, ToString(foo), "one more time")
-       assert.Equal(t, ToString(nil), "")
-       assert.Equal(t, ToString(true), "true")
-       assert.Equal(t, ToString(false), "false")
-}
-
-type foo struct {
-       val string
-}
-
-func (x foo) String() string {
-       return x.val
-}
-
-func TestStringerToString(t *testing.T) {
-
-       var x foo
-       x.val = "bar"
-       assert.Equal(t, "bar", ToString(x))
-}
-
-type fu struct {
-       val string
-}
-
-func (x fu) Error() string {
-       return x.val
-}
-
-func TestErrorToString(t *testing.T) {
-       var x fu
-       x.val = "bar"
-       assert.Equal(t, "bar", ToString(x))
-}
-
-func TestMaps(t *testing.T) {
-       var taxonomies = map[interface{}]interface{}{"tag": "tags", "group": 
"groups"}
-       var stringMapBool = map[interface{}]interface{}{"v1": true, "v2": false}
-
-       // ToStringMapString inputs/outputs
-       var stringMapString = map[string]string{"key 1": "value 1", "key 2": 
"value 2", "key 3": "value 3"}
-       var stringMapInterface = map[string]interface{}{"key 1": "value 1", 
"key 2": "value 2", "key 3": "value 3"}
-       var interfaceMapString = map[interface{}]string{"key 1": "value 1", 
"key 2": "value 2", "key 3": "value 3"}
-       var interfaceMapInterface = map[interface{}]interface{}{"key 1": "value 
1", "key 2": "value 2", "key 3": "value 3"}
-
-       // ToStringMapStringSlice inputs/outputs
-       var stringMapStringSlice = map[string][]string{"key 1": []string{"value 
1", "value 2", "value 3"}, "key 2": []string{"value 1", "value 2", "value 3"}, 
"key 3": []string{"value 1", "value 2", "value 3"}}
-       var stringMapInterfaceSlice = map[string][]interface{}{"key 1": 
[]interface{}{"value 1", "value 2", "value 3"}, "key 2": []interface{}{"value 
1", "value 2", "value 3"}, "key 3": []interface{}{"value 1", "value 2", "value 
3"}}
-       var stringMapStringSingleSliceFieldsResult = map[string][]string{"key 
1": []string{"value", "1"}, "key 2": []string{"value", "2"}, "key 3": 
[]string{"value", "3"}}
-       var interfaceMapStringSlice = map[interface{}][]string{"key 1": 
[]string{"value 1", "value 2", "value 3"}, "key 2": []string{"value 1", "value 
2", "value 3"}, "key 3": []string{"value 1", "value 2", "value 3"}}
-       var interfaceMapInterfaceSlice = map[interface{}][]interface{}{"key 1": 
[]interface{}{"value 1", "value 2", "value 3"}, "key 2": []interface{}{"value 
1", "value 2", "value 3"}, "key 3": []interface{}{"value 1", "value 2", "value 
3"}}
-
-       var stringMapStringSliceMultiple = map[string][]string{"key 1": 
[]string{"value 1", "value 2", "value 3"}, "key 2": []string{"value 1", "value 
2", "value 3"}, "key 3": []string{"value 1", "value 2", "value 3"}}
-       var stringMapStringSliceSingle = map[string][]string{"key 1": 
[]string{"value 1"}, "key 2": []string{"value 2"}, "key 3": []string{"value 3"}}
-
-       assert.Equal(t, ToStringMap(taxonomies), map[string]interface{}{"tag": 
"tags", "group": "groups"})
-       assert.Equal(t, ToStringMapBool(stringMapBool), map[string]bool{"v1": 
true, "v2": false})
-
-       // ToStringMapString tests
-       assert.Equal(t, ToStringMapString(stringMapString), stringMapString)
-       assert.Equal(t, ToStringMapString(stringMapInterface), stringMapString)
-       assert.Equal(t, ToStringMapString(interfaceMapString), stringMapString)
-       assert.Equal(t, ToStringMapString(interfaceMapInterface), 
stringMapString)
-
-       // ToStringMapStringSlice tests
-       assert.Equal(t, ToStringMapStringSlice(stringMapStringSlice), 
stringMapStringSlice)
-       assert.Equal(t, ToStringMapStringSlice(stringMapInterfaceSlice), 
stringMapStringSlice)
-       assert.Equal(t, ToStringMapStringSlice(stringMapStringSliceMultiple), 
stringMapStringSlice)
-       assert.Equal(t, ToStringMapStringSlice(stringMapStringSliceMultiple), 
stringMapStringSlice)
-       assert.Equal(t, ToStringMapStringSlice(stringMapString), 
stringMapStringSliceSingle)
-       assert.Equal(t, ToStringMapStringSlice(stringMapInterface), 
stringMapStringSliceSingle)
-       assert.Equal(t, ToStringMapStringSlice(interfaceMapStringSlice), 
stringMapStringSlice)
-       assert.Equal(t, ToStringMapStringSlice(interfaceMapInterfaceSlice), 
stringMapStringSlice)
-       assert.Equal(t, ToStringMapStringSlice(interfaceMapString), 
stringMapStringSingleSliceFieldsResult)
-       assert.Equal(t, ToStringMapStringSlice(interfaceMapInterface), 
stringMapStringSingleSliceFieldsResult)
-}
-
-func TestSlices(t *testing.T) {
-       assert.Equal(t, []string{"a", "b"}, ToStringSlice([]string{"a", "b"}))
-       assert.Equal(t, []string{"1", "3"}, ToStringSlice([]interface{}{1, 3}))
-       assert.Equal(t, []int{1, 3}, ToIntSlice([]int{1, 3}))
-       assert.Equal(t, []int{1, 3}, ToIntSlice([]interface{}{1.2, 3.2}))
-       assert.Equal(t, []int{2, 3}, ToIntSlice([]string{"2", "3"}))
-       assert.Equal(t, []int{2, 3}, ToIntSlice([2]string{"2", "3"}))
-}
-
-func TestToBool(t *testing.T) {
-       assert.Equal(t, ToBool(0), false)
-       assert.Equal(t, ToBool(nil), false)
-       assert.Equal(t, ToBool("false"), false)
-       assert.Equal(t, ToBool("FALSE"), false)
-       assert.Equal(t, ToBool("False"), false)
-       assert.Equal(t, ToBool("f"), false)
-       assert.Equal(t, ToBool("F"), false)
-       assert.Equal(t, ToBool(false), false)
-       assert.Equal(t, ToBool("foo"), false)
-
-       assert.Equal(t, ToBool("true"), true)
-       assert.Equal(t, ToBool("TRUE"), true)
-       assert.Equal(t, ToBool("True"), true)
-       assert.Equal(t, ToBool("t"), true)
-       assert.Equal(t, ToBool("T"), true)
-       assert.Equal(t, ToBool(1), true)
-       assert.Equal(t, ToBool(true), true)
-       assert.Equal(t, ToBool(-1), true)
-}
-
-func TestIndirectPointers(t *testing.T) {
-       x := 13
-       y := &x
-       z := &y
-
-       assert.Equal(t, ToInt(y), 13)
-       assert.Equal(t, ToInt(z), 13)
-}
-
-func TestToDuration(t *testing.T) {
-       a := time.Second * 5
-       ai := int64(a)
-       b := time.Second * 5
-       bf := float64(b)
-       assert.Equal(t, ToDuration(ai), a)
-       assert.Equal(t, ToDuration(bf), b)
-}

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cast/caste.go
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cast/caste.go 
b/newt/Godeps/_workspace/src/github.com/spf13/cast/caste.go
deleted file mode 100644
index 2377896..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cast/caste.go
+++ /dev/null
@@ -1,500 +0,0 @@
-// Copyright © 2014 Steve Francia <s...@spf13.com>.
-//
-// Use of this source code is governed by an MIT-style
-// license that can be found in the LICENSE file.
-
-package cast
-
-import (
-       "fmt"
-       "html/template"
-       "reflect"
-       "strconv"
-       "strings"
-       "time"
-
-       jww "github.com/spf13/jwalterweatherman"
-)
-
-// ToTimeE casts an empty interface to time.Time.
-func ToTimeE(i interface{}) (tim time.Time, err error) {
-       i = indirect(i)
-       jww.DEBUG.Println("ToTimeE called on type:", reflect.TypeOf(i))
-
-       switch s := i.(type) {
-       case time.Time:
-               return s, nil
-       case string:
-               d, e := StringToDate(s)
-               if e == nil {
-                       return d, nil
-               }
-               return time.Time{}, fmt.Errorf("Could not parse Date/Time 
format: %v\n", e)
-       default:
-               return time.Time{}, fmt.Errorf("Unable to Cast %#v to Time\n", 
i)
-       }
-}
-
-// ToDurationE casts an empty interface to time.Duration.
-func ToDurationE(i interface{}) (d time.Duration, err error) {
-       i = indirect(i)
-       jww.DEBUG.Println("ToDurationE called on type:", reflect.TypeOf(i))
-
-       switch s := i.(type) {
-       case time.Duration:
-               return s, nil
-       case int64:
-               d = time.Duration(s)
-               return
-       case float64:
-               d = time.Duration(s)
-               return
-       case string:
-               d, err = time.ParseDuration(s)
-               return
-       default:
-               err = fmt.Errorf("Unable to Cast %#v to Duration\n", i)
-               return
-       }
-}
-
-// ToBoolE casts an empty interface to a bool.
-func ToBoolE(i interface{}) (bool, error) {
-       i = indirect(i)
-       jww.DEBUG.Println("ToBoolE called on type:", reflect.TypeOf(i))
-
-       switch b := i.(type) {
-       case bool:
-               return b, nil
-       case nil:
-               return false, nil
-       case int:
-               if i.(int) != 0 {
-                       return true, nil
-               }
-               return false, nil
-       case string:
-               return strconv.ParseBool(i.(string))
-       default:
-               return false, fmt.Errorf("Unable to Cast %#v to bool", i)
-       }
-}
-
-// ToFloat64E casts an empty interface to a float64.
-func ToFloat64E(i interface{}) (float64, error) {
-       i = indirect(i)
-       jww.DEBUG.Println("ToFloat64E called on type:", reflect.TypeOf(i))
-
-       switch s := i.(type) {
-       case float64:
-               return s, nil
-       case float32:
-               return float64(s), nil
-       case int64:
-               return float64(s), nil
-       case int32:
-               return float64(s), nil
-       case int16:
-               return float64(s), nil
-       case int8:
-               return float64(s), nil
-       case int:
-               return float64(s), nil
-       case string:
-               v, err := strconv.ParseFloat(s, 64)
-               if err == nil {
-                       return float64(v), nil
-               }
-               return 0.0, fmt.Errorf("Unable to Cast %#v to float", i)
-       default:
-               return 0.0, fmt.Errorf("Unable to Cast %#v to float", i)
-       }
-}
-
-// ToInt64E casts an empty interface to an int64.
-func ToInt64E(i interface{}) (int64, error) {
-       i = indirect(i)
-       jww.DEBUG.Println("ToInt64E called on type:", reflect.TypeOf(i))
-
-       switch s := i.(type) {
-       case int64:
-               return s, nil
-       case int:
-               return int64(s), nil
-       case int32:
-               return int64(s), nil
-       case int16:
-               return int64(s), nil
-       case int8:
-               return int64(s), nil
-       case string:
-               v, err := strconv.ParseInt(s, 0, 0)
-               if err == nil {
-                       return v, nil
-               }
-               return 0, fmt.Errorf("Unable to Cast %#v to int64", i)
-       case float64:
-               return int64(s), nil
-       case bool:
-               if bool(s) {
-                       return int64(1), nil
-               }
-               return int64(0), nil
-       case nil:
-               return int64(0), nil
-       default:
-               return int64(0), fmt.Errorf("Unable to Cast %#v to int64", i)
-       }
-}
-
-// ToIntE casts an empty interface to an int.
-func ToIntE(i interface{}) (int, error) {
-       i = indirect(i)
-       jww.DEBUG.Println("ToIntE called on type:", reflect.TypeOf(i))
-
-       switch s := i.(type) {
-       case int:
-               return s, nil
-       case int64:
-               return int(s), nil
-       case int32:
-               return int(s), nil
-       case int16:
-               return int(s), nil
-       case int8:
-               return int(s), nil
-       case string:
-               v, err := strconv.ParseInt(s, 0, 0)
-               if err == nil {
-                       return int(v), nil
-               }
-               return 0, fmt.Errorf("Unable to Cast %#v to int", i)
-       case float64:
-               return int(s), nil
-       case bool:
-               if bool(s) {
-                       return 1, nil
-               }
-               return 0, nil
-       case nil:
-               return 0, nil
-       default:
-               return 0, fmt.Errorf("Unable to Cast %#v to int", i)
-       }
-}
-
-// From html/template/content.go
-// Copyright 2011 The Go Authors. All rights reserved.
-// indirect returns the value, after dereferencing as many times
-// as necessary to reach the base type (or nil).
-func indirect(a interface{}) interface{} {
-       if a == nil {
-               return nil
-       }
-       if t := reflect.TypeOf(a); t.Kind() != reflect.Ptr {
-               // Avoid creating a reflect.Value if it's not a pointer.
-               return a
-       }
-       v := reflect.ValueOf(a)
-       for v.Kind() == reflect.Ptr && !v.IsNil() {
-               v = v.Elem()
-       }
-       return v.Interface()
-}
-
-// From html/template/content.go
-// Copyright 2011 The Go Authors. All rights reserved.
-// indirectToStringerOrError returns the value, after dereferencing as many 
times
-// as necessary to reach the base type (or nil) or an implementation of 
fmt.Stringer
-// or error,
-func indirectToStringerOrError(a interface{}) interface{} {
-       if a == nil {
-               return nil
-       }
-
-       var errorType = reflect.TypeOf((*error)(nil)).Elem()
-       var fmtStringerType = reflect.TypeOf((*fmt.Stringer)(nil)).Elem()
-
-       v := reflect.ValueOf(a)
-       for !v.Type().Implements(fmtStringerType) && 
!v.Type().Implements(errorType) && v.Kind() == reflect.Ptr && !v.IsNil() {
-               v = v.Elem()
-       }
-       return v.Interface()
-}
-
-// ToStringE casts an empty interface to a string.
-func ToStringE(i interface{}) (string, error) {
-       i = indirectToStringerOrError(i)
-       jww.DEBUG.Println("ToStringE called on type:", reflect.TypeOf(i))
-
-       switch s := i.(type) {
-       case string:
-               return s, nil
-       case bool:
-               return strconv.FormatBool(s), nil
-       case float64:
-               return strconv.FormatFloat(i.(float64), 'f', -1, 64), nil
-       case int64:
-               return strconv.FormatInt(i.(int64), 10), nil
-       case int:
-               return strconv.FormatInt(int64(i.(int)), 10), nil
-       case []byte:
-               return string(s), nil
-       case template.HTML:
-               return string(s), nil
-       case template.URL:
-               return string(s), nil
-       case template.JS:
-               return string(s), nil
-       case template.CSS:
-               return string(s), nil
-       case template.HTMLAttr:
-               return string(s), nil
-       case nil:
-               return "", nil
-       case fmt.Stringer:
-               return s.String(), nil
-       case error:
-               return s.Error(), nil
-       default:
-               return "", fmt.Errorf("Unable to Cast %#v to string", i)
-       }
-}
-
-// ToStringMapStringE casts an empty interface to a map[string]string.
-func ToStringMapStringE(i interface{}) (map[string]string, error) {
-       jww.DEBUG.Println("ToStringMapStringE called on type:", 
reflect.TypeOf(i))
-
-       var m = map[string]string{}
-
-       switch v := i.(type) {
-       case map[string]string:
-               return v, nil
-       case map[string]interface{}:
-               for k, val := range v {
-                       m[ToString(k)] = ToString(val)
-               }
-               return m, nil
-       case map[interface{}]string:
-               for k, val := range v {
-                       m[ToString(k)] = ToString(val)
-               }
-               return m, nil
-       case map[interface{}]interface{}:
-               for k, val := range v {
-                       m[ToString(k)] = ToString(val)
-               }
-               return m, nil
-       default:
-               return m, fmt.Errorf("Unable to Cast %#v to map[string]string", 
i)
-       }
-}
-
-// ToStringMapStringSliceE casts an empty interface to a map[string][]string.
-func ToStringMapStringSliceE(i interface{}) (map[string][]string, error) {
-       jww.DEBUG.Println("ToStringMapStringSliceE called on type:", 
reflect.TypeOf(i))
-
-       var m = map[string][]string{}
-
-       switch v := i.(type) {
-       case map[string][]string:
-               return v, nil
-       case map[string][]interface{}:
-               for k, val := range v {
-                       m[ToString(k)] = ToStringSlice(val)
-               }
-               return m, nil
-       case map[string]string:
-               for k, val := range v {
-                       m[ToString(k)] = []string{val}
-               }
-       case map[string]interface{}:
-               for k, val := range v {
-                       m[ToString(k)] = []string{ToString(val)}
-               }
-               return m, nil
-       case map[interface{}][]string:
-               for k, val := range v {
-                       m[ToString(k)] = ToStringSlice(val)
-               }
-               return m, nil
-       case map[interface{}]string:
-               for k, val := range v {
-                       m[ToString(k)] = ToStringSlice(val)
-               }
-               return m, nil
-       case map[interface{}][]interface{}:
-               for k, val := range v {
-                       m[ToString(k)] = ToStringSlice(val)
-               }
-               return m, nil
-       case map[interface{}]interface{}:
-               for k, val := range v {
-                       key, err := ToStringE(k)
-                       if err != nil {
-                               return m, fmt.Errorf("Unable to Cast %#v to 
map[string][]string", i)
-                       }
-                       value, err := ToStringSliceE(val)
-                       if err != nil {
-                               return m, fmt.Errorf("Unable to Cast %#v to 
map[string][]string", i)
-                       }
-                       m[key] = value
-               }
-       default:
-               return m, fmt.Errorf("Unable to Cast %#v to 
map[string][]string", i)
-       }
-       return m, nil
-}
-
-// ToStringMapBoolE casts an empty interface to a map[string]bool.
-func ToStringMapBoolE(i interface{}) (map[string]bool, error) {
-       jww.DEBUG.Println("ToStringMapBoolE called on type:", reflect.TypeOf(i))
-
-       var m = map[string]bool{}
-
-       switch v := i.(type) {
-       case map[interface{}]interface{}:
-               for k, val := range v {
-                       m[ToString(k)] = ToBool(val)
-               }
-               return m, nil
-       case map[string]interface{}:
-               for k, val := range v {
-                       m[ToString(k)] = ToBool(val)
-               }
-               return m, nil
-       case map[string]bool:
-               return v, nil
-       default:
-               return m, fmt.Errorf("Unable to Cast %#v to map[string]bool", i)
-       }
-}
-
-// ToStringMapE casts an empty interface to a map[string]interface{}.
-func ToStringMapE(i interface{}) (map[string]interface{}, error) {
-       jww.DEBUG.Println("ToStringMapE called on type:", reflect.TypeOf(i))
-
-       var m = map[string]interface{}{}
-
-       switch v := i.(type) {
-       case map[interface{}]interface{}:
-               for k, val := range v {
-                       m[ToString(k)] = val
-               }
-               return m, nil
-       case map[string]interface{}:
-               return v, nil
-       default:
-               return m, fmt.Errorf("Unable to Cast %#v to 
map[string]interface{}", i)
-       }
-}
-
-// ToSliceE casts an empty interface to a []interface{}.
-func ToSliceE(i interface{}) ([]interface{}, error) {
-       jww.DEBUG.Println("ToSliceE called on type:", reflect.TypeOf(i))
-
-       var s []interface{}
-
-       switch v := i.(type) {
-       case []interface{}:
-               for _, u := range v {
-                       s = append(s, u)
-               }
-               return s, nil
-       case []map[string]interface{}:
-               for _, u := range v {
-                       s = append(s, u)
-               }
-               return s, nil
-       default:
-               return s, fmt.Errorf("Unable to Cast %#v of type %v to 
[]interface{}", i, reflect.TypeOf(i))
-       }
-}
-
-// ToStringSliceE casts an empty interface to a []string.
-func ToStringSliceE(i interface{}) ([]string, error) {
-       jww.DEBUG.Println("ToStringSliceE called on type:", reflect.TypeOf(i))
-
-       var a []string
-
-       switch v := i.(type) {
-       case []interface{}:
-               for _, u := range v {
-                       a = append(a, ToString(u))
-               }
-               return a, nil
-       case []string:
-               return v, nil
-       case string:
-               return strings.Fields(v), nil
-       case interface{}:
-               str, err := ToStringE(v)
-               if err != nil {
-                       return a, fmt.Errorf("Unable to Cast %#v to []string", 
i)
-               }
-               return []string{str}, nil
-       default:
-               return a, fmt.Errorf("Unable to Cast %#v to []string", i)
-       }
-}
-
-// ToIntSliceE casts an empty interface to a []int.
-func ToIntSliceE(i interface{}) ([]int, error) {
-       jww.DEBUG.Println("ToIntSliceE called on type:", reflect.TypeOf(i))
-
-       if i == nil {
-               return []int{}, fmt.Errorf("Unable to Cast %#v to []int", i)
-       }
-
-       switch v := i.(type) {
-       case []int:
-               return v, nil
-       }
-
-       kind := reflect.TypeOf(i).Kind()
-       switch kind {
-       case reflect.Slice, reflect.Array:
-               s := reflect.ValueOf(i)
-               a := make([]int, s.Len())
-               for j := 0; j < s.Len(); j++ {
-                       val, err := ToIntE(s.Index(j).Interface())
-                       if err != nil {
-                               return []int{}, fmt.Errorf("Unable to Cast %#v 
to []int", i)
-                       }
-                       a[j] = val
-               }
-               return a, nil
-       default:
-               return []int{}, fmt.Errorf("Unable to Cast %#v to []int", i)
-       }
-}
-
-// StringToDate casts an empty interface to a time.Time.
-func StringToDate(s string) (time.Time, error) {
-       return parseDateWith(s, []string{
-               time.RFC3339,
-               "2006-01-02T15:04:05", // iso8601 without timezone
-               time.RFC1123Z,
-               time.RFC1123,
-               time.RFC822Z,
-               time.RFC822,
-               time.ANSIC,
-               time.UnixDate,
-               time.RubyDate,
-               "2006-01-02 15:04:05Z07:00",
-               "02 Jan 06 15:04 MST",
-               "2006-01-02",
-               "02 Jan 2006",
-               "2006-01-02 15:04:05 -07:00",
-               "2006-01-02 15:04:05 -0700",
-       })
-}
-
-func parseDateWith(s string, dates []string) (d time.Time, e error) {
-       for _, dateType := range dates {
-               if d, e = time.Parse(dateType, s); e == nil {
-                       return
-               }
-       }
-       return d, fmt.Errorf("Unable to parse date: %s", s)
-}

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cobra/.gitignore
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cobra/.gitignore 
b/newt/Godeps/_workspace/src/github.com/spf13/cobra/.gitignore
deleted file mode 100644
index 36d1a84..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cobra/.gitignore
+++ /dev/null
@@ -1,24 +0,0 @@
-# Compiled Object files, Static and Dynamic libs (Shared Objects)
-*.o
-*.a
-*.so
-
-# Folders
-_obj
-_test
-
-# Architecture specific extensions/prefixes
-*.[568vq]
-[568vq].out
-
-*.cgo1.go
-*.cgo2.c
-_cgo_defun.c
-_cgo_gotypes.go
-_cgo_export.*
-
-_testmain.go
-
-*.exe
-
-cobra.test

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cobra/.mailmap
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cobra/.mailmap 
b/newt/Godeps/_workspace/src/github.com/spf13/cobra/.mailmap
deleted file mode 100644
index 94ec530..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cobra/.mailmap
+++ /dev/null
@@ -1,3 +0,0 @@
-Steve Francia <steve.fran...@gmail.com>
-Bjørn Erik Pedersen <bjorn.erik.peder...@gmail.com>
-Fabiano Franz <ffr...@redhat.com>                   <cont...@fabianofranz.com>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cobra/.travis.yml
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cobra/.travis.yml 
b/newt/Godeps/_workspace/src/github.com/spf13/cobra/.travis.yml
deleted file mode 100644
index 7a6cb7f..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cobra/.travis.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-language: go
-go:
-  - 1.3.3
-  - 1.4.2
-  - 1.5.1
-  - tip
-script:
-  - go test -v ./...
-  - go build

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b002dd0c/newt/Godeps/_workspace/src/github.com/spf13/cobra/LICENSE.txt
----------------------------------------------------------------------
diff --git a/newt/Godeps/_workspace/src/github.com/spf13/cobra/LICENSE.txt 
b/newt/Godeps/_workspace/src/github.com/spf13/cobra/LICENSE.txt
deleted file mode 100644
index 298f0e2..0000000
--- a/newt/Godeps/_workspace/src/github.com/spf13/cobra/LICENSE.txt
+++ /dev/null
@@ -1,174 +0,0 @@
-                                Apache License
-                           Version 2.0, January 2004
-                        http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-      "License" shall mean the terms and conditions for use, reproduction,
-      and distribution as defined by Sections 1 through 9 of this document.
-
-      "Licensor" shall mean the copyright owner or entity authorized by
-      the copyright owner that is granting the License.
-
-      "Legal Entity" shall mean the union of the acting entity and all
-      other entities that control, are controlled by, or are under common
-      control with that entity. For the purposes of this definition,
-      "control" means (i) the power, direct or indirect, to cause the
-      direction or management of such entity, whether by contract or
-      otherwise, or (ii) ownership of fifty percent (50%) or more of the
-      outstanding shares, or (iii) beneficial ownership of such entity.
-
-      "You" (or "Your") shall mean an individual or Legal Entity
-      exercising permissions granted by this License.
-
-      "Source" form shall mean the preferred form for making modifications,
-      including but not limited to software source code, documentation
-      source, and configuration files.
-
-      "Object" form shall mean any form resulting from mechanical
-      transformation or translation of a Source form, including but
-      not limited to compiled object code, generated documentation,
-      and conversions to other media types.
-
-      "Work" shall mean the work of authorship, whether in Source or
-      Object form, made available under the License, as indicated by a
-      copyright notice that is included in or attached to the work
-      (an example is provided in the Appendix below).
-
-      "Derivative Works" shall mean any work, whether in Source or Object
-      form, that is based on (or derived from) the Work and for which the
-      editorial revisions, annotations, elaborations, or other modifications
-      represent, as a whole, an original work of authorship. For the purposes
-      of this License, Derivative Works shall not include works that remain
-      separable from, or merely link (or bind by name) to the interfaces of,
-      the Work and Derivative Works thereof.
-
-      "Contribution" shall mean any work of authorship, including
-      the original version of the Work and any modifications or additions
-      to that Work or Derivative Works thereof, that is intentionally
-      submitted to Licensor for inclusion in the Work by the copyright owner
-      or by an individual or Legal Entity authorized to submit on behalf of
-      the copyright owner. For the purposes of this definition, "submitted"
-      means any form of electronic, verbal, or written communication sent
-      to the Licensor or its representatives, including but not limited to
-      communication on electronic mailing lists, source code control systems,
-      and issue tracking systems that are managed by, or on behalf of, the
-      Licensor for the purpose of discussing and improving the Work, but
-      excluding communication that is conspicuously marked or otherwise
-      designated in writing by the copyright owner as "Not a Contribution."
-
-      "Contributor" shall mean Licensor and any individual or Legal Entity
-      on behalf of whom a Contribution has been received by Licensor and
-      subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      copyright license to reproduce, prepare Derivative Works of,
-      publicly display, publicly perform, sublicense, and distribute the
-      Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      (except as stated in this section) patent license to make, have made,
-      use, offer to sell, sell, import, and otherwise transfer the Work,
-      where such license applies only to those patent claims licensable
-      by such Contributor that are necessarily infringed by their
-      Contribution(s) alone or by combination of their Contribution(s)
-      with the Work to which such Contribution(s) was submitted. If You
-      institute patent litigation against any entity (including a
-      cross-claim or counterclaim in a lawsuit) alleging that the Work
-      or a Contribution incorporated within the Work constitutes direct
-      or contributory patent infringement, then any patent licenses
-      granted to You under this License for that Work shall terminate
-      as of the date such litigation is filed.
-
-   4. Redistribution. You may reproduce and distribute copies of the
-      Work or Derivative Works thereof in any medium, with or without
-      modifications, and in Source or Object form, provided that You
-      meet the following conditions:
-
-      (a) You must give any other recipients of the Work or
-          Derivative Works a copy of this License; and
-
-      (b) You must cause any modified files to carry prominent notices
-          stating that You changed the files; and
-
-      (c) You must retain, in the Source form of any Derivative Works
-          that You distribute, all copyright, patent, trademark, and
-          attribution notices from the Source form of the Work,
-          excluding those notices that do not pertain to any part of
-          the Derivative Works; and
-
-      (d) If the Work includes a "NOTICE" text file as part of its
-          distribution, then any Derivative Works that You distribute must
-          include a readable copy of the attribution notices contained
-          within such NOTICE file, excluding those notices that do not
-          pertain to any part of the Derivative Works, in at least one
-          of the following places: within a NOTICE text file distributed
-          as part of the Derivative Works; within the Source form or
-          documentation, if provided along with the Derivative Works; or,
-          within a display generated by the Derivative Works, if and
-          wherever such third-party notices normally appear. The contents
-          of the NOTICE file are for informational purposes only and
-          do not modify the License. You may add Your own attribution
-          notices within Derivative Works that You distribute, alongside
-          or as an addendum to the NOTICE text from the Work, provided
-          that such additional attribution notices cannot be construed
-          as modifying the License.
-
-      You may add Your own copyright statement to Your modifications and
-      may provide additional or different license terms and conditions
-      for use, reproduction, or distribution of Your modifications, or
-      for any such Derivative Works as a whole, provided Your use,
-      reproduction, and distribution of the Work otherwise complies with
-      the conditions stated in this License.
-
-   5. Submission of Contributions. Unless You explicitly state otherwise,
-      any Contribution intentionally submitted for inclusion in the Work
-      by You to the Licensor shall be under the terms and conditions of
-      this License, without any additional terms or conditions.
-      Notwithstanding the above, nothing herein shall supersede or modify
-      the terms of any separate license agreement you may have executed
-      with Licensor regarding such Contributions.
-
-   6. Trademarks. This License does not grant permission to use the trade
-      names, trademarks, service marks, or product names of the Licensor,
-      except as required for reasonable and customary use in describing the
-      origin of the Work and reproducing the content of the NOTICE file.
-
-   7. Disclaimer of Warranty. Unless required by applicable law or
-      agreed to in writing, Licensor provides the Work (and each
-      Contributor provides its Contributions) on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied, including, without limitation, any warranties or conditions
-      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-      PARTICULAR PURPOSE. You are solely responsible for determining the
-      appropriateness of using or redistributing the Work and assume any
-      risks associated with Your exercise of permissions under this License.
-
-   8. Limitation of Liability. In no event and under no legal theory,
-      whether in tort (including negligence), contract, or otherwise,
-      unless required by applicable law (such as deliberate and grossly
-      negligent acts) or agreed to in writing, shall any Contributor be
-      liable to You for damages, including any direct, indirect, special,
-      incidental, or consequential damages of any character arising as a
-      result of this License or out of the use or inability to use the
-      Work (including but not limited to damages for loss of goodwill,
-      work stoppage, computer failure or malfunction, or any and all
-      other commercial damages or losses), even if such Contributor
-      has been advised of the possibility of such damages.
-
-   9. Accepting Warranty or Additional Liability. While redistributing
-      the Work or Derivative Works thereof, You may choose to offer,
-      and charge a fee for, acceptance of support, warranty, indemnity,
-      or other liability obligations and/or rights consistent with this
-      License. However, in accepting such obligations, You may act only
-      on Your own behalf and on Your sole responsibility, not on behalf
-      of any other Contributor, and only if You agree to indemnify,
-      defend, and hold each Contributor harmless for any liability
-      incurred by, or claims asserted against, such Contributor by reason
-      of your accepting any such warranty or additional liability.

Reply via email to