@cryptotaxi247 / kubo / commits / d74380163

godep: changed back to inflect upstream

Henry committed Mar 1, 2015 at 03:56 UTC d743801638ac081bbf7aa14bab1dde9c622cf718
12 files changed +8 -8
Godeps/Godeps.json
+4 -4
@@ -45,10 +45,6 @@
45 "ImportPath": "github.com/bren2010/proquint",
46 "Rev": "5958552242606512f714d2e93513b380f43f9991"
47 },
48 - {
49 - "ImportPath": "github.com/briantigerchow/inflect",
50 - "Rev": "cef1f9cc2234281dc58ea10be7e9aad5e282ecab"
51 - },
48 {
49 "ImportPath": "github.com/briantigerchow/pubsub",
50 "Rev": "39ce5f556423a4c7223b370fa17a3bbd75b2d197"
@@ -65,6 +61,10 @@
61 "ImportPath": "github.com/cheggaaa/pb",
62 "Rev": "e8c7cc515bfde3e267957a3b110080ceed51354e"
63 },
64 + {
65 + "ImportPath": "github.com/chuckpreslar/inflect",
66 + "Rev": "423e3ac59c611e2d549527ab8c15fb99335d30ba"
67 + },
68 {
69 "ImportPath": "github.com/coreos/go-semver/semver",
70 "Rev": "6fe83ccda8fb9b7549c9ab4ba47f47858bc950aa"
Godeps/_workspace/src/github.com/chuckpreslar/inflect/.gitignore renamed
Godeps/_workspace/src/github.com/chuckpreslar/inflect/README.md renamed
Godeps/_workspace/src/github.com/chuckpreslar/inflect/inflect.go renamed
Godeps/_workspace/src/github.com/chuckpreslar/inflect/inflect_test.go renamed
Godeps/_workspace/src/github.com/chuckpreslar/inflect/languages.go renamed
+2 -2
@@ -2,8 +2,8 @@
2 package inflect
3
4 import (
5 - "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/briantigerchow/inflect/languages"
6 - "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/briantigerchow/inflect/types"
5 + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/chuckpreslar/inflect/languages"
6 + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/chuckpreslar/inflect/types"
7 )
8
9 var (
Godeps/_workspace/src/github.com/chuckpreslar/inflect/languages/english.go renamed
+1 -1
@@ -2,7 +2,7 @@
2 package languages
3
4 import (
5 - "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/briantigerchow/inflect/types"
5 + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/chuckpreslar/inflect/types"
6 )
7
8 // Defines irregular words, uncountables words, and pluralization/singularization rules for the English language.
Godeps/_workspace/src/github.com/chuckpreslar/inflect/types/irregular.go renamed
Godeps/_workspace/src/github.com/chuckpreslar/inflect/types/language.go renamed
Godeps/_workspace/src/github.com/chuckpreslar/inflect/types/rule.go renamed
Godeps/_workspace/src/github.com/chuckpreslar/inflect/types/uncountable.go renamed
exchange/bitswap/workers.go
+1 -1
@@ -3,7 +3,7 @@ package bitswap
3 import (
4 "time"
5
6 - inflect "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/briantigerchow/inflect"
6 + inflect "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/chuckpreslar/inflect"
7 process "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/goprocess"
8 context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
9 )