From owner-svn-ports-head@FreeBSD.ORG Mon Jun 1 16:19:43 2015 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 4AE4D3F3; Mon, 1 Jun 2015 16:19:43 +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 2BF841F4A; Mon, 1 Jun 2015 16:19:43 +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 t51GJhnq065133; Mon, 1 Jun 2015 16:19:43 GMT (envelope-from allanjude@FreeBSD.org) Received: (from allanjude@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t51GJgLS065128; Mon, 1 Jun 2015 16:19:42 GMT (envelope-from allanjude@FreeBSD.org) Message-Id: <201506011619.t51GJgLS065128@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:19:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388239 - in head/www: . py-puppetboard 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.20 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, 01 Jun 2015 16:19:43 -0000 Author: allanjude (doc committer) Date: Mon Jun 1 16:19:41 2015 New Revision: 388239 URL: https://svnweb.freebsd.org/changeset/ports/388239 Log: Create the puppetboard port, a web dashboard powered by PuppetDB Differential Revision: https://reviews.freebsd.org/D2672 Approved by: xmj Sponsored by: ScaleEngine Inc. Added: head/www/py-puppetboard/ head/www/py-puppetboard/Makefile (contents, props changed) head/www/py-puppetboard/distinfo (contents, props changed) head/www/py-puppetboard/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Jun 1 16:15:33 2015 (r388238) +++ head/www/Makefile Mon Jun 1 16:19:41 2015 (r388239) @@ -1671,6 +1671,7 @@ SUBDIR += py-postmarkup SUBDIR += py-praw SUBDIR += py-prewikka + SUBDIR += py-puppetboard SUBDIR += py-py-restclient SUBDIR += py-pyjwt SUBDIR += py-pylons Added: head/www/py-puppetboard/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-puppetboard/Makefile Mon Jun 1 16:19:41 2015 (r388239) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= puppetboard +PORTVERSION= 0.0.4 +DISTVERSIONPREFIX= v +CATEGORIES= www python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= allanjude@FreeBSD.org +COMMENT= Web interface to PuppetDB + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.10.1:${PORTSDIR}/www/py-flask \ + ${PYTHON_PKGNAMEPREFIX}Flask-WTF>=0.9.4:${PORTSDIR}/www/py-flask-wtf \ + ${PYTHON_PKGNAMEPREFIX}MarkupSafe>=0.19:${PORTSDIR}/textproc/py-MarkupSafe \ + ${PYTHON_PKGNAMEPREFIX}pypuppetdb>=0.1.1:${PORTSDIR}/databases/py-pypuppetdb \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.2.1:${PORTSDIR}/www/py-requests + +USE_GITHUB= yes +GH_ACCOUNT= puppet-community + +USES= python:2.7 +USE_PYTHON= autoplist distutils + +PLIST_FILES= "@sample etc/puppetboard/default_settings.py.sample" + +post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/puppetboard + ${CP} ${WRKSRC}/puppetboard/default_settings.py ${STAGEDIR}${PREFIX}/etc/puppetboard/default_settings.py.sample + +.include Added: head/www/py-puppetboard/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-puppetboard/distinfo Mon Jun 1 16:19:41 2015 (r388239) @@ -0,0 +1,2 @@ +SHA256 (puppet-community-puppetboard-v0.0.4_GH0.tar.gz) = 95ce69e4b017d56d38b7ea8aa2ca131b7702a18228c68d41fcfd0d7080732817 +SIZE (puppet-community-puppetboard-v0.0.4_GH0.tar.gz) = 2851486 Added: head/www/py-puppetboard/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-puppetboard/pkg-descr Mon Jun 1 16:19:41 2015 (r388239) @@ -0,0 +1,4 @@ +Puppetboard is a web interface to PuppetDB aiming to replace the reporting +functionality of Puppet Dashboard. + +WWW: https://github.com/puppet-community/puppetboard