From e88471f7e665fcf3299b8fbe0438b7a6aebb6f4e Mon Sep 17 00:00:00 2001 From: iggy Date: Tue, 10 Mar 2020 05:41:59 +0000 Subject: testing/micro: fix version number in the binary Recent versions of micro changed where they look for version info. Update our build to match the new location. --- testing/micro/APKBUILD | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'testing/micro') diff --git a/testing/micro/APKBUILD b/testing/micro/APKBUILD index 053a4e0907..45c4748510 100644 --- a/testing/micro/APKBUILD +++ b/testing/micro/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=micro pkgver=2.0.2 -pkgrel=0 +pkgrel=1 # This will need to be updated along with version as it cannot currently be # obtained from the tarball, and is necessary if the user is to make error # reports upsteam. @@ -25,8 +25,12 @@ prepare() { build() { export GOPATH="$srcdir" - go get -v -ldflags \ - "-s -w -X main.Version=$pkgver -X main.CommitHash=$_commithash" \ + go get -v -ldflags " + -s -w + -X github.com/zyedidia/micro/internal/util.Version=$pkgver-alpine$pkgrel + -X github.com/zyedidia/micro/internal/util.CommitHash=$_commithash + -X github.com/zyedidia/micro/internal/util.CompileDate=$SOURCE_DATE_EPOCH + " \ ./cmd/micro } -- cgit v1.2.3