Skip to content

Commit 5fe6b14

Browse files
authored
Merge pull request #50 from Cryptophobia/master
fix(glide): fix build dependencies using glide
2 parents 1c98f09 + 4784aab commit 5fe6b14

30 files changed

+95
-77
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
sudo: required
2+
dist: trusty
23
language: go
34
services:
45
- docker

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHORT_NAME ?= builder
33
include versioning.mk
44

55
# dockerized development environment variables
6-
REPO_PATH := github.com/deis/${SHORT_NAME}
6+
REPO_PATH := github.com/teamhephy/${SHORT_NAME}
77
DEV_ENV_IMAGE := quay.io/deis/go-dev:v0.22.0
88
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
99
DEV_ENV_PREFIX := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}

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-com-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-com-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,21 +6,21 @@ 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"
179
storagedriver "github.com/docker/distribution/registry/storage/driver"
1810
_ "github.com/docker/distribution/registry/storage/driver/azure"
1911
"github.com/docker/distribution/registry/storage/driver/factory"
2012
_ "github.com/docker/distribution/registry/storage/driver/gcs"
2113
_ "github.com/docker/distribution/registry/storage/driver/s3-aws"
2214
_ "github.com/docker/distribution/registry/storage/driver/swift"
2315
"github.com/kelseyhightower/envconfig"
16+
"github.com/teamhephy/builder/pkg"
17+
"github.com/teamhephy/builder/pkg/cleaner"
18+
"github.com/teamhephy/builder/pkg/conf"
19+
"github.com/teamhephy/builder/pkg/gitreceive"
20+
"github.com/teamhephy/builder/pkg/healthsrv"
21+
"github.com/teamhephy/builder/pkg/sshd"
22+
"github.com/teamhephy/builder/pkg/sys"
23+
pkglog "github.com/teamhephy/pkg/log"
2424
kcl "k8s.io/kubernetes/pkg/client/unversioned"
2525
)
2626

charts/builder/Chart.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ home: https://github.com/teamhephy/builder
33
version: <Will be populated by the ci before publishing the chart>
44
description: Git server and application builder for Deis Workflow.
55
maintainers:
6-
- name: Deis Team
7-
6+

charts/builder/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
org: "deisci"
1+
org: "hephy"
22
pull_policy: "Always"
33
docker_tag: canary
44
# limits_cpu: "100m"

glide.lock

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

glide.yaml

Lines changed: 5 additions & 5 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
@@ -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,12 +10,12 @@ 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"
1713
"github.com/docker/distribution/context"
1814
storagedriver "github.com/docker/distribution/registry/storage/driver"
15+
"github.com/teamhephy/builder/pkg/gitreceive"
16+
"github.com/teamhephy/builder/pkg/k8s"
17+
"github.com/teamhephy/builder/pkg/sys"
18+
"github.com/teamhephy/pkg/log"
1919
"k8s.io/kubernetes/pkg/api"
2020
"k8s.io/kubernetes/pkg/fields"
2121
"k8s.io/kubernetes/pkg/labels"

0 commit comments

Comments
 (0)