From owner-svn-ports-head@FreeBSD.ORG Wed Jan 7 17:55:50 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA2F3FAF; Wed, 7 Jan 2015 17:55:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB1121DA2; Wed, 7 Jan 2015 17:55:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t07HtnIP016685; Wed, 7 Jan 2015 17:55:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t07HtmMG016674; Wed, 7 Jan 2015 17:55:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201501071755.t07HtmMG016674@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 7 Jan 2015 17:55:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376477 - in head/sysutils: . rubygem-shellany X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Wed, 07 Jan 2015 17:55:50 -0000 Author: sunpoet Date: Wed Jan 7 17:55:47 2015 New Revision: 376477 URL: https://svnweb.freebsd.org/changeset/ports/376477 QAT: https://qat.redports.org/buildarchive/r376477/ Log: - Add rubygem-shellany 0.0.1 Shellany captures command output. Features: - Portability (should work on recent JRuby versions). - Capturing stdout, stderr in a convenient way. - Returning the result in a convenient way. - Detecting if a shell is needed (though incomplete/primitive implementation). - Prevents running the same command multiple times. WWW: https://github.com/guard/shellany RG: https://rubygems.org/gems/shellany Added: head/sysutils/rubygem-shellany/ head/sysutils/rubygem-shellany/Makefile (contents, props changed) head/sysutils/rubygem-shellany/distinfo (contents, props changed) head/sysutils/rubygem-shellany/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Jan 7 17:55:42 2015 (r376476) +++ head/sysutils/Makefile Wed Jan 7 17:55:47 2015 (r376477) @@ -832,6 +832,7 @@ SUBDIR += rubygem-ohai SUBDIR += rubygem-parallel SUBDIR += rubygem-rubyipmi + SUBDIR += rubygem-shellany SUBDIR += rubygem-smart_proxy_salt SUBDIR += rubygem-sys-admin SUBDIR += rubygem-sys-cpu Added: head/sysutils/rubygem-shellany/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-shellany/Makefile Wed Jan 7 17:55:47 2015 (r376477) @@ -0,0 +1,18 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= shellany +PORTVERSION= 0.0.1 +CATEGORIES= sysutils rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= MRI+JRuby compatible command output capturing + +LICENSE= MIT + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/sysutils/rubygem-shellany/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-shellany/distinfo Wed Jan 7 17:55:47 2015 (r376477) @@ -0,0 +1,2 @@ +SHA256 (rubygem/shellany-0.0.1.gem) = 0e127a9132698766d7e752e82cdac8250b6adbd09e6c0a7fbbb6f61964fedee7 +SIZE (rubygem/shellany-0.0.1.gem) = 9216 Added: head/sysutils/rubygem-shellany/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-shellany/pkg-descr Wed Jan 7 17:55:47 2015 (r376477) @@ -0,0 +1,11 @@ +Shellany captures command output. + +Features: +- Portability (should work on recent JRuby versions). +- Capturing stdout, stderr in a convenient way. +- Returning the result in a convenient way. +- Detecting if a shell is needed (though incomplete/primitive implementation). +- Prevents running the same command multiple times. + +WWW: https://github.com/guard/shellany +RG: https://rubygems.org/gems/shellany