diff options
author | TBK <tbk@jjtc.eu> | 2020-03-07 13:39:58 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-07 13:05:33 -0300 |
commit | 8b3b70ebac589e7a46d4b7fb6df9e1627f821a65 (patch) | |
tree | 30d7e3b4047ff792e3ad6bd7a1559a4d1c8cb84c /community/gotop | |
parent | b1c95a10e233551a915e2937d92f950b375976ba (diff) | |
download | aports-8b3b70ebac589e7a46d4b7fb6df9e1627f821a65.tar.bz2 aports-8b3b70ebac589e7a46d4b7fb6df9e1627f821a65.tar.xz |
community/gotop: upgrade to 3.5.0
Original author has handed off the project https://github.com/cjbassi/gotop/commit/61ed1ad0c36e85f3a6348a98e942d59fc1de5e2c
Diffstat (limited to 'community/gotop')
-rw-r--r-- | community/gotop/APKBUILD | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/community/gotop/APKBUILD b/community/gotop/APKBUILD index 9fbe038da2..274fbbfb39 100644 --- a/community/gotop/APKBUILD +++ b/community/gotop/APKBUILD @@ -1,19 +1,20 @@ # Maintainer: Leo <thinkabit.ukim@gmail.com> pkgname=gotop -pkgver=3.0.0 -pkgrel=1 +pkgver=3.5.0 +pkgrel=0 pkgdesc="Terminal based graphical activity monitor" -url="https://github.com/cjbassi/gotop" +url="https://github.com/xxxserxxx/gotop" arch="all" license="AGPL-3.0-or-later" -depends="procps" # Remove once #138 on cjbassi/gotop is fixed +options="!check" # No test suite +depends="procps" # Remove once #20 on xxxserxxx/gotop is fixed makedepends="git go" -source="$pkgname-$pkgver.tar.gz::https://github.com/cjbassi/gotop/archive/$pkgver.tar.gz" -builddir="$srcdir/src/github.com/cjbassi/gotop" +source="$pkgname-$pkgver.tar.gz::https://github.com/xxxserxxx/gotop/archive/v$pkgver.tar.gz" +builddir="$srcdir/src/github.com/xxxserxxx/gotop" prepare() { default_prepare - mkdir -p "$srcdir"/src/github.com/cjbassi + mkdir -p "$srcdir"/src/github.com/xxxserxxx mv "$srcdir"/$pkgname-$pkgver "$builddir"/ } @@ -21,11 +22,6 @@ build() { GOPATH="$srcdir" go build -v -o bin/$pkgname . } -check() { - # No testsuite is provided - ./bin/$pkgname --help -} - package() { install -Dm755 bin/$pkgname "$pkgdir"/usr/bin/$pkgname } @@ -35,4 +31,4 @@ cleanup_srcdir() { default_cleanup_srcdir } -sha512sums="012cc627fa7013409f3775d5bf2528e25e275fc285fea7ae93a1afec33474c923cc6cd9accb24fce479ab229c98d6438cc9f5eb7dea37f72c1905516d5fdbf6e gotop-3.0.0.tar.gz" +sha512sums="e21a4e5ae73ce7084f9d1afce1e3cf092bfd0d4791c6a2a0dd910ad6dc433bf58bf4df729082ae011d7903a8fcfe7c7984864158d92e5969b6f662f5c5f44ae1 gotop-3.5.0.tar.gz" |