Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Aug 2020 14:35:32 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r544496 - in head/sysutils: . bpytop
Message-ID:  <202008081435.078EZW1Z070693@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Sat Aug  8 14:35:32 2020
New Revision: 544496
URL: https://svnweb.freebsd.org/changeset/ports/544496

Log:
  Add sysutils/bpytop, Linux/OSX/FreeBSD resource monitor

Added:
  head/sysutils/bpytop/
  head/sysutils/bpytop/Makefile   (contents, props changed)
  head/sysutils/bpytop/distinfo   (contents, props changed)
  head/sysutils/bpytop/pkg-descr   (contents, props changed)
  head/sysutils/bpytop/pkg-plist   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sat Aug  8 14:33:49 2020	(r544495)
+++ head/sysutils/Makefile	Sat Aug  8 14:35:32 2020	(r544496)
@@ -113,6 +113,7 @@
     SUBDIR += bksh
     SUBDIR += boot-extract
     SUBDIR += boxbackup-devel
+    SUBDIR += bpytop
     SUBDIR += brasero
     SUBDIR += bsd-splash-changer
     SUBDIR += bsdconfig

Added: head/sysutils/bpytop/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/bpytop/Makefile	Sat Aug  8 14:35:32 2020	(r544496)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	bpytop
+PORTVERSION=	1.0.7
+DISTVERSIONPREFIX=	v
+CATEGORIES=	sysutils
+
+MAINTAINER=	lwhsu@FreeBSD.org
+COMMENT=	Linux/OSX/FreeBSD resource monitor
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR}
+
+USES=	python:3.5+,run shebangfix
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	aristocratos
+
+SHEBANG_FILES=	${WRKSRC}/bpytop.py
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/bpytop.py ${STAGEDIR}${PREFIX}/bin/bpytop
+	${MKDIR} ${STAGEDIR}${DATADIR}
+	(cd ${WRKSRC} && ${COPYTREE_SHARE} themes ${STAGEDIR}${DATADIR})
+
+.include <bsd.port.mk>

Added: head/sysutils/bpytop/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/bpytop/distinfo	Sat Aug  8 14:35:32 2020	(r544496)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1596864332
+SHA256 (aristocratos-bpytop-v1.0.7_GH0.tar.gz) = f3a820b95c946dc9d21475ffece1e79c92d31f5b122cea024c3db92b31dd71a9
+SIZE (aristocratos-bpytop-v1.0.7_GH0.tar.gz) = 594729

Added: head/sysutils/bpytop/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/bpytop/pkg-descr	Sat Aug  8 14:35:32 2020	(r544496)
@@ -0,0 +1,6 @@
+Resource monitor that shows usage and stats for processor, memory, disks,
+network and processes.
+
+Python port of bashtop. (https://github.com/aristocratos/bashtop)
+
+WWW: https://github.com/aristocratos/bpytop

Added: head/sysutils/bpytop/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/bpytop/pkg-plist	Sat Aug  8 14:35:32 2020	(r544496)
@@ -0,0 +1,11 @@
+bin/bpytop
+%%DATADIR%%/themes/default_black.theme
+%%DATADIR%%/themes/flat-remix-light.theme
+%%DATADIR%%/themes/flat-remix.theme
+%%DATADIR%%/themes/greyscale.theme
+%%DATADIR%%/themes/gruvbox_dark.theme
+%%DATADIR%%/themes/index.txt
+%%DATADIR%%/themes/monokai.theme
+%%DATADIR%%/themes/nord.theme
+%%DATADIR%%/themes/solarized_dark.theme
+%%DATADIR%%/themes/whiteout.theme



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008081435.078EZW1Z070693>