From owner-svn-ports-head@FreeBSD.ORG Fri Dec 19 17:37:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32A0DDA2; Fri, 19 Dec 2014 17:37:39 +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 04C2824BC; Fri, 19 Dec 2014 17:37:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBJHbcdR061865; Fri, 19 Dec 2014 17:37:38 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBJHbcVL061858; Fri, 19 Dec 2014 17:37:38 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201412191737.sBJHbcVL061858@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 19 Dec 2014 17:37:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374958 - in head/sysutils: . rubygem-chef-api 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: Fri, 19 Dec 2014 17:37:39 -0000 Author: pawel Date: Fri Dec 19 17:37:36 2014 New Revision: 374958 URL: https://svnweb.freebsd.org/changeset/ports/374958 QAT: https://qat.redports.org/buildarchive/r374958/ Log: ChefAPI is a tiny, dependency-minimal Ruby client for interacting with a Chef Server. It adopts many patterns and principles from Ruby On Rails. WWW: https://github.com/sethvargo/chef-api PR: 195707 Submitted by: Michael Moll Added: head/sysutils/rubygem-chef-api/ head/sysutils/rubygem-chef-api/Makefile (contents, props changed) head/sysutils/rubygem-chef-api/distinfo (contents, props changed) head/sysutils/rubygem-chef-api/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Dec 19 17:34:18 2014 (r374957) +++ head/sysutils/Makefile Fri Dec 19 17:37:36 2014 (r374958) @@ -803,6 +803,7 @@ SUBDIR += rubygem-capistrano SUBDIR += rubygem-capistrano-ext SUBDIR += rubygem-chef + SUBDIR += rubygem-chef-api SUBDIR += rubygem-chef-zero SUBDIR += rubygem-facter SUBDIR += rubygem-fluent-mixin-plaintextformatter Added: head/sysutils/rubygem-chef-api/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-chef-api/Makefile Fri Dec 19 17:37:36 2014 (r374958) @@ -0,0 +1,20 @@ +# Created by: Michael Moll +# $FreeBSD$ + +PORTNAME= chef-api +PORTVERSION= 0.5.0 +CATEGORIES= sysutils ruby +MASTER_SITES= RG + +MAINTAINER= kvedulv@kvedulv.de +COMMENT= Leightweight Chef API client + +LICENSE= APACHE20 + +RUN_DEPENDS= rubygem-logify>=0.1:${PORTSDIR}/sysutils/rubygem-logify + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/sysutils/rubygem-chef-api/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-chef-api/distinfo Fri Dec 19 17:37:36 2014 (r374958) @@ -0,0 +1,2 @@ +SHA256 (rubygem/chef-api-0.5.0.gem) = fb47fb487308de9b6cc615a4c1c3fa6523d5e953ecf75f479cd4848b712e2073 +SIZE (rubygem/chef-api-0.5.0.gem) = 51712 Added: head/sysutils/rubygem-chef-api/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-chef-api/pkg-descr Fri Dec 19 17:37:36 2014 (r374958) @@ -0,0 +1,4 @@ +ChefAPI is a tiny, dependency-minimal Ruby client for interacting with a +Chef Server. It adopts many patterns and principles from Ruby On Rails. + +WWW: https://github.com/sethvargo/chef-api