aboutsummaryrefslogtreecommitdiffstats
path: root/formats/packfile
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-08-11 14:12:04 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-08-11 14:12:04 +0200
commitc1e277a7ca75ff84741d75ad45e29a2ff3e633e3 (patch)
tree44949d811c21d38aa011a307a7d7716098b62370 /formats/packfile
parent303cb32f7f36e39bbea80b4031be99cc33fea592 (diff)
downloadgo-git-c1e277a7ca75ff84741d75ad45e29a2ff3e633e3.tar.gz
v3 -> v4
Diffstat (limited to 'formats/packfile')
-rw-r--r--formats/packfile/decoder.go2
-rw-r--r--formats/packfile/decoder_test.go4
-rw-r--r--formats/packfile/parser.go4
-rw-r--r--formats/packfile/parser_test.go4
-rw-r--r--formats/packfile/read_recaller.go2
-rw-r--r--formats/packfile/read_recaller_impl_test.go4
-rw-r--r--formats/packfile/seekable.go2
-rw-r--r--formats/packfile/stream.go2
8 files changed, 12 insertions, 12 deletions
diff --git a/formats/packfile/decoder.go b/formats/packfile/decoder.go
index e8c5c6a..2b5ef88 100644
--- a/formats/packfile/decoder.go
+++ b/formats/packfile/decoder.go
@@ -3,7 +3,7 @@ package packfile
import (
"io"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
// Format specifies if the packfile uses ref-deltas or ofs-deltas.
diff --git a/formats/packfile/decoder_test.go b/formats/packfile/decoder_test.go
index 0c471a2..6bafa4f 100644
--- a/formats/packfile/decoder_test.go
+++ b/formats/packfile/decoder_test.go
@@ -9,8 +9,8 @@ import (
"testing"
"time"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/storage/memory"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
"github.com/dustin/go-humanize"
. "gopkg.in/check.v1"
diff --git a/formats/packfile/parser.go b/formats/packfile/parser.go
index d3463bd..a7c4047 100644
--- a/formats/packfile/parser.go
+++ b/formats/packfile/parser.go
@@ -7,8 +7,8 @@ import (
"fmt"
"io"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/storage/memory"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
)
var (
diff --git a/formats/packfile/parser_test.go b/formats/packfile/parser_test.go
index 12d5f0d..ec9b19a 100644
--- a/formats/packfile/parser_test.go
+++ b/formats/packfile/parser_test.go
@@ -7,8 +7,8 @@ import (
"os"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/storage/memory"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
)
const (
diff --git a/formats/packfile/read_recaller.go b/formats/packfile/read_recaller.go
index 92ab1b2..a4157d1 100644
--- a/formats/packfile/read_recaller.go
+++ b/formats/packfile/read_recaller.go
@@ -1,6 +1,6 @@
package packfile
-import "gopkg.in/src-d/go-git.v3/core"
+import "gopkg.in/src-d/go-git.v4/core"
var (
// ErrDuplicatedObject is returned by Remember if an object appears several
diff --git a/formats/packfile/read_recaller_impl_test.go b/formats/packfile/read_recaller_impl_test.go
index 438439d..8de7e2a 100644
--- a/formats/packfile/read_recaller_impl_test.go
+++ b/formats/packfile/read_recaller_impl_test.go
@@ -6,8 +6,8 @@ import (
"io/ioutil"
"os"
- "gopkg.in/src-d/go-git.v3/core"
- "gopkg.in/src-d/go-git.v3/storage/memory"
+ "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
. "gopkg.in/check.v1"
)
diff --git a/formats/packfile/seekable.go b/formats/packfile/seekable.go
index ea1c501..37b4ee9 100644
--- a/formats/packfile/seekable.go
+++ b/formats/packfile/seekable.go
@@ -4,7 +4,7 @@ import (
"io"
"os"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
// Seekable implements ReadRecaller for the io.ReadSeeker of a packfile.
diff --git a/formats/packfile/stream.go b/formats/packfile/stream.go
index 41266b1..34ffd2f 100644
--- a/formats/packfile/stream.go
+++ b/formats/packfile/stream.go
@@ -3,7 +3,7 @@ package packfile
import (
"io"
- "gopkg.in/src-d/go-git.v3/core"
+ "gopkg.in/src-d/go-git.v4/core"
)
// Stream implements ReadRecaller for the io.Reader of a packfile. This