Skip to content

Commit c82f74d

Browse files
author
Sivaram Mothiki
committed
Merge pull request #2 from deis/vendor
chore(*): vendoring all dependencies
2 parents c721e19 + feb8f5a commit c82f74d

15 files changed

Lines changed: 29 additions & 5 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
rootfs/bin/boot
22
vendor/
3+
rootfs/usr/bin/

Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,13 @@ all:
4040
# This illustrates a two-stage Docker build. docker-compile runs inside of
4141
# the Docker environment. Other alternatives are cross-compiling, doing
4242
# the build as a `docker build`.
43-
build:
44-
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -ldflags '-s' -o $(BINARY_DEST_DIR)/builder cli/builder.go || exit 1
45-
mkdir -p ${BINDIR}/bin
46-
docker run --rm -v ${PWD}:/app -w /app golang:1.5.1 make docker-compile
43+
#
44+
# Aaron(2015-11-17) doesn't work, commented out. use 'make docker-build-bpb' instead
45+
#
46+
# build:
47+
# GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -a -installsuffix cgo -ldflags '-s' -o $(BINARY_DEST_DIR)/builder boot.go || exit 1
48+
# mkdir -p ${BINDIR}/bin
49+
# docker run --rm -v ${PWD}:/app -w /app golang:1.5.1 make docker-compile
4750

4851
docker-build-bpb:
4952
cp -r bpbuilder/etcd pkg/

glide.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package: main
2+
import:
3+
- package: github.com/coreos/go-etcd
4+
subpackages:
5+
- /etcd
6+
- package: github.com/deis/deis
7+
subpackages:
8+
- /buildpack/builder/sshd
9+
- /pkg/time
10+
- package: github.com/gorilla/mux
11+
- package: github.com/gorilla/context
12+
- package: github.com/Masterminds/cookoo
13+
subpackages:
14+
- /log
15+
- /safely
16+
- /fmt
17+
- package: golang.org/x/crypto
18+
subpackages:
19+
- /ssh
20+
- package: gopkg.in/yaml.v2

pkg/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package pkg
88
import (
99
"github.com/Masterminds/cookoo"
1010
clog "github.com/Masterminds/cookoo/log"
11-
"github.com/deis/deis/buildpack/builder/sshd"
11+
"github.com/deis/builder/pkg/sshd"
1212

1313
"log"
1414
"os"

rootfs/usr/bin/bpbuilder

-6.47 MB
Binary file not shown.

rootfs/usr/bin/builder

-9.56 MB
Binary file not shown.

rootfs/usr/bin/extract-domain

-5.1 MB
Binary file not shown.

rootfs/usr/bin/extract-types

-5.3 MB
Binary file not shown.

rootfs/usr/bin/extract-version

-5.1 MB
Binary file not shown.

rootfs/usr/bin/fetcher

-4.82 MB
Binary file not shown.

0 commit comments

Comments
 (0)