open-vault/scripts/update_deps.sh

58 lines
1.4 KiB
Bash
Raw Normal View History

2016-06-01 14:30:42 +00:00
#!/bin/sh
set -e
TOOL=vault
## Make a temp dir
tempdir=$(mktemp -d update-${TOOL}-deps.XXXXXX)
## Set paths
export GOPATH="$(pwd)/${tempdir}"
export PATH="${GOPATH}/bin:${PATH}"
cd $tempdir
## Get Vault
mkdir -p src/github.com/hashicorp
cd src/github.com/hashicorp
echo "Fetching ${TOOL}..."
git clone https://github.com/hashicorp/${TOOL}
cd ${TOOL}
## Clean out earlier vendoring
rm -rf Godeps vendor
## Get govendor
go get github.com/kardianos/govendor
## Init
govendor init
## Fetch deps
echo "Fetching deps, will take some time..."
2019-01-26 23:43:35 +00:00
govendor fetch -v +missing
2016-06-01 14:30:42 +00:00
2018-05-22 19:42:54 +00:00
# Clean up after the logrus mess
2019-01-26 23:43:35 +00:00
govendor remove -v github.com/Sirupsen/logrus
2017-07-25 19:49:10 +00:00
cd vendor
find -type f | grep '.go' | xargs sed -i -e 's/Sirupsen/sirupsen/'
2018-05-22 19:42:54 +00:00
# Need the v2 branch for Azure
2019-01-26 23:43:35 +00:00
govendor fetch -v github.com/coreos/go-oidc@v2
2018-05-22 19:42:54 +00:00
# Need the v3 branch for dockertest
2019-01-26 23:43:35 +00:00
govendor fetch -v github.com/ory/dockertest@v3
# Current influx master is alpha, pin to v1.7.3
2019-03-26 00:38:08 +00:00
govendor fetch github.com/influxdata/influxdb/client/v2@v1.7.4
govendor fetch github.com/influxdata/influxdb/models@v1.7.4
govendor fetch github.com/influxdata/influxdb/pkg/escape@v1.7.4
2019-01-28 15:27:02 +00:00
# Current circonus needs v3
2019-03-26 00:38:08 +00:00
grep circonus-gometrics vendor.json | cut -d '"' -f 4 | while read -r i; do govendor fetch $i@v2; done
# API breakage
govendor fetch github.com/satori/go.uuid@f58768cc1a7a7e77a3bd49e98cdd21419399b6a3
2019-01-28 15:27:02 +00:00
2016-06-01 14:30:42 +00:00
echo "Done; to commit run \n\ncd ${GOPATH}/src/github.com/hashicorp/${TOOL}\n"