Skip to content

Commit 291e66d

Browse files
committed
fix(glide): fix all package names to teamhephy org
1 parent 64b8cd9 commit 291e66d

25 files changed

Lines changed: 86 additions & 68 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Hephy Builder v2
33

44
[![Build Status](https://ci.deis.io/job/builder/badge/icon)](https://ci.deis.io/job/builder) [![codecov](https://codecov.io/gh/deis/builder/branch/master/graph/badge.svg)](https://codecov.io/gh/deis/builder)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/deis/builder)](https://goreportcard.com/report/github.com/deis/builder)[![codebeat badge](https://codebeat.co/badges/e29e5e2b-531d-4374-810b-f05053c47688)](https://codebeat.co/projects/github.tiyicn.workers.dev-deis-builder) [![Docker Repository on Quay](https://quay.io/repository/deisci/builder/status "Docker Repository on Quay")](https://quay.io/repository/deisci/builder)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/teamhephy/builder)](https://goreportcard.com/report/github.com/teamhephy/builder)[![codebeat badge](https://codebeat.co/badges/e29e5e2b-531d-4374-810b-f05053c47688)](https://codebeat.co/projects/github.tiyicn.workers.dev-deis-builder) [![Docker Repository on Quay](https://quay.io/repository/deisci/builder/status "Docker Repository on Quay")](https://quay.io/repository/deisci/builder)
66

77
Hephy - A Fork of Deis Workflow
88

boot.go

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

88
"github.com/codegangsta/cli"
9-
"github.com/deis/builder/pkg"
10-
"github.com/deis/builder/pkg/cleaner"
11-
"github.com/deis/builder/pkg/conf"
12-
"github.com/deis/builder/pkg/gitreceive"
13-
"github.com/deis/builder/pkg/healthsrv"
14-
"github.com/deis/builder/pkg/sshd"
15-
"github.com/deis/builder/pkg/sys"
16-
pkglog "github.com/deis/pkg/log"
9+
"github.com/teamhephy/builder/pkg"
10+
"github.com/teamhephy/builder/pkg/cleaner"
11+
"github.com/teamhephy/builder/pkg/conf"
12+
"github.com/teamhephy/builder/pkg/gitreceive"
13+
"github.com/teamhephy/builder/pkg/healthsrv"
14+
"github.com/teamhephy/builder/pkg/sshd"
15+
"github.com/teamhephy/builder/pkg/sys"
16+
pkglog "github.com/teamhephy/pkg/log"
1717
storagedriver "github.com/docker/distribution/registry/storage/driver"
1818
_ "github.com/docker/distribution/registry/storage/driver/azure"
1919
"github.com/docker/distribution/registry/storage/driver/factory"

glide.lock

Lines changed: 24 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glide.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package: github.com/deis/builder
1+
package: github.com/teamhephy/builder
22
ignore:
33
- appengine
44
- appengine/memcache
@@ -15,8 +15,8 @@ import:
1515
- package: gopkg.in/yaml.v2
1616
version: eca94c41d994ae2215d455ce578ae6e2dc6ee516
1717
- package: github.com/pborman/uuid
18-
- package: github.com/deis/pkg
19-
version: 00e55bded444eea7fadff398f93152e962a0c338
18+
- package: github.com/teamhephy/pkg
19+
version: 777f37a30108edaf6a2bd4e423cde34ec12870fd
2020
subpackages:
2121
- time
2222
- log
@@ -28,7 +28,7 @@ import:
2828
version: 6882f85ccdc7c1822b146d1a6b0c2c48f91b5140
2929
- package: github.com/docker/distribution
3030
repo: https://github.com/teamhephy/distribution
31-
version: 0afef00d5764404d70f86076f364551657d51de6
31+
version: 5a101320cc27f191cef9b608f344a76d9f6b10f8
3232
vcs: git
3333
- package: speter.net/go/exp/math/dec/inf
3434
repo: https://github.com/belua/inf
@@ -41,5 +41,5 @@ import:
4141
version: 8e7dc108ab3a1ab6ce6d922bbaff5657b88e8e49
4242
repo: https://github.com/spf13/pflag
4343
vcs: git
44-
- package: github.com/deis/controller-sdk-go
45-
version: 27bab7c5535de202635877fa7600d5158b91a757
44+
- package: github.com/teamhephy/controller-sdk-go
45+
version: a1ffb4886a5f7f92fdd710b99e68c2555b74a703

pkg/builder.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ package pkg
77
import (
88
"fmt"
99

10-
"github.com/deis/builder/pkg/sshd"
11-
"github.com/deis/pkg/log"
10+
"github.com/teamhephy/builder/pkg/sshd"
11+
"github.com/teamhephy/pkg/log"
1212
)
1313

1414
// Return codes that will be sent to the shell.

pkg/cleaner/cleaner.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/deis/builder/pkg/gitreceive"
14-
"github.com/deis/builder/pkg/k8s"
15-
"github.com/deis/builder/pkg/sys"
16-
"github.com/deis/pkg/log"
13+
"github.com/teamhephy/builder/pkg/gitreceive"
14+
"github.com/teamhephy/builder/pkg/k8s"
15+
"github.com/teamhephy/builder/pkg/sys"
16+
"github.com/teamhephy/pkg/log"
1717
"github.com/docker/distribution/context"
1818
storagedriver "github.com/docker/distribution/registry/storage/driver"
1919
"k8s.io/kubernetes/pkg/api"

pkg/conf/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io/ioutil"
66
"strings"
77

8-
"github.com/deis/builder/pkg/sys"
8+
"github.com/teamhephy/builder/pkg/sys"
99
)
1010

1111
const (

pkg/conf/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99

1010
"github.com/arschles/assert"
11-
"github.com/deis/builder/pkg/sys"
11+
"github.com/teamhephy/builder/pkg/sys"
1212
)
1313

1414
func TestGetStorageParams(t *testing.T) {

pkg/controller/utils.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package controller
33
import (
44
"fmt"
55

6-
"github.com/deis/builder/pkg/conf"
7-
deis "github.com/deis/controller-sdk-go"
8-
"github.com/deis/pkg/log"
6+
"github.com/teamhephy/builder/pkg/conf"
7+
deis "github.com/teamhephy/controller-sdk-go"
8+
"github.com/teamhephy/pkg/log"
99
)
1010

1111
// New creates a new SDK client configured as the builder.

pkg/controller/utils_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"path/filepath"
99
"testing"
1010

11-
builderconf "github.com/deis/builder/pkg/conf"
11+
builderconf "github.com/teamhephy/builder/pkg/conf"
1212

1313
"github.com/arschles/assert"
14-
deis "github.com/deis/controller-sdk-go"
14+
deis "github.com/teamhephy/controller-sdk-go"
1515
)
1616

1717
func TestNew(t *testing.T) {

0 commit comments

Comments
 (0)