From owner-svn-ports-head@FreeBSD.ORG Fri Aug 24 21:46:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D105E1065673; Fri, 24 Aug 2012 21:46:09 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A23CD8FC17; Fri, 24 Aug 2012 21:46:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7OLk9cP010434; Fri, 24 Aug 2012 21:46:09 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7OLk9LL010428; Fri, 24 Aug 2012 21:46:09 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201208242146.q7OLk9LL010428@svn.freebsd.org> From: Jason Helfman Date: Fri, 24 Aug 2012 21:46:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303102 - in head/devel: . rubygem-mixlib-shellout X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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, 24 Aug 2012 21:46:09 -0000 Author: jgh Date: Fri Aug 24 21:46:08 2012 New Revision: 303102 URL: http://svn.freebsd.org/changeset/ports/303102 Log: add new port: devel/rubygem-mixlib-shellout Mixlib::shellout provides a simplified interface to shelling out yet still collecting both standard out and standard error and providing full control over environment, working directory, uid, gid, etc. WWW: http://www.opscode.com PR: 170998 Submitted by: ndewing@experts-exchange.com Sponsored by: Experts-Exchange, LLC. Added: head/devel/rubygem-mixlib-shellout/ head/devel/rubygem-mixlib-shellout/Makefile (contents, props changed) head/devel/rubygem-mixlib-shellout/distinfo (contents, props changed) head/devel/rubygem-mixlib-shellout/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Aug 24 21:15:59 2012 (r303101) +++ head/devel/Makefile Fri Aug 24 21:46:08 2012 (r303102) @@ -3824,6 +3824,7 @@ SUBDIR += rubygem-mixlib-cli SUBDIR += rubygem-mixlib-config SUBDIR += rubygem-mixlib-log + SUBDIR += rubygem-mixlib-shellout SUBDIR += rubygem-mkrf SUBDIR += rubygem-mocha SUBDIR += rubygem-moneta Added: head/devel/rubygem-mixlib-shellout/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-mixlib-shellout/Makefile Fri Aug 24 21:46:08 2012 (r303102) @@ -0,0 +1,20 @@ +# Ports collection makefile for: rubygem-mixlib-shellout +# Date created: 23 Aug 2012 +# Whom: ndewing@experts-exchange.com +# +# $FreeBSD$ +# + +PORTNAME= mixlib-shellout +PORTVERSION= 1.1.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ndewing@experts-exchange.com +COMMENT= Shell interface that also collects stdout and stderr + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-mixlib-shellout/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-mixlib-shellout/distinfo Fri Aug 24 21:46:08 2012 (r303102) @@ -0,0 +1,2 @@ +SHA256 (rubygem/mixlib-shellout-1.1.0.gem) = 187ee2ee184b7eb0cc3795cb6d7f3a3307697378c86cf779e08b6190319ff462 +SIZE (rubygem/mixlib-shellout-1.1.0.gem) = 19456 Added: head/devel/rubygem-mixlib-shellout/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-mixlib-shellout/pkg-descr Fri Aug 24 21:46:08 2012 (r303102) @@ -0,0 +1,6 @@ +Mixlib::shellout provides a simplified interface to shelling out +yet still collecting both standard out and standard error +and providing full control over environment, working directory, +uid, gid, etc. + +WWW: http://www.opscode.com