Date: Mon, 1 Jun 2015 16:19:42 +0000 (UTC) From: Allan Jude <allanjude@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388239 - in head/www: . py-puppetboard Message-ID: <201506011619.t51GJgLS065128@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506011619.t51GJgLS065128>