Add needed dependencies. Add GOEXPERIMENTS var

pull/343/head
Dave Cunningham 10 years ago
parent c00a711b0c
commit e72d206a5d

@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
export GO15VENDOREXPERIMENT=1
.PHONY: info .PHONY: info
info: info:
$(MAKE) -C $(ROOTFS) $@ $(MAKE) -C $(ROOTFS) $@

57
glide.lock generated

@ -1,65 +1,50 @@
hash: f34e830b237fcba5202f84c55b21764226b7e8c201f7622e9639c7a628e33b0b hash: 9b0337b6fd16de350036ff27385d937cd6b84354f2ebdd906c0b00b66747956b
updated: 2016-03-14T10:53:18.091793732-06:00 updated: 2016-03-16T02:47:06.041180391-04:00
imports: imports:
- name: github.com/aokoli/goutils - name: github.com/aokoli/goutils
version: 9c37978a95bd5c709a15883b6242714ea6709e64 version: 9c37978a95bd5c709a15883b6242714ea6709e64
- name: github.com/cloudfoundry-incubator/candiedyaml
version: 4e924c79e32959414e8c7aaed6607176d8ee79c3
- name: github.com/codegangsta/cli - name: github.com/codegangsta/cli
version: a2943485b110df8842045ae0600047f88a3a56a1 version: aca5b047ed14d17224157c3434ea93bf6cdaadee
- name: github.com/emicklei/go-restful - name: github.com/emicklei/go-restful
version: b86acf97a74ed7603ac78d012f5535b4d587b156 version: 402f11d42bfe18198ffd5c68258c631c8fbf2c3c
subpackages:
- log
- name: github.com/ghodss/yaml - name: github.com/ghodss/yaml
version: 73d445a93680fa1a78ae23a5839bad48f32ba1ee version: 1a6f069841556a7bcaff4a397ca6e8328d266c2f
- name: github.com/google/go-github - name: github.com/google/go-github
version: b8b4ac742977310ff6e75140a403a38dab109977 version: 58e27d2951882f0b3101ba9d6e0c34a0a49350c6
subpackages: subpackages:
- github - github
- name: github.com/google/go-querystring - name: github.com/google/go-querystring
version: 2a60fc2ba6c19de80291203597d752e9ba58e4c0 version: 6bb77fe6f42b85397288d4f6f67ac72f8f400ee7
subpackages: subpackages:
- query - query
- name: github.com/gorilla/context - name: github.com/gorilla/context
version: 1c83b3eabd45b6d76072b66b746c20815fb2872d version: 1ea25387ff6f684839d82767c1733ff4d4d15d0a
- name: github.com/gorilla/handlers - name: github.com/gorilla/handlers
version: 8f2758070a82adb7a3ad6b223a0b91878f32d400 version: ee54c7b44cab12289237fb8631314790076e728b
- name: github.com/gorilla/mux - name: github.com/gorilla/mux
version: 26a6070f849969ba72b72256e9f14cf519751690 version: acf3be1b335c8ce30b2c8d51300984666f0ceefa
- name: github.com/Masterminds/httputil - name: github.com/Masterminds/httputil
version: e9b977e9cf16f9d339573e18f0f1f7ce5d3f419a version: e9b977e9cf16f9d339573e18f0f1f7ce5d3f419a
- name: github.com/Masterminds/semver - name: github.com/Masterminds/semver
version: c4f7ef0702f269161a60489ccbbc9f1241ad1265 version: 808ed7761c233af2de3f9729a041d68c62527f3a
- name: github.com/Masterminds/sprig - name: github.com/Masterminds/sprig
version: 0199893f008a87287bf2b4e3e390e66bb074c659 version: 0199893f008a87287bf2b4e3e390e66bb074c659
- name: golang.org/x/net - name: golang.org/x/net
version: 04b9de9b512f58addf28c9853d50ebef61c3953e version: 35b06af0720201bc2f326773a80767387544f8c4
subpackages:
- context
- context/ctxhttp
- name: golang.org/x/oauth2 - name: golang.org/x/oauth2
version: 8a57ed94ffd43444c0879fe75701732a38afc985 version: 045497edb6234273d67dbc25da3f2ddbc4c4cacf
subpackages:
- google
- internal
- jws
- jwt
- name: google.golang.org/api - name: google.golang.org/api
version: 0caa37974a5f5ae67172acf68b4970f7864f994c version: e61f6e00cdf8b78313641288c50f6e2d4e3d749c
subpackages: subpackages:
- storage/v1 - storage
- gensupport
- googleapi
- googleapi/internal/uritemplates
- name: google.golang.org/cloud - name: google.golang.org/cloud
version: fb10e8da373d97f6ba5e648299a10b3b91f14cd5 version: 5ff67fe23b1ba3ed2135491d9bb2ca087c84bfde
subpackages: subpackages:
- compute/metadata - compute
- internal
- name: gopkg.in/mgo.v2 - name: gopkg.in/mgo.v2
version: d90005c5262a3463800497ea5a89aed5fe22c886 version: b6e2fa371e64216a45e61072a96d4e3859f169da
subpackages:
- bson
- internal/scram
- name: gopkg.in/yaml.v2 - name: gopkg.in/yaml.v2
version: f7716cbe52baa25d2e9b0d0da546fcf909fc16b4 version: a83829b6f1293c91addabc89d0571c246397bbf4
devImports: [] devImports: []

@ -2,16 +2,24 @@ package: github.com/kubernetes/deployment-manager
ignore: ignore:
- google.golang.com/appengine - google.golang.com/appengine
import: import:
- package: github.com/Masterminds/semver
- package: github.com/aokoli/goutils - package: github.com/aokoli/goutils
- package: github.com/cloudfoundry-incubator/candiedyaml
- package: github.com/codegangsta/cli - package: github.com/codegangsta/cli
- package: github.com/emicklei/go-restful - package: github.com/emicklei/go-restful
- package: github.com/ghodss/yaml - package: github.com/ghodss/yaml
- package: github.com/google/go-github - package: github.com/google/go-github
subpackages: subpackages:
- github - github
- package: github.com/google/go-querystring/query
- package: github.com/Masterminds/semver
- package: github.com/gorilla/context
- package: github.com/gorilla/handlers - package: github.com/gorilla/handlers
- package: github.com/gorilla/mux - package: github.com/gorilla/mux
- package: gopkg.in/yaml.v2
- package: github.com/Masterminds/sprig
- package: github.com/Masterminds/httputil - package: github.com/Masterminds/httputil
- package: github.com/Masterminds/sprig
- package: golang.org/x/net
- package: golang.org/x/oauth2
- package: google.golang.org/api/storage
- package: google.golang.org/cloud/compute
- package: gopkg.in/mgo.v2
- package: gopkg.in/yaml.v2

Loading…
Cancel
Save