Skip to content

Commit 4c4ef2a

Browse files
authored
Merge pull request #3 from treeverse/chore/fix-module-name
Really avoid referencing willscott/go-nfs
2 parents ab7d746 + cab01db commit 4c4ef2a

File tree

10 files changed

+17
-19
lines changed

10 files changed

+17
-19
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ We appreciate your interest in improving go-nfs!
55
## Looking for ways to contribute?
66

77
There are several ways you can contribute:
8-
- Start contributing immediately via the [opened](https://github.com/willscott/go-nfs/issues) issues on GitHub.
8+
- Start contributing immediately via the [opened](https://github.com/treeverse/go-nfs/issues) issues on GitHub.
99
Defined issues provide an excellent starting point.
1010
- Reporting issues, bugs, mistakes, or inconsistencies.
1111
As many open source projects, we are short-staffed, we thus kindly ask you to be open to contribute a fix for discovered issues.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ import (
4141
"net"
4242

4343
"github.com/go-git/go-billy/v6/memfs"
44-
nfs "github.com/willscott/go-nfs"
45-
nfshelper "github.com/willscott/go-nfs/helpers"
44+
nfs "github.com/treeverse/go-nfs"
45+
nfshelper "github.com/treeverse/go-nfs/helpers"
4646
)
4747

4848
func main() {
@@ -89,7 +89,7 @@ which do not translate to this abstraction.
8989
In particular, the `Sys()` escape hatch is queried by this library, and
9090
if your file system populates a [`syscall.Stat_t`](https://golang.org/pkg/syscall/#Stat_t)
9191
concrete struct, the ownership specified in that object will be used.
92-
You can also return a [`file.FileInfo`](https://github.com/willscott/go-nfs/blob/master/file/file.go#L5)
92+
You can also return a [`file.FileInfo`](https://github.com/treeverse/go-nfs/blob/master/file/file.go#L5)
9393
which doesn't vary between platforms so may be easier to deal with.
9494

9595
* Relevant RFCS:

example/helloworld/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"github.com/go-git/go-billy/v6"
88
"github.com/go-git/go-billy/v6/memfs"
99

10-
nfs "github.com/willscott/go-nfs"
11-
nfshelper "github.com/willscott/go-nfs/helpers"
10+
nfs "github.com/treeverse/go-nfs"
11+
nfshelper "github.com/treeverse/go-nfs/helpers"
1212
)
1313

1414
// ROFS is an intercepter for the filesystem indicating it should

example/osnfs/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"os"
77

88
osfs "github.com/go-git/go-billy/v6/osfs"
9-
nfs "github.com/willscott/go-nfs"
10-
nfshelper "github.com/willscott/go-nfs/helpers"
9+
nfs "github.com/treeverse/go-nfs"
10+
nfshelper "github.com/treeverse/go-nfs/helpers"
1111
)
1212

1313
func main() {

example/osview/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ package main
99

1010
// "github.com/willscott/memphis"
1111

12-
// nfs "github.com/willscott/go-nfs"
13-
// nfshelper "github.com/willscott/go-nfs/helpers"
12+
// nfs "github.com/treeverse/go-nfs"
13+
// nfshelper "github.com/treeverse/go-nfs/helpers"
1414
// )
1515

1616
// func main() {

file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"time"
1010

1111
"github.com/go-git/go-billy/v6"
12+
"github.com/treeverse/go-nfs/file"
1213
"github.com/willscott/go-nfs-client/nfs/xdr"
13-
"github.com/willscott/go-nfs/file"
1414
)
1515

1616
// FileAttribute holds metadata about a filesystem object

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/google/uuid v1.6.0
77
github.com/hashicorp/golang-lru/v2 v2.0.7
88
github.com/rasky/go-xdr v0.0.0-20170124162913-1a41d1a06c93
9-
github.com/willscott/go-nfs v0.0.3
9+
github.com/treeverse/go-nfs v0.0.3
1010
github.com/willscott/go-nfs-client v0.0.0-20240104095149-b44639837b00
1111
golang.org/x/sys v0.34.0
1212
)
@@ -19,5 +19,3 @@ require (
1919
github.com/polydawn/rio v0.0.0-20220823181337-7c31ad9831a4 // indirect
2020
github.com/warpfork/go-errcat v0.0.0-20180917083543-335044ffc86e // indirect
2121
)
22-
23-
replace github.com/willscott/go-nfs => .

helpers/cachinghandler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"io/fs"
77
"reflect"
88

9-
"github.com/willscott/go-nfs"
9+
"github.com/treeverse/go-nfs"
1010

1111
"github.com/go-git/go-billy/v6"
1212
"github.com/google/uuid"

helpers/nullauthhandler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net"
66

77
"github.com/go-git/go-billy/v6"
8-
"github.com/willscott/go-nfs"
8+
"github.com/treeverse/go-nfs"
99
)
1010

1111
// NewNullAuthHandler creates a handler for the provided filesystem

nfs_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"testing"
1313

1414
"github.com/go-git/go-billy/v6"
15-
nfs "github.com/willscott/go-nfs"
16-
"github.com/willscott/go-nfs/helpers"
17-
"github.com/willscott/go-nfs/helpers/memfs"
15+
nfs "github.com/treeverse/go-nfs"
16+
"github.com/treeverse/go-nfs/helpers"
17+
"github.com/treeverse/go-nfs/helpers/memfs"
1818

1919
nfsc "github.com/willscott/go-nfs-client/nfs"
2020
rpc "github.com/willscott/go-nfs-client/nfs/rpc"

0 commit comments

Comments
 (0)