Date: Mon, 12 Mar 2018 20:42:09 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464293 - in head/devel: . rubygem-tty-command Message-ID: <201803122042.w2CKg9kB009206@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Mon Mar 12 20:42:08 2018 New Revision: 464293 URL: https://svnweb.freebsd.org/changeset/ports/464293 Log: Add rubygem-tty-command 0.7.0 TTY::Command provides independent command execution component for TTY toolkit. It runs external commands with pretty output logging and capture stdout, stderr and exit status. Redirect stdin, stdout and stderr of each command to a file or a string. WWW: https://piotrmurach.github.io/tty/ WWW: https://github.com/piotrmurach/tty-command Added: head/devel/rubygem-tty-command/ head/devel/rubygem-tty-command/Makefile (contents, props changed) head/devel/rubygem-tty-command/distinfo (contents, props changed) head/devel/rubygem-tty-command/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 12 20:41:47 2018 (r464292) +++ head/devel/Makefile Mon Mar 12 20:42:08 2018 (r464293) @@ -5848,6 +5848,7 @@ SUBDIR += rubygem-trollop SUBDIR += rubygem-trollop1 SUBDIR += rubygem-tty-color + SUBDIR += rubygem-tty-command SUBDIR += rubygem-tty-cursor SUBDIR += rubygem-tty-font SUBDIR += rubygem-tty-platform Added: head/devel/rubygem-tty-command/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-tty-command/Makefile Mon Mar 12 20:42:08 2018 (r464293) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= tty-command +PORTVERSION= 0.7.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Execute shell commands with pretty logging + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-pastel>=0.7.0:devel/rubygem-pastel + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include <bsd.port.mk> Added: head/devel/rubygem-tty-command/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-tty-command/distinfo Mon Mar 12 20:42:08 2018 (r464293) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520736009 +SHA256 (rubygem/tty-command-0.7.0.gem) = 43a13346ee53727f8e39c67a7642781813c585e4a56d26ae1a47d549878b7cea +SIZE (rubygem/tty-command-0.7.0.gem) = 24576 Added: head/devel/rubygem-tty-command/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-tty-command/pkg-descr Mon Mar 12 20:42:08 2018 (r464293) @@ -0,0 +1,7 @@ +TTY::Command provides independent command execution component for TTY toolkit. +It runs external commands with pretty output logging and capture stdout, stderr +and exit status. Redirect stdin, stdout and stderr of each command to a file or +a string. + +WWW: https://piotrmurach.github.io/tty/ +WWW: https://github.com/piotrmurach/tty-command
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803122042.w2CKg9kB009206>