From owner-svn-ports-all@FreeBSD.ORG Mon Jun 1 16:15:35 2015 Return-Path: Delivered-To: svn-ports-all@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 69610207; Mon, 1 Jun 2015 16:15:35 +0000 (UTC) (envelope-from allanjude@FreeBSD.org) 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 3EB701F14; Mon, 1 Jun 2015 16:15:35 +0000 (UTC) (envelope-from allanjude@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t51GFZX4064488; Mon, 1 Jun 2015 16:15:35 GMT (envelope-from allanjude@FreeBSD.org) Received: (from allanjude@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t51GFY4U064484; Mon, 1 Jun 2015 16:15:34 GMT (envelope-from allanjude@FreeBSD.org) Message-Id: <201506011615.t51GFY4U064484@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: allanjude set sender to allanjude@FreeBSD.org using -f From: Allan Jude Date: Mon, 1 Jun 2015 16:15:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388238 - in head/databases: . py-pypuppetdb 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.20 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: Mon, 01 Jun 2015 16:15:35 -0000 Author: allanjude (doc committer) Date: Mon Jun 1 16:15:33 2015 New Revision: 388238 URL: https://svnweb.freebsd.org/changeset/ports/388238 Log: Create the pypuppetdb port, a python library for interacting with the PuppetDB REST API A required dependancy of puppetboard Differential Revision: https://reviews.freebsd.org/D2671 Approved by: xmj Sponsored by: ScaleEngine Inc. Added: head/databases/py-pypuppetdb/ head/databases/py-pypuppetdb/Makefile (contents, props changed) head/databases/py-pypuppetdb/distinfo (contents, props changed) head/databases/py-pypuppetdb/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon Jun 1 15:53:55 2015 (r388237) +++ head/databases/Makefile Mon Jun 1 16:15:33 2015 (r388238) @@ -747,6 +747,7 @@ SUBDIR += py-pyhs SUBDIR += py-pylibmc SUBDIR += py-pymysql + SUBDIR += py-pypuppetdb SUBDIR += py-pytc SUBDIR += py-python-rrdtool SUBDIR += py-qt4-sql Added: head/databases/py-pypuppetdb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pypuppetdb/Makefile Mon Jun 1 16:15:33 2015 (r388238) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pypuppetdb +PORTVERSION= 0.1.1 +DISTVERSIONPREFIX= v +CATEGORIES= databases python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= allanjude@FreeBSD.org +COMMENT= Library to work with PuppetDB's REST API + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= puppet-community + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/databases/py-pypuppetdb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pypuppetdb/distinfo Mon Jun 1 16:15:33 2015 (r388238) @@ -0,0 +1,2 @@ +SHA256 (puppet-community-pypuppetdb-v0.1.1_GH0.tar.gz) = e1d34b8a5ceef363c36aa1cfcb2c1243e3288ca66345157d606904f26b37b2d3 +SIZE (puppet-community-pypuppetdb-v0.1.1_GH0.tar.gz) = 28597 Added: head/databases/py-pypuppetdb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pypuppetdb/pkg-descr Mon Jun 1 16:15:33 2015 (r388238) @@ -0,0 +1,4 @@ +This library is a thin wrapper around the PuppetDB REST API providing some +convinience functions and objects to request and hold data from PuppetDB. + +WWW: https://github.com/puppet-community/pypuppetdb