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)
This commit is contained in:
Ho-Sheng Hsiao 2015-03-30 20:04:32 -07:00 committed by Juan Batiz-Benet
parent 44ef2bab38
commit 25c4d28de9
5 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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")

View File

@ -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.

View File

@ -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) {

View File

@ -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