2015-06-05 17:47:27 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2015-09-10 22:10:20 -04:00
|
|
|
PROJECT=github.com/docker/docker
|
|
|
|
|
2015-06-05 17:47:27 -04:00
|
|
|
# Downloads dependencies into vendor/ directory
|
|
|
|
mkdir -p vendor
|
|
|
|
|
2015-06-23 17:41:53 -04:00
|
|
|
if ! go list github.com/docker/docker/docker &> /dev/null; then
|
|
|
|
rm -rf .gopath
|
|
|
|
mkdir -p .gopath/src/github.com/docker
|
|
|
|
ln -sf ../../../.. .gopath/src/${PROJECT}
|
|
|
|
export GOPATH="${PWD}/.gopath:${PWD}/vendor"
|
|
|
|
fi
|
|
|
|
export GOPATH="$GOPATH:${PWD}/vendor"
|
|
|
|
|
|
|
|
find='find'
|
|
|
|
if [ "$(go env GOHOSTOS)" = 'windows' ]; then
|
|
|
|
find='/usr/bin/find'
|
|
|
|
fi
|
2015-06-05 17:47:27 -04:00
|
|
|
|
|
|
|
clone() {
|
|
|
|
local vcs="$1"
|
|
|
|
local pkg="$2"
|
|
|
|
local rev="$3"
|
2015-06-16 10:08:18 -04:00
|
|
|
local url="$4"
|
2015-06-05 17:47:27 -04:00
|
|
|
|
2015-06-16 10:08:18 -04:00
|
|
|
: ${url:=https://$pkg}
|
2015-06-05 17:47:27 -04:00
|
|
|
local target="vendor/src/$pkg"
|
|
|
|
|
|
|
|
echo -n "$pkg @ $rev: "
|
|
|
|
|
|
|
|
if [ -d "$target" ]; then
|
|
|
|
echo -n 'rm old, '
|
|
|
|
rm -rf "$target"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -n 'clone, '
|
|
|
|
case "$vcs" in
|
|
|
|
git)
|
|
|
|
git clone --quiet --no-checkout "$url" "$target"
|
2015-08-19 18:56:04 -04:00
|
|
|
( cd "$target" && git checkout --quiet "$rev" && git reset --quiet --hard "$rev" )
|
2015-06-05 17:47:27 -04:00
|
|
|
;;
|
|
|
|
hg)
|
|
|
|
hg clone --quiet --updaterev "$rev" "$url" "$target"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
echo -n 'rm VCS, '
|
|
|
|
( cd "$target" && rm -rf .{git,hg} )
|
|
|
|
|
|
|
|
echo -n 'rm vendor, '
|
|
|
|
( cd "$target" && rm -rf vendor Godeps/_workspace )
|
|
|
|
|
|
|
|
echo done
|
|
|
|
}
|
|
|
|
|
|
|
|
# get an ENV from the Dockerfile with support for multiline values
|
|
|
|
_dockerfile_env() {
|
|
|
|
local e="$1"
|
|
|
|
awk '
|
|
|
|
$1 == "ENV" && $2 == "'"$e"'" {
|
|
|
|
sub(/^ENV +([^ ]+) +/, "");
|
|
|
|
inEnv = 1;
|
|
|
|
}
|
|
|
|
inEnv {
|
|
|
|
if (sub(/\\$/, "")) {
|
|
|
|
printf "%s", $0;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
print;
|
|
|
|
exit;
|
|
|
|
}
|
2015-11-05 09:38:41 -05:00
|
|
|
' ${DOCKER_FILE:="Dockerfile"}
|
2015-06-05 17:47:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
clean() {
|
|
|
|
local packages=(
|
2015-09-10 22:10:20 -04:00
|
|
|
"${PROJECT}/docker" # package main
|
|
|
|
"${PROJECT}/dockerinit" # package main
|
|
|
|
"${PROJECT}/integration-cli" # external tests
|
2015-06-05 17:47:27 -04:00
|
|
|
)
|
2015-11-05 09:38:41 -05:00
|
|
|
local dockerPlatforms=( ${DOCKER_ENGINE_OSARCH:="linux/amd64"} $(_dockerfile_env DOCKER_CROSSPLATFORMS) )
|
2015-06-05 17:47:27 -04:00
|
|
|
local dockerBuildTags="$(_dockerfile_env DOCKER_BUILDTAGS)"
|
|
|
|
local buildTagCombos=(
|
|
|
|
''
|
|
|
|
'experimental'
|
2015-10-30 20:37:08 -04:00
|
|
|
'pkcs11'
|
2015-06-05 17:47:27 -04:00
|
|
|
"$dockerBuildTags"
|
|
|
|
"daemon $dockerBuildTags"
|
2015-05-30 19:05:12 -04:00
|
|
|
"daemon cgo $dockerBuildTags"
|
2015-06-05 17:47:27 -04:00
|
|
|
"experimental $dockerBuildTags"
|
|
|
|
"experimental daemon $dockerBuildTags"
|
2015-05-30 19:05:12 -04:00
|
|
|
"experimental daemon cgo $dockerBuildTags"
|
2015-10-30 20:37:08 -04:00
|
|
|
"pkcs11 $dockerBuildTags"
|
|
|
|
"pkcs11 daemon $dockerBuildTags"
|
|
|
|
"pkcs11 daemon cgo $dockerBuildTags"
|
2015-06-05 17:47:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
echo
|
|
|
|
|
|
|
|
echo -n 'collecting import graph, '
|
|
|
|
local IFS=$'\n'
|
|
|
|
local imports=( $(
|
|
|
|
for platform in "${dockerPlatforms[@]}"; do
|
|
|
|
export GOOS="${platform%/*}";
|
|
|
|
export GOARCH="${platform##*/}";
|
|
|
|
for buildTags in "${buildTagCombos[@]}"; do
|
2015-12-16 12:58:20 -05:00
|
|
|
go list -e -tags "$buildTags" -f '{{join .Deps "\n"}}' "${packages[@]}"
|
|
|
|
go list -e -tags "$buildTags" -f '{{join .TestImports "\n"}}' "${packages[@]}"
|
2015-06-05 17:47:27 -04:00
|
|
|
done
|
2015-09-14 14:59:38 -04:00
|
|
|
done | grep -vE "^${PROJECT}" | sort -u
|
2015-06-05 17:47:27 -04:00
|
|
|
) )
|
|
|
|
imports=( $(go list -e -f '{{if not .Standard}}{{.ImportPath}}{{end}}' "${imports[@]}") )
|
|
|
|
unset IFS
|
|
|
|
|
|
|
|
echo -n 'pruning unused packages, '
|
2015-05-30 19:05:12 -04:00
|
|
|
findArgs=(
|
|
|
|
# This directory contains only .c and .h files which are necessary
|
|
|
|
-path vendor/src/github.com/mattn/go-sqlite3/code
|
|
|
|
)
|
2015-06-05 17:47:27 -04:00
|
|
|
for import in "${imports[@]}"; do
|
|
|
|
[ "${#findArgs[@]}" -eq 0 ] || findArgs+=( -or )
|
|
|
|
findArgs+=( -path "vendor/src/$import" )
|
|
|
|
done
|
|
|
|
local IFS=$'\n'
|
2015-06-23 17:41:53 -04:00
|
|
|
local prune=( $($find vendor -depth -type d -not '(' "${findArgs[@]}" ')') )
|
2015-06-05 17:47:27 -04:00
|
|
|
unset IFS
|
|
|
|
for dir in "${prune[@]}"; do
|
2015-06-23 17:41:53 -04:00
|
|
|
$find "$dir" -maxdepth 1 -not -type d -not -name 'LICENSE*' -not -name 'COPYING*' -exec rm -v -f '{}' ';'
|
2015-06-05 17:47:27 -04:00
|
|
|
rmdir "$dir" 2>/dev/null || true
|
|
|
|
done
|
|
|
|
|
|
|
|
echo -n 'pruning unused files, '
|
2015-06-23 17:41:53 -04:00
|
|
|
$find vendor -type f -name '*_test.go' -exec rm -v '{}' ';'
|
2015-06-05 17:47:27 -04:00
|
|
|
|
|
|
|
echo done
|
|
|
|
}
|
2015-10-13 14:33:47 -04:00
|
|
|
|
|
|
|
# Fix up hard-coded imports that refer to Godeps paths so they'll work with our vendoring
|
|
|
|
fix_rewritten_imports () {
|
|
|
|
local pkg="$1"
|
|
|
|
local remove="${pkg}/Godeps/_workspace/src/"
|
|
|
|
local target="vendor/src/$pkg"
|
|
|
|
|
|
|
|
echo "$pkg: fixing rewritten imports"
|
2015-06-23 17:41:53 -04:00
|
|
|
$find "$target" -name \*.go -exec sed -i -e "s|\"${remove}|\"|g" {} \;
|
2015-10-13 14:33:47 -04:00
|
|
|
}
|