hugo update version 0.69.0 add extended

Signed-off-by: webbuilder_pel7ppc64lebuilder0 <webbuilder@powerel.org>
master
webbuilder_pel7ppc64lebuilder0 2020-04-21 11:24:46 +02:00
parent 0d50d678c0
commit 69d4576154
1 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,7 @@
%define debug_package %{nil}

Name : hugo
Version : 0.64.1
Version : 0.69.0
Release : 1%{?dist}
Summary : The worlds fastest framework for building websites.
Group : System/Web
@ -31,19 +31,24 @@ go mod download

%build
export GOPATH=`pwd`/go
export GO111MODULE=on
cd src/hugo
git checkout tags/v%{version}
go build -ldflags '-extldflags -s -w -buildid %{version}'
#go install -ldflags '-extldflags -s -w'
export SHORTCOMMIT=$(git rev-parse --short HEAD)
export BUILDDATE=$(date +%Y%m%d)
go build -v -ldflags "-extldflags -s -w -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \n') -buildid "%{version}" -X 'github.com/gohugoio/hugo/common/hugo.buildDate="$BUILDDATE"' -X 'github.com/gohugoio/hugo/common/hugo.commitHash="$SHORTCOMMIT"'" -o hugo
HUGO_BUILD_TAGS='extended' go build -v -ldflags "-extldflags -s -w -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \n') -buildid "%{version}" -X 'github.com/gohugoio/hugo/common/hugo.buildDate="$BUILDDATE"' -X 'github.com/gohugoio/hugo/common/hugo.commitHash="$SHORTCOMMIT"'" -o hugo-extended


%install
install -p -D -m 0555 src/hugo/hugo %{buildroot}%{_bindir}/hugo
install -p -D -m 0555 src/hugo/hugo-extended %{buildroot}%{_bindir}/hugo-extended


%files
%doc
%{_bindir}/hugo
%{_bindir}/hugo-extended


%changelog