Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 80e94e8

Browse files
authored
Merge pull request #1349 from tamalsaha/gomvpkg
Move gps package out of internal
2 parents a5f10f1 + e966965 commit 80e94e8

File tree

241 files changed

+294
-292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+294
-292
lines changed

.codeclimate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ratings:
1010
- "**.go"
1111
exclude_paths:
1212
- vendor/
13-
- internal/gps/_testdata
13+
- gps/_testdata
1414
- cmd/dep/testdata
1515
- testdata
16-
- internal/gps/internal/pb
16+
- gps/internal/pb

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
/cmd/dep/graphviz* @darkowlzz
2323

2424
# gps caching
25-
/internal/gps/source_cache* @jmank88
25+
/gps/source_cache* @jmank88

CHANGELOG.md

Lines changed: 1 addition & 0 deletions

analyzer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"os"
99
"path/filepath"
1010

11+
"github.com/golang/dep/gps"
1112
"github.com/golang/dep/internal/fs"
12-
"github.com/golang/dep/internal/gps"
1313
)
1414

1515
// Analyzer implements gps.ProjectAnalyzer.

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
version: "{build}"
22

33
# Source Config
4+
45
clone_folder: c:\gopath\src\github.com\golang\dep
56

67
# Build host

cmd/dep/ensure.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import (
1919
"sync"
2020

2121
"github.com/golang/dep"
22-
"github.com/golang/dep/internal/gps"
23-
"github.com/golang/dep/internal/gps/paths"
24-
"github.com/golang/dep/internal/gps/pkgtree"
22+
"github.com/golang/dep/gps"
23+
"github.com/golang/dep/gps/paths"
24+
"github.com/golang/dep/gps/pkgtree"
2525
"github.com/pkg/errors"
2626
)
2727

cmd/dep/ensure_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"testing"
1515

1616
"github.com/golang/dep"
17-
"github.com/golang/dep/internal/gps"
18-
"github.com/golang/dep/internal/gps/pkgtree"
17+
"github.com/golang/dep/gps"
18+
"github.com/golang/dep/gps/pkgtree"
1919
"github.com/golang/dep/internal/test"
2020
)
2121

cmd/dep/gopath_scanner.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import (
1111
"sync"
1212

1313
"github.com/golang/dep"
14+
"github.com/golang/dep/gps"
15+
"github.com/golang/dep/gps/paths"
16+
"github.com/golang/dep/gps/pkgtree"
1417
fb "github.com/golang/dep/internal/feedback"
1518
"github.com/golang/dep/internal/fs"
16-
"github.com/golang/dep/internal/gps"
17-
"github.com/golang/dep/internal/gps/paths"
18-
"github.com/golang/dep/internal/gps/pkgtree"
1919
"github.com/pkg/errors"
2020
)
2121

cmd/dep/gopath_scanner_test.go

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

1313
"github.com/golang/dep"
14-
"github.com/golang/dep/internal/gps"
14+
"github.com/golang/dep/gps"
1515
"github.com/golang/dep/internal/test"
1616
)
1717

cmd/dep/hash_in.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"flag"
99

1010
"github.com/golang/dep"
11-
"github.com/golang/dep/internal/gps"
12-
"github.com/golang/dep/internal/gps/pkgtree"
11+
"github.com/golang/dep/gps"
12+
"github.com/golang/dep/gps/pkgtree"
1313
"github.com/pkg/errors"
1414
)
1515

0 commit comments

Comments
 (0)