From owner-svn-ports-all@FreeBSD.ORG Tue Jul 8 10:08:45 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32498801; Tue, 8 Jul 2014 10:08:45 +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 05BC82128; Tue, 8 Jul 2014 10:08:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s68A8i4J073438; Tue, 8 Jul 2014 10:08:44 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s68A8iK4073433; Tue, 8 Jul 2014 10:08:44 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201407081008.s68A8iK4073433@svn.freebsd.org> From: Kubilay Kocak Date: Tue, 8 Jul 2014 10:08:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361212 - in head/sysutils: . py-ploy_ec2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2014 10:08:45 -0000 Author: koobs Date: Tue Jul 8 10:08:43 2014 New Revision: 361212 URL: http://svnweb.freebsd.org/changeset/ports/361212 QAT: https://qat.redports.org/buildarchive/r361212/ Log: [NEW] sysutils/py-ploy_ec2: Ploy plugin to provision Amazon EC2 instances A plugin for ploy providing integration with Amazon EC2. WWW: https://github.com/ployground/ploy_ec2 Added: head/sysutils/py-ploy_ec2/ head/sysutils/py-ploy_ec2/Makefile (contents, props changed) head/sysutils/py-ploy_ec2/distinfo (contents, props changed) head/sysutils/py-ploy_ec2/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Jul 8 10:08:22 2014 (r361211) +++ head/sysutils/Makefile Tue Jul 8 10:08:43 2014 (r361212) @@ -735,6 +735,7 @@ SUBDIR += py-nagiosplugin SUBDIR += py-ploy SUBDIR += py-ploy_ansible + SUBDIR += py-ploy_ec2 SUBDIR += py-ploy_ezjail SUBDIR += py-ploy_fabric SUBDIR += py-plumbum Added: head/sysutils/py-ploy_ec2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-ploy_ec2/Makefile Tue Jul 8 10:08:43 2014 (r361212) @@ -0,0 +1,25 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= ploy_ec2 +DISTVERSION= 1.0b3 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Ploy plugin to provision Amazon EC2 instances + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ploy>=1.0.r9:${PORTSDIR}/sysutils/py-ploy \ + ${PYTHON_PKGNAMEPREFIX}boto>=2.0:${PORTSDIR}/devel/py-boto \ + ${PYTHON_PKGNAMEPREFIX}lazy>0:${PORTSDIR}/devel/py-lazy + +USES= zip +USE_PYTHON= -2.7 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/sysutils/py-ploy_ec2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-ploy_ec2/distinfo Tue Jul 8 10:08:43 2014 (r361212) @@ -0,0 +1,2 @@ +SHA256 (ploy_ec2-1.0b3.zip) = e827eaa9cc60cb14151d0534be645a27f3f204eb7828cbb1979c0eafd8de0aec +SIZE (ploy_ec2-1.0b3.zip) = 13602 Added: head/sysutils/py-ploy_ec2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-ploy_ec2/pkg-descr Tue Jul 8 10:08:43 2014 (r361212) @@ -0,0 +1,3 @@ +A plugin for ploy providing integration with Amazon EC2. + +WWW: https://github.com/ployground/ploy_ec2