From 640f4a21d7d83ba0b20511522614e62ef29e0dbd Mon Sep 17 00:00:00 2001 From: "Sean E. Russell" Date: Fri, 28 Feb 2020 15:31:34 -0600 Subject: [PATCH] Update go version to match (necessary) plugin versions Another version bump for plugins --- CHANGELOG.md | 2 +- build/PKGBUILD | 29 ----------------------------- cmd/gotop/main.go | 2 +- go.mod | 2 +- 4 files changed, 3 insertions(+), 32 deletions(-) delete mode 100644 build/PKGBUILD diff --git a/CHANGELOG.md b/CHANGELOG.md index ba93f21..b5df573 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/build/PKGBUILD b/build/PKGBUILD deleted file mode 100644 index b5e272a..0000000 --- a/build/PKGBUILD +++ /dev/null @@ -1,29 +0,0 @@ -# Maintainer: Fabio 'Lolix' Loli -> https://github.com/FabioLolix -# Co-maintainer/contributor: Sean E. Russell - -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 -} diff --git a/cmd/gotop/main.go b/cmd/gotop/main.go index 4543b12..0a7bb03 100644 --- a/cmd/gotop/main.go +++ b/cmd/gotop/main.go @@ -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" diff --git a/go.mod b/go.mod index 1e4a5bb..38e1380 100644 --- a/go.mod +++ b/go.mod @@ -15,4 +15,4 @@ require ( howett.net/plist v0.0.0-20181124034731-591f970eefbb // indirect ) -go 1.13 +go 1.14