Hello community, here is the log from the commit of package docker for openSUSE:Factory checked in at 2018-12-21 08:19:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/docker (Old) and /work/SRC/openSUSE:Factory/.docker.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "docker" Fri Dec 21 08:19:10 2018 rev:84 rq:659073 version:18.09.0_ce Changes: -------- --- /work/SRC/openSUSE:Factory/docker/docker.changes 2018-12-05 09:39:14.472977754 +0100 +++ /work/SRC/openSUSE:Factory/.docker.new.28833/docker.changes 2018-12-21 08:19:12.329694305 +0100 @@ -1,0 +2,6 @@ +Tue Dec 18 10:10:06 UTC 2018 - Aleksa Sarai <[email protected]> + +- Handle build breakage due to missing 'export GOPATH' (caused by resolution of + boo#1119634). I believe Docker is one of the only packages with this problem. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ docker.spec ++++++ --- /var/tmp/diff_new_pack.S0qXOU/_old 2018-12-21 08:19:13.125693560 +0100 +++ /var/tmp/diff_new_pack.S0qXOU/_new 2018-12-21 08:19:13.125693560 +0100 @@ -314,10 +314,10 @@ # Preparing GOPATH so that the client is visible to the compiler mkdir -p src/github.com/docker/ ln -s $(pwd)/components/cli $(pwd)/src/github.com/docker/cli -GOPATH=$GOPATH:$(pwd) +export GOPATH=$GOPATH:$(pwd) # DOCKER ENGINE -cd components/engine/ +pushd components/engine/ # ignore the warning that we compile outside a Docker container ./hack/make.sh dynbinary # build the tests binary @@ -325,17 +325,17 @@ -buildmode=pie \ -tags "$DOCKER_BUILDTAGS daemon autogen" \ -c github.com/docker/docker/integration-cli -o tests.main -cd ../.. +popd # DOCKER CLIENT -cd components/cli +pushd components/cli ./scripts/build/dynbinary mkdir -p ./man/man1 go build -buildmode=pie -o gen-manpages github.com/docker/cli/man ./gen-manpages --root "$(pwd)" --target "$(pwd)/man/man1" ./man/md2man-all.sh -cd ../.. +popd %check # We used to run 'go test' here, however we found that this actually didn't
