Skip to content

Commit 7ab77b7

Browse files
committed
Move go-billy to gopkg.in
1 parent e06d27e commit 7ab77b7

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ matrix:
99
- go: tip
1010

1111
install:
12-
- rm -rf $GOPATH/src/srcd.works
13-
- mkdir -p $GOPATH/src/srcd.works
14-
- ln -s $PWD $GOPATH/src/srcd.works/go-billy.v1
15-
- cd $GOPATH/src/srcd.works/go-billy.v1
12+
- rm -rf $GOPATH/src/gopkg.in/src-d
13+
- mkdir -p $GOPATH/src/gopkg.in/src-d
14+
- ln -s $PWD $GOPATH/src/gopkg.in/src-d/go-billy.v1
15+
- cd $GOPATH/src/gopkg.in/src-d/go-billy.v1
1616
- go get -v -t ./...
1717

1818
script:
19-
- cd $GOPATH/src/srcd.works/go-billy.v1
19+
- cd $GOPATH/src/gopkg.in/src-d/go-billy.v1
2020
- go test -v ./...
2121
- make test-coverage
2222

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# go-billy [![GoDoc](https://godoc.org/srcd.works/go-billy.v1?status.svg)](https://godoc.org/srcd.works/go-billy.v1) [![Build Status](https://travis-ci.org/src-d/go-billy.svg)](https://travis-ci.org/src-d/go-billy) [![codebeat badge](https://codebeat.co/badges/03bdec03-b477-4472-bbe3-b552e3799174)](https://codebeat.co/projects/github-com-src-d-go-billy)
1+
# go-billy [![GoDoc](https://godoc.org/gopkg.in/src-d/go-billy.v1?status.svg)](https://godoc.org/gopkg.in/src-d/go-billy.v1) [![Build Status](https://travis-ci.org/src-d/go-billy.svg)](https://travis-ci.org/src-d/go-billy) [![codebeat badge](https://codebeat.co/badges/03bdec03-b477-4472-bbe3-b552e3799174)](https://codebeat.co/projects/github-com-src-d-go-billy)
22

33
An interface to abstract several storages.
44

@@ -8,7 +8,7 @@ This library was extracted from
88
## Installation
99

1010
```go
11-
go get -u srcd.works/go-billy.v1/...
11+
go get -u gopkg.in/src-d/go-billy.v1/...
1212
```
1313

1414
## Why billy?

memfs/memory.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Package memfs provides a billy filesystem base on memory.
2-
package memfs // import "srcd.works/go-billy.v1/memfs"
2+
package memfs // import "gopkg.in/src-d/go-billy.v1/memfs"
33

44
import (
55
"errors"
@@ -11,7 +11,7 @@ import (
1111
"strings"
1212
"time"
1313

14-
"srcd.works/go-billy.v1"
14+
"gopkg.in/src-d/go-billy.v1"
1515
)
1616

1717
const separator = '/'

memfs/memory_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"testing"
55

66
. "gopkg.in/check.v1"
7-
"srcd.works/go-billy.v1/test"
7+
"gopkg.in/src-d/go-billy.v1/test"
88
)
99

1010
func Test(t *testing.T) { TestingT(t) }

osfs/os.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Package os provides a billy filesystem for the OS.
2-
package osfs // import "srcd.works/go-billy.v1/osfs"
2+
package osfs // import "gopkg.in/src-d/go-billy.v1/osfs"
33

44
import (
55
"io/ioutil"
66
"os"
77
"path"
88
"path/filepath"
99

10-
"srcd.works/go-billy.v1"
10+
"gopkg.in/src-d/go-billy.v1"
1111
)
1212

1313
const (

osfs/os_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88

99
. "gopkg.in/check.v1"
10-
"srcd.works/go-billy.v1/test"
10+
"gopkg.in/src-d/go-billy.v1/test"
1111
)
1212

1313
func Test(t *testing.T) { TestingT(t) }

test/fs_suite.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"testing"
1111

1212
. "gopkg.in/check.v1"
13-
. "srcd.works/go-billy.v1"
13+
. "gopkg.in/src-d/go-billy.v1"
1414
)
1515

1616
func Test(t *testing.T) { TestingT(t) }

0 commit comments

Comments
 (0)