Update go version to match (necessary) plugin versions

Another version bump for plugins
This commit is contained in:
Sean E. Russell 2020-02-28 15:31:34 -06:00
parent 18be89370d
commit 640f4a21d7
4 changed files with 3 additions and 32 deletions

View File

@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
> - **Fixed**: for any bug fixes.
> - **Security**: in case of vulnerabilities.
## [3.4.2] - ??
## [3.4.3] - ??
### Added

View File

@ -1,29 +0,0 @@
# Maintainer: Fabio 'Lolix' Loli <lolix@disroot.org> -> https://github.com/FabioLolix
# Co-maintainer/contributor: Sean E. Russell <ser@ser1.net>
pkgname=gotop
pkgver=3.3.1
pkgrel=0
pkgdesc='A terminal based graphical activity monitor inspired by gtop and vtop'
arch=(x86_64 i686 arm armv6h armv7h aarch64 armv5h)
url="https://github.com/xxxserxxx/gotop"
license=(AGPL3)
provides=(gotop)
conflicts=(gotop)
makedepends=("go")
depends=('glibc>=2.31-1')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('79b261e5d778ddfdf85ded375dc4877b7d508916b771c2d1b7655849776ea66c')
build() {
cd "${srcdir}"/${pkgname}-${pkgver}
go build \
-gcflags "all=-trimpath=${PWD}" \
-asmflags "all=-trimpath=${PWD}" \
-ldflags "-extldflags ${LDFLAGS}" \
./cmd/gotop
}
package() {
install -Dm755 "${srcdir}"/${pkgname}-${pkgver}/gotop "${pkgdir}"/usr/bin/gotop
}

View File

@ -28,7 +28,7 @@ import (
const (
appName = "gotop"
version = "3.4.2"
version = "3.4.3"
graphHorizontalScaleDelta = 3
defaultUI = "cpu\ndisk/1 2:mem/2\ntemp\nnet procs"

2
go.mod
View File

@ -15,4 +15,4 @@ require (
howett.net/plist v0.0.0-20181124034731-591f970eefbb // indirect
)
go 1.13
go 1.14