Skip to content

Commit

Permalink
sumdb: mv notary sumdb
Browse files Browse the repository at this point in the history
We are changing the name "Go notary" to "Go checksum database"
to avoid confusion with the CNCF Notary.

This CL renames the x/exp/notary tree to x/exp/sumdb.

For golang/go#30835.

Change-Id: I348d31050e760a08335882b640edca4f89d86920
Reviewed-on: https://go-review.googlesource.com/c/exp/+/173737
Run-TryBot: Russ Cox <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Reviewed-by: Filippo Valsorda <[email protected]>
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
rsc committed Apr 26, 2019
1 parent 2cc83dd commit 7da06db
Show file tree
Hide file tree
Showing 20 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion notary/go.mod → sumdb/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module golang.org/x/exp/notary
module golang.org/x/exp/sumdb

go 1.13

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion notary/gosumcheck/main.go → sumdb/gosumcheck/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import (
"sync"
"time"

"golang.org/x/exp/notary/internal/sumweb"
"golang.org/x/exp/sumdb/internal/sumweb"
)

func usage() {
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"io"
"os"

"golang.org/x/exp/notary/internal/note"
"golang.org/x/exp/sumdb/internal/note"
)

func ExampleSign() {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"strings"
"sync"

"golang.org/x/exp/notary/internal/note"
"golang.org/x/exp/notary/internal/tlog"
"golang.org/x/exp/sumdb/internal/note"
"golang.org/x/exp/sumdb/internal/tlog"
)

// A Client provides the external operations
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"sync"
"testing"

"golang.org/x/exp/notary/internal/note"
"golang.org/x/exp/notary/internal/tlog"
"golang.org/x/exp/sumdb/internal/note"
"golang.org/x/exp/sumdb/internal/tlog"
)

const (
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"regexp"
"strings"

"golang.org/x/exp/notary/internal/tlog"
"golang.org/x/exp/sumdb/internal/tlog"
)

// A Server provides the external operations
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7da06db

Please sign in to comment.