svn commit: r489358 - in head/sysutils: . p5-Proc-ProcessTable-Colorizer

Steve Wills swills at FreeBSD.org
Sat Jan 5 17:49:17 UTC 2019


Author: swills
Date: Sat Jan  5 17:49:15 2019
New Revision: 489358
URL: https://svnweb.freebsd.org/changeset/ports/489358

Log:
  sysutils/p5-Proc-ProcessTable-Colorizer: create port
  
  This colorizes the output from Proc::ProcessTable.
  
  This is largely meant to be used from the command line instead of
  as a module via the included bin script.
  
  Among other fun things, it allows searching of the process table.
  
  Searching is currently possible against the following criteria.
  
   zombie
   swapped out
   regex command line matching
   CPU seconds used by a process
   percent of memory usage
   percent of CPU usage
   wait channel in use
  
  bin/cps - A colorized version of ps with various extra useful options
  
  WWW: http://search.cpan.org/dist/Proc-ProcessTable-Colorizer/
  
  PR:		224399
  Submitted by:	Zane C. Bowers-Hadley <vvelox at vvelox.net>

Added:
  head/sysutils/p5-Proc-ProcessTable-Colorizer/
  head/sysutils/p5-Proc-ProcessTable-Colorizer/Makefile   (contents, props changed)
  head/sysutils/p5-Proc-ProcessTable-Colorizer/distinfo   (contents, props changed)
  head/sysutils/p5-Proc-ProcessTable-Colorizer/pkg-descr   (contents, props changed)
  head/sysutils/p5-Proc-ProcessTable-Colorizer/pkg-plist   (contents, props changed)
Modified:
  head/sysutils/Makefile   (contents, props changed)

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sat Jan  5 17:48:36 2019	(r489357)
+++ head/sysutils/Makefile	Sat Jan  5 17:49:15 2019	(r489358)
@@ -803,6 +803,7 @@
     SUBDIR += p5-Plugtools-Plugins-HomeOU
     SUBDIR += p5-Probe-Perl
     SUBDIR += p5-Proc-PidUtil
+    SUBDIR += p5-Proc-ProcessTable-Colorizer
     SUBDIR += p5-Proclet
     SUBDIR += p5-Quota
     SUBDIR += p5-Rex

Added: head/sysutils/p5-Proc-ProcessTable-Colorizer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/p5-Proc-ProcessTable-Colorizer/Makefile	Sat Jan  5 17:49:15 2019	(r489358)
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME=	Proc-ProcessTable-Colorizer
+PORTVERSION=	0.2.0
+CATEGORIES=	sysutils perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	vvelox at vvelox.net
+COMMENT=	Colorized and enhanced version of ps
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	${RUN_DEPENDS}
+RUN_DEPENDS=	p5-Error-Helper>=1.0.0:devel/p5-Error-Helper \
+		p5-Proc-ProcessTable>=0.53:devel/p5-Proc-ProcessTable \
+		p5-Term-ANSIColor>=4.06:devel/p5-Term-ANSIColor \
+		p5-Term-Size>=0:devel/p5-Term-Size \
+		p5-Text-Table>=1.133:textproc/p5-Text-Table \
+		p5-BSD-Process>=0.07:sysutils/p5-BSD-Process
+TEST_DEPENDS=	p5-Test-Pod>=1.22:devel/p5-Test-Pod \
+		p5-Test-Pod-Coverage>=1.08:devel/p5-Test-Pod-Coverage
+
+USES=		perl5
+
+NO_ARCH=	yes
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/sysutils/p5-Proc-ProcessTable-Colorizer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/p5-Proc-ProcessTable-Colorizer/distinfo	Sat Jan  5 17:49:15 2019	(r489358)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1513497563
+SHA256 (Proc-ProcessTable-Colorizer-0.2.0.tar.gz) = d8a027e5fd0c9270d63f05391bbf685aae1ec2c0c5109c35ef2f06d00e782d4c
+SIZE (Proc-ProcessTable-Colorizer-0.2.0.tar.gz) = 12426

Added: head/sysutils/p5-Proc-ProcessTable-Colorizer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/p5-Proc-ProcessTable-Colorizer/pkg-descr	Sat Jan  5 17:49:15 2019	(r489358)
@@ -0,0 +1,20 @@
+This colorizes the output from Proc::ProcessTable.
+
+This is largely meant to be used from the command line instead of
+as a module via the included bin script.
+
+Among other fun things, it allows searching of the process table.
+
+Searching is currently possible against the following criteria.
+
+ zombie
+ swapped out
+ regex command line matching
+ CPU seconds used by a process
+ percent of memory usage
+ percent of CPU usage
+ wait channel in use
+
+bin/cps - A colorized version of ps with various extra useful options
+
+WWW: http://search.cpan.org/dist/Proc-ProcessTable-Colorizer/

Added: head/sysutils/p5-Proc-ProcessTable-Colorizer/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/p5-Proc-ProcessTable-Colorizer/pkg-plist	Sat Jan  5 17:49:15 2019	(r489358)
@@ -0,0 +1,3 @@
+bin/cps
+%%SITE_PERL%%/Proc/ProcessTable/Colorizer.pm
+%%PERL5_MAN3%%/Proc::ProcessTable::Colorizer.3.gz


More information about the svn-ports-all mailing list