From owner-svn-ports-head@freebsd.org Fri Dec 14 03:49:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2F2C130D8FD; Fri, 14 Dec 2018 03:49:38 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DB2288DB3; Fri, 14 Dec 2018 03:49:38 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3178C29ABC; Fri, 14 Dec 2018 03:49:38 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBE3nceK042776; Fri, 14 Dec 2018 03:49:38 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBE3nb52042772; Fri, 14 Dec 2018 03:49:37 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201812140349.wBE3nb52042772@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 14 Dec 2018 03:49:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487404 - in head/sysutils: . gotop X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/sysutils: . gotop X-SVN-Commit-Revision: 487404 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4DB2288DB3 X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-1.44 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.82)[-0.825,0]; NEURAL_HAM_SHORT(-0.62)[-0.619,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Dec 2018 03:49:38 -0000 Author: yuri Date: Fri Dec 14 03:49:37 2018 New Revision: 487404 URL: https://svnweb.freebsd.org/changeset/ports/487404 Log: New port: sysutils/gotop: Terminal based graphical activity monitor inspired by gtop and vtop Added: head/sysutils/gotop/ head/sysutils/gotop/Makefile (contents, props changed) head/sysutils/gotop/distinfo (contents, props changed) head/sysutils/gotop/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Dec 14 02:59:37 2018 (r487403) +++ head/sysutils/Makefile Fri Dec 14 03:49:37 2018 (r487404) @@ -448,6 +448,7 @@ SUBDIR += gomplate SUBDIR += google-compute-engine-oslogin SUBDIR += goss + SUBDIR += gotop SUBDIR += gpart SUBDIR += gpte SUBDIR += graffer Added: head/sysutils/gotop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/gotop/Makefile Fri Dec 14 03:49:37 2018 (r487404) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= gotop +DISTVERSION= 1.7.0-4 +DISTVERSIONSUFFIX= -gf608f63 +CATEGORIES= sysutils + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Terminal based graphical activity monitor inspired by gtop and vtop + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}/LICENSE + +BUILD_DEPENDS= go:lang/go + +USE_GITHUB= nodefault # the main code is in GH_TUPLE +GH_ACCOUNT= cjbassi +GH_TUPLE= cjbassi:gotop:${DISTVERSIONFULL}:main/src/github.com/cjbassi/gotop \ + cjbassi:termui:e8dd23f:termui/src/github.com/cjbassi/termui \ + docopt:docopt.go:ee0de3b:docopt/src/github.com/docopt/docopt-go \ + shirou:gopsutil:v2.18.11:gopsutil/src/github.com/shirou/gopsutil \ + golang:sys:37707fd:sys/src/golang.org/x/sys +GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +do-build: + @cd ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME} && \ + ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go install ./... + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include Added: head/sysutils/gotop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/gotop/distinfo Fri Dec 14 03:49:37 2018 (r487404) @@ -0,0 +1,11 @@ +TIMESTAMP = 1544758216 +SHA256 (cjbassi-gotop-1.7.0-4-gf608f63_GH0.tar.gz) = 86742e4a89ce82c701e226ad8b0f16a7635abf340d9b270c364f74fcce8f7168 +SIZE (cjbassi-gotop-1.7.0-4-gf608f63_GH0.tar.gz) = 387339 +SHA256 (cjbassi-termui-e8dd23f_GH0.tar.gz) = 1a26a894587fd9f533d25ff60128c3234ee6a64eb643d21c7983314984ab38e6 +SIZE (cjbassi-termui-e8dd23f_GH0.tar.gz) = 78782 +SHA256 (docopt-docopt.go-ee0de3b_GH0.tar.gz) = 6eb951df9aa0503060e3912fd10f5f592b4453a5f1d5130995db02aa4697374d +SIZE (docopt-docopt.go-ee0de3b_GH0.tar.gz) = 30659 +SHA256 (shirou-gopsutil-v2.18.11_GH0.tar.gz) = 328d044bd4a8898073760c484a0254f5dc1c4b08b5fca4abc63ffbfb383d13c9 +SIZE (shirou-gopsutil-v2.18.11_GH0.tar.gz) = 116115 +SHA256 (golang-sys-37707fd_GH0.tar.gz) = 9a86c90f564594b3f201540d19fb4fb828e1df8af61bb2fa9190a760cba039a7 +SIZE (golang-sys-37707fd_GH0.tar.gz) = 795284 Added: head/sysutils/gotop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/gotop/pkg-descr Fri Dec 14 03:49:37 2018 (r487404) @@ -0,0 +1,5 @@ +gotop is a terminal-based graphical activity monitor inspired by gtop and vtop. + +It shows CPU/Disk/Memory/Network usage and process lists. + +WWW: https://github.com/cjbassi/gotop