summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean E. Russell <ser@ser1.net>2020-02-28 15:31:34 -0600
committerSean E. Russell <ser@ser1.net>2020-02-28 15:35:42 -0600
commit640f4a21d7d83ba0b20511522614e62ef29e0dbd (patch)
treefff30a0adc3a79d880df0422ad7fd2e4234024b9
parent18be89370d558b627f3677c42a173f63c76ece01 (diff)
Update go version to match (necessary) plugin versionsv3.4.3
Another version bump for plugins
-rw-r--r--CHANGELOG.md2
-rw-r--r--build/PKGBUILD29
-rw-r--r--cmd/gotop/main.go2
-rw-r--r--go.mod2
4 files changed, 3 insertions, 32 deletions
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 <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
-}
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