aports/testing/lxd/lxd-dont-go-get.patch
2018-12-18 14:34:14 +00:00

59 lines
1.6 KiB
Diff

diff --git a/Makefile b/Makefile
index 99f2aa6..4d79b8b 100644
--- a/Makefile
+++ b/Makefile
@@ -15,13 +15,11 @@ ifeq ($(TAG_SQLITE3),)
exit 1
endif
- go get -t -v -d ./...
CC=$(CC) go install -v -tags "$(TAG_SQLITE3)" $(DEBUG) ./...
@echo "LXD built successfully"
.PHONY: client
client:
- go get -t -v -d ./...
go install -v -tags "$(TAG_SQLITE3)" $(DEBUG) ./lxc
@echo "LXD client built successfully"
@@ -68,7 +66,6 @@ deps:
.PHONY: update
update:
- go get -t -v -d -u ./...
@echo "Dependencies updated"
.PHONY: update-protobuf
@@ -89,15 +86,11 @@ ifeq ($(TAG_SQLITE3),)
exit 1
endif
- go get -t -v -d ./...
CC=$(CC) go install -v -tags "$(TAG_SQLITE3) logdebug" $(DEBUG) ./...
@echo "LXD built successfully"
.PHONY: check
check: default
- go get -v -x github.com/rogpeppe/godeps
- go get -v -x github.com/remyoudompheng/go-misc/deadcode
- go get -v -x github.com/golang/lint/golint
go test -v -tags "$(TAG_SQLITE3)" $(DEBUG) ./...
cd test && ./main.sh
@@ -113,7 +106,6 @@ dist:
ln -s ../../../../lxd-$(VERSION) $(TMP)/dist/src/github.com/lxc/lxd
# Download dependencies
- cd $(TMP)/lxd-$(VERSION) && GOPATH=$(TMP)/dist go get -t -v -d ./...
# Download the cluster-enabled sqlite/dqlite
git clone --depth=1 https://github.com/CanonicalLtd/dqlite $(TMP)/dist/dqlite
@@ -149,7 +141,6 @@ update-po:
done
update-pot:
- go get -v -x github.com/snapcore/snapd/i18n/xgettext-go/
xgettext-go -o po/$(DOMAIN).pot --add-comments-tag=TRANSLATORS: --sort-output --package-name=$(DOMAIN) --msgid-bugs-address=lxc-devel@lists.linuxcontainers.org --keyword=i18n.G --keyword-plural=i18n.NG lxc/*.go lxc/*/*.go
build-mo: $(MOFILES)