From owner-svn-ports-head@FreeBSD.ORG Mon Jul 7 13:52:32 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BF0E15C; Mon, 7 Jul 2014 13:52:32 +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 38C6D27CA; Mon, 7 Jul 2014 13:52:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s67DqWC1095433; Mon, 7 Jul 2014 13:52:32 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s67DqV6w095428; Mon, 7 Jul 2014 13:52:31 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201407071352.s67DqV6w095428@svn.freebsd.org> From: Kubilay Kocak Date: Mon, 7 Jul 2014 13:52:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361086 - in head/sysutils: . py-ploy 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 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: Mon, 07 Jul 2014 13:52:32 -0000 Author: koobs Date: Mon Jul 7 13:52:30 2014 New Revision: 361086 URL: http://svnweb.freebsd.org/changeset/ports/361086 QAT: https://qat.redports.org/buildarchive/r361086/ Log: [NEW] sysutils/py-ploy: Manage servers through a central configuration Ploy is a commandline-tool to provision, manage and control server instances. What kind of server instances these are depends on the used plugins. There are plugins for EC2 (ploy_ec2), FreeBSD Jails (ploy_ezjail) and more. You can create, delete, monitor and ssh into instances while ploy handles the details like ssh fingerprint checking. Additional plugins provide advanced functionality like integrating Fabric (ploy_fabric) and Ansible (ploy_ansible). WWW: http://ploy.readthedocs.org Added: head/sysutils/py-ploy/ head/sysutils/py-ploy/Makefile (contents, props changed) head/sysutils/py-ploy/distinfo (contents, props changed) head/sysutils/py-ploy/pkg-descr (contents, props changed) head/sysutils/py-ploy/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jul 7 13:33:18 2014 (r361085) +++ head/sysutils/Makefile Mon Jul 7 13:52:30 2014 (r361086) @@ -733,6 +733,7 @@ SUBDIR += py-halite SUBDIR += py-iowait SUBDIR += py-nagiosplugin + SUBDIR += py-ploy SUBDIR += py-plumbum SUBDIR += py-psutil SUBDIR += py-psutil121 Added: head/sysutils/py-ploy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-ploy/Makefile Mon Jul 7 13:52:30 2014 (r361086) @@ -0,0 +1,23 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= ploy +DISTVERSION= 1.0rc11 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Manage servers through a central configuration + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lazy>0:${PORTSDIR}/devel/py-lazy \ + ${PYTHON_PKGNAMEPREFIX}paramiko>0:${PORTSDIR}/security/py-paramiko + +USES= zip +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/sysutils/py-ploy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-ploy/distinfo Mon Jul 7 13:52:30 2014 (r361086) @@ -0,0 +1,2 @@ +SHA256 (ploy-1.0rc11.zip) = e33f050a59c6ecce65cb16982d905901c89e29d23ac440781a2554b93c94260d +SIZE (ploy-1.0rc11.zip) = 51232 Added: head/sysutils/py-ploy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-ploy/pkg-descr Mon Jul 7 13:52:30 2014 (r361086) @@ -0,0 +1,9 @@ +Ploy is a commandline-tool to provision, manage and control server instances. +What kind of server instances these are depends on the used plugins. There +are plugins for EC2 (ploy_ec2), FreeBSD Jails (ploy_ezjail) and more. + +You can create, delete, monitor and ssh into instances while ploy handles the +details like ssh fingerprint checking. Additional plugins provide advanced +functionality like integrating Fabric (ploy_fabric) and Ansible (ploy_ansible). + +WWW: http://ploy.readthedocs.org Added: head/sysutils/py-ploy/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-ploy/pkg-plist Mon Jul 7 13:52:30 2014 (r361086) @@ -0,0 +1 @@ +@comment $FreeBSD$