2017-11-01 16:08:46 +01:00
|
|
|
#!/bin/bash -eu
|
2017-09-06 21:41:22 +02:00
|
|
|
#
|
|
|
|
# Compile gocryptfs and bake the git version string of itself and the go-fuse
|
|
|
|
# library into the binary.
|
|
|
|
#
|
|
|
|
# If you want to fake a build date to reproduce a specific build,
|
|
|
|
# you can use:
|
2018-12-16 21:34:41 +01:00
|
|
|
# BUILDDATE=2017-02-03 ./build.bash
|
|
|
|
# or
|
|
|
|
# SOURCE_DATE_EPOCH=1544192417 ./build.bash
|
|
|
|
# .
|
2015-10-05 20:32:10 +02:00
|
|
|
|
2015-12-20 17:44:11 +01:00
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
2017-11-01 16:08:46 +01:00
|
|
|
# Make sure we have the go binary
|
|
|
|
go version > /dev/null
|
|
|
|
|
2020-04-13 14:07:55 +02:00
|
|
|
# Make it work on Go 1.11 and 1.12
|
|
|
|
# https://dev.to/maelvls/why-is-go111module-everywhere-and-everything-about-go-modules-24k#-raw-go111module-endraw-with-go-111-and-112
|
|
|
|
export GO111MODULE=on
|
|
|
|
|
2017-02-19 20:14:46 +01:00
|
|
|
# GOPATH may contain multiple paths separated by ":"
|
|
|
|
GOPATH1=$(go env GOPATH | cut -f1 -d:)
|
2016-06-29 22:27:32 +02:00
|
|
|
|
2017-11-01 16:08:46 +01:00
|
|
|
# gocryptfs version according to git or a VERSION file
|
|
|
|
if [[ -d .git ]] ; then
|
|
|
|
GITVERSION=$(git describe --tags --dirty)
|
2020-04-13 12:35:40 +02:00
|
|
|
GITBRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
if [[ -n $GITBRANCH && $GITBRANCH != master ]] ; then
|
|
|
|
GITVERSION="$GITVERSION.$GITBRANCH"
|
|
|
|
fi
|
2017-11-01 16:08:46 +01:00
|
|
|
elif [[ -f VERSION ]] ; then
|
|
|
|
GITVERSION=$(cat VERSION)
|
|
|
|
else
|
|
|
|
echo "Warning: could not determine gocryptfs version"
|
|
|
|
GITVERSION="[unknown]"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# go-fuse version, if available
|
|
|
|
if [[ -d vendor/github.com/hanwen/go-fuse ]] ; then
|
|
|
|
GITVERSIONFUSE="[vendored]"
|
|
|
|
else
|
2020-04-13 14:07:55 +02:00
|
|
|
# go-fuse version according to Go Modules
|
2017-11-01 16:08:46 +01:00
|
|
|
FAIL=0
|
2020-04-13 14:07:55 +02:00
|
|
|
OUT=$(go list -m github.com/hanwen/go-fuse | cut -d' ' -f2) || FAIL=1
|
2017-11-01 16:08:46 +01:00
|
|
|
if [[ $FAIL -eq 0 ]]; then
|
|
|
|
GITVERSIONFUSE=$OUT
|
|
|
|
else
|
|
|
|
echo "Warning: could not determine go-fuse version"
|
|
|
|
GITVERSIONFUSE="[unknown]"
|
|
|
|
fi
|
2017-06-20 18:59:48 +02:00
|
|
|
fi
|
2015-11-01 13:55:35 +01:00
|
|
|
|
2018-12-16 20:16:12 +01:00
|
|
|
# Build date, something like "2017-09-06". Don't override BUILDDATE
|
|
|
|
# if it is already set. This may be done for reproducible builds.
|
2017-09-06 21:41:22 +02:00
|
|
|
if [[ -z ${BUILDDATE:-} ]] ; then
|
|
|
|
BUILDDATE=$(date +%Y-%m-%d)
|
|
|
|
fi
|
2016-07-03 16:49:42 +02:00
|
|
|
|
2018-12-16 20:16:12 +01:00
|
|
|
# If SOURCE_DATE_EPOCH is set, it overrides BUILDDATE. This is the
|
|
|
|
# standard environment variable for faking the date in reproducible builds.
|
|
|
|
if [[ -n ${SOURCE_DATE_EPOCH:-} ]] ; then
|
|
|
|
BUILDDATE=$(date --utc --date="@${SOURCE_DATE_EPOCH}" +%Y-%m-%d)
|
|
|
|
fi
|
|
|
|
|
2018-12-16 20:39:01 +01:00
|
|
|
# For reproducible builds, we get rid of $HOME references in the binary
|
|
|
|
# using "-trimpath".
|
|
|
|
# Note: we have to set both -gcflags and -asmflags because otherwise
|
|
|
|
# "$HOME/go/src/golang.org/x/sys/unix/asm_linux_amd64.s" stays in the binary.
|
|
|
|
GV=$(go version)
|
|
|
|
if [[ $GV == *"1.7"* ]] || [[ $GV == *"1.8"* ]] || [[ $GV == *"1.9"* ]] ; then
|
|
|
|
TRIM="-trimpath=${GOPATH1}/src"
|
|
|
|
else
|
|
|
|
# Go 1.10 changed the syntax. You now have to prefix "all=" to affect
|
|
|
|
# all compiled packages.
|
|
|
|
TRIM="all=-trimpath=${GOPATH1}/src"
|
|
|
|
fi
|
|
|
|
|
2018-12-16 21:34:41 +01:00
|
|
|
GO_LDFLAGS="-X main.GitVersion=$GITVERSION -X main.GitVersionFuse=$GITVERSIONFUSE -X main.BuildDate=$BUILDDATE"
|
2018-12-16 20:16:12 +01:00
|
|
|
|
2018-12-16 21:34:41 +01:00
|
|
|
# If LDFLAGS is set, add it as "-extldflags".
|
|
|
|
if [[ -n ${LDFLAGS:-} ]] ; then
|
2018-12-26 21:45:10 +01:00
|
|
|
GO_LDFLAGS="$GO_LDFLAGS \"-extldflags=$LDFLAGS\""
|
2018-12-16 21:34:41 +01:00
|
|
|
fi
|
|
|
|
|
2019-09-08 15:50:05 +02:00
|
|
|
# Actual "go build" call for gocryptfs
|
2018-12-16 21:34:41 +01:00
|
|
|
go build "-ldflags=$GO_LDFLAGS" "-gcflags=$TRIM" "-asmflags=$TRIM" "$@"
|
2019-09-08 15:50:05 +02:00
|
|
|
# Additional binaries
|
2019-03-17 22:22:15 +01:00
|
|
|
(cd gocryptfs-xray; go build "-ldflags=$GO_LDFLAGS" "-gcflags=$TRIM" "-asmflags=$TRIM" "$@")
|
2019-09-08 15:50:05 +02:00
|
|
|
(cd contrib/statfs; go build "-ldflags=$GO_LDFLAGS" "-gcflags=$TRIM" "-asmflags=$TRIM" "$@")
|
2015-12-20 17:30:10 +01:00
|
|
|
|
|
|
|
./gocryptfs -version
|
2016-01-09 15:31:34 +01:00
|
|
|
|
2020-04-13 13:09:27 +02:00
|
|
|
mkdir -p "$GOPATH1/bin"
|
|
|
|
cp -af gocryptfs "$GOPATH1/bin"
|