aboutsummaryrefslogtreecommitdiffstats
path: root/storage/transactional
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2020-03-10 00:40:56 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2020-03-10 00:40:56 +0100
commit2bdfd91f04068220a72feeade31defc09f2a601e (patch)
treeeb3096d97addee6d5a95538a90d37fe4146312e3 /storage/transactional
parent042981be1fc9aa9b182c3c35b7e2258845e13f49 (diff)
downloadgo-git-2bdfd91f04068220a72feeade31defc09f2a601e.tar.gz
*: migration from gopkg to go modules
Diffstat (limited to 'storage/transactional')
-rw-r--r--storage/transactional/config.go2
-rw-r--r--storage/transactional/config_test.go4
-rw-r--r--storage/transactional/index.go4
-rw-r--r--storage/transactional/index_test.go4
-rw-r--r--storage/transactional/object.go4
-rw-r--r--storage/transactional/object_test.go4
-rw-r--r--storage/transactional/reference.go6
-rw-r--r--storage/transactional/reference_test.go4
-rw-r--r--storage/transactional/shallow.go4
-rw-r--r--storage/transactional/shallow_test.go4
-rw-r--r--storage/transactional/storage.go4
-rw-r--r--storage/transactional/storage_test.go16
12 files changed, 30 insertions, 30 deletions
diff --git a/storage/transactional/config.go b/storage/transactional/config.go
index 4d8efe1..f8c3cc2 100644
--- a/storage/transactional/config.go
+++ b/storage/transactional/config.go
@@ -1,6 +1,6 @@
package transactional
-import "gopkg.in/src-d/go-git.v4/config"
+import "github.com/go-git/go-git/v5/config"
// ConfigStorage implements the storer.ConfigStorage for the transactional package.
type ConfigStorage struct {
diff --git a/storage/transactional/config_test.go b/storage/transactional/config_test.go
index 5d1e019..ec7ae89 100644
--- a/storage/transactional/config_test.go
+++ b/storage/transactional/config_test.go
@@ -2,8 +2,8 @@ package transactional
import (
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v4/config"
- "gopkg.in/src-d/go-git.v4/storage/memory"
+ "github.com/go-git/go-git/v5/config"
+ "github.com/go-git/go-git/v5/storage/memory"
)
var _ = Suite(&ConfigSuite{})
diff --git a/storage/transactional/index.go b/storage/transactional/index.go
index 84e0e2f..70641ac 100644
--- a/storage/transactional/index.go
+++ b/storage/transactional/index.go
@@ -1,8 +1,8 @@
package transactional
import (
- "gopkg.in/src-d/go-git.v4/plumbing/format/index"
- "gopkg.in/src-d/go-git.v4/plumbing/storer"
+ "github.com/go-git/go-git/v5/plumbing/format/index"
+ "github.com/go-git/go-git/v5/plumbing/storer"
)
// IndexStorage implements the storer.IndexStorage for the transactional package.
diff --git a/storage/transactional/index_test.go b/storage/transactional/index_test.go
index e1c571a..88fa1f5 100644
--- a/storage/transactional/index_test.go
+++ b/storage/transactional/index_test.go
@@ -2,8 +2,8 @@ package transactional
import (
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v4/plumbing/format/index"
- "gopkg.in/src-d/go-git.v4/storage/memory"
+ "github.com/go-git/go-git/v5/plumbing/format/index"
+ "github.com/go-git/go-git/v5/storage/memory"
)
var _ = Suite(&IndexSuite{})
diff --git a/storage/transactional/object.go b/storage/transactional/object.go
index beb63d6..5d102b0 100644
--- a/storage/transactional/object.go
+++ b/storage/transactional/object.go
@@ -1,8 +1,8 @@
package transactional
import (
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/plumbing/storer"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/plumbing/storer"
)
// ObjectStorage implements the storer.EncodedObjectStorer for the transactional package.
diff --git a/storage/transactional/object_test.go b/storage/transactional/object_test.go
index 10b6318..e634409 100644
--- a/storage/transactional/object_test.go
+++ b/storage/transactional/object_test.go
@@ -2,8 +2,8 @@ package transactional
import (
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/storage/memory"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/storage/memory"
)
var _ = Suite(&ObjectSuite{})
diff --git a/storage/transactional/reference.go b/storage/transactional/reference.go
index a7be532..c3a727c 100644
--- a/storage/transactional/reference.go
+++ b/storage/transactional/reference.go
@@ -1,9 +1,9 @@
package transactional
import (
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/plumbing/storer"
- "gopkg.in/src-d/go-git.v4/storage"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/plumbing/storer"
+ "github.com/go-git/go-git/v5/storage"
)
// ReferenceStorage implements the storer.ReferenceStorage for the transactional package.
diff --git a/storage/transactional/reference_test.go b/storage/transactional/reference_test.go
index 5793549..a6bd1ce 100644
--- a/storage/transactional/reference_test.go
+++ b/storage/transactional/reference_test.go
@@ -2,8 +2,8 @@ package transactional
import (
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/storage/memory"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/storage/memory"
)
var _ = Suite(&ReferenceSuite{})
diff --git a/storage/transactional/shallow.go b/storage/transactional/shallow.go
index bedc325..20b930e 100644
--- a/storage/transactional/shallow.go
+++ b/storage/transactional/shallow.go
@@ -1,8 +1,8 @@
package transactional
import (
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/plumbing/storer"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/plumbing/storer"
)
// ShallowStorage implements the storer.ShallowStorer for the transactional package.
diff --git a/storage/transactional/shallow_test.go b/storage/transactional/shallow_test.go
index 5141782..1209fe6 100644
--- a/storage/transactional/shallow_test.go
+++ b/storage/transactional/shallow_test.go
@@ -2,8 +2,8 @@ package transactional
import (
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/storage/memory"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/storage/memory"
)
var _ = Suite(&ShallowSuite{})
diff --git a/storage/transactional/storage.go b/storage/transactional/storage.go
index b81b104..d4c68cb 100644
--- a/storage/transactional/storage.go
+++ b/storage/transactional/storage.go
@@ -3,8 +3,8 @@ package transactional
import (
"io"
- "gopkg.in/src-d/go-git.v4/plumbing/storer"
- "gopkg.in/src-d/go-git.v4/storage"
+ "github.com/go-git/go-git/v5/plumbing/storer"
+ "github.com/go-git/go-git/v5/storage"
)
// Storage is a transactional implementation of git.Storer, it demux the write
diff --git a/storage/transactional/storage_test.go b/storage/transactional/storage_test.go
index 63ebfb1..41d656b 100644
--- a/storage/transactional/storage_test.go
+++ b/storage/transactional/storage_test.go
@@ -3,15 +3,15 @@ package transactional
import (
"testing"
+ "github.com/go-git/go-billy/v5/memfs"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-billy.v4/memfs"
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/plumbing/cache"
- "gopkg.in/src-d/go-git.v4/plumbing/storer"
- "gopkg.in/src-d/go-git.v4/storage"
- "gopkg.in/src-d/go-git.v4/storage/filesystem"
- "gopkg.in/src-d/go-git.v4/storage/memory"
- "gopkg.in/src-d/go-git.v4/storage/test"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/plumbing/cache"
+ "github.com/go-git/go-git/v5/plumbing/storer"
+ "github.com/go-git/go-git/v5/storage"
+ "github.com/go-git/go-git/v5/storage/filesystem"
+ "github.com/go-git/go-git/v5/storage/memory"
+ "github.com/go-git/go-git/v5/storage/test"
)
func Test(t *testing.T) { TestingT(t) }