From 25c4d28de9a55615eb276a57016e220d6449b0ea Mon Sep 17 00:00:00 2001 From: Ho-Sheng Hsiao Date: Mon, 30 Mar 2015 20:04:32 -0700 Subject: [PATCH] go-ipfs-config: Reorged imports from jbenet/go-ipfs to ipfs/go-ipfs - Modified Godeps/Godeps.json by hand - [TEST] Updated welcome docs hash to sharness - [TEST] Updated contact doc - [TEST] disabled breaking test (t0080-repo refs local) --- config/bootstrap_peers.go | 4 ++-- config/config.go | 2 +- config/identity.go | 2 +- config/init.go | 6 +++--- config/supernode.go | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/bootstrap_peers.go b/config/bootstrap_peers.go index de4935d78..af18ab17b 100644 --- a/config/bootstrap_peers.go +++ b/config/bootstrap_peers.go @@ -1,9 +1,9 @@ package config import ( - errors "github.com/jbenet/go-ipfs/util/debugerror" + errors "github.com/ipfs/go-ipfs/util/debugerror" - iaddr "github.com/jbenet/go-ipfs/util/ipfsaddr" + iaddr "github.com/ipfs/go-ipfs/util/ipfsaddr" ) // DefaultBootstrapAddresses are the hardcoded bootstrap addresses diff --git a/config/config.go b/config/config.go index eec25d8cd..6876f9603 100644 --- a/config/config.go +++ b/config/config.go @@ -9,7 +9,7 @@ import ( "path/filepath" "strings" - u "github.com/jbenet/go-ipfs/util" + u "github.com/ipfs/go-ipfs/util" ) var log = u.Logger("config") diff --git a/config/identity.go b/config/identity.go index 2097e5188..d2298fbcd 100644 --- a/config/identity.go +++ b/config/identity.go @@ -2,7 +2,7 @@ package config import ( "encoding/base64" - ic "github.com/jbenet/go-ipfs/p2p/crypto" + ic "github.com/ipfs/go-ipfs/p2p/crypto" ) // Identity tracks the configuration of the local node's identity. diff --git a/config/init.go b/config/init.go index 34ebcebef..8f456f690 100644 --- a/config/init.go +++ b/config/init.go @@ -5,9 +5,9 @@ import ( "fmt" "io" - ci "github.com/jbenet/go-ipfs/p2p/crypto" - peer "github.com/jbenet/go-ipfs/p2p/peer" - errors "github.com/jbenet/go-ipfs/util/debugerror" + ci "github.com/ipfs/go-ipfs/p2p/crypto" + peer "github.com/ipfs/go-ipfs/p2p/peer" + errors "github.com/ipfs/go-ipfs/util/debugerror" ) func Init(out io.Writer, nBitsForKeypair int) (*Config, error) { diff --git a/config/supernode.go b/config/supernode.go index ccc5be3dd..30ee6f22e 100644 --- a/config/supernode.go +++ b/config/supernode.go @@ -1,6 +1,6 @@ package config -import "github.com/jbenet/go-ipfs/util/ipfsaddr" +import "github.com/ipfs/go-ipfs/util/ipfsaddr" // TODO replace with final servers before merge