From owner-svn-ports-all@freebsd.org Sun May 15 17:51:58 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 235EBB3C638; Sun, 15 May 2016 17:51:58 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D703B1205; Sun, 15 May 2016 17:51:52 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4FHpnQT026033; Sun, 15 May 2016 17:51:49 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4FHpmvP026028; Sun, 15 May 2016 17:51:48 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201605151751.u4FHpmvP026028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sun, 15 May 2016 17:51:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415273 - in head/www: . py-graphite-api 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.22 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: Sun, 15 May 2016 17:51:58 -0000 Author: matthew Date: Sun May 15 17:51:48 2016 New Revision: 415273 URL: https://svnweb.freebsd.org/changeset/ports/415273 Log: Graphite-API This is a minimalistic API server that replicates the behavior of Graphite-web, pruned and simplified as much code as possible while keeping the basic functionality. WWW: https://github.com/brutasse/graphite-api PR: 208890 Submitted by: Dave Cottlehuber Added: head/www/py-graphite-api/ head/www/py-graphite-api/Makefile (contents, props changed) head/www/py-graphite-api/distinfo (contents, props changed) head/www/py-graphite-api/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun May 15 17:50:50 2016 (r415272) +++ head/www/Makefile Sun May 15 17:51:48 2016 (r415273) @@ -1636,6 +1636,7 @@ SUBDIR += py-goobook SUBDIR += py-google SUBDIR += py-google-api-python-client + SUBDIR += py-graphite-api SUBDIR += py-graphite-web SUBDIR += py-grequests SUBDIR += py-gunicorn Added: head/www/py-graphite-api/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-graphite-api/Makefile Sun May 15 17:51:48 2016 (r415273) @@ -0,0 +1,29 @@ +# Created by: Dave Cottlehuber +# $FreeBSD$ + +PORTNAME= graphite-api +PORTVERSION= 1.1.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dch@skunkwerks.at +COMMENT= Graphite-web, without the interface - just the rendering HTTP API + +LICENSE= APACHE20 + +RUN_DEPENDS= \ + ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz \ + ${PYTHON_PKGNAMEPREFIX}Flask>=0.10.1:www/py-flask \ + ${PYTHON_PKGNAMEPREFIX}Flask-Cache>=0.13.1:www/py-flask-cache \ + ${PYTHON_PKGNAMEPREFIX}tzlocal>=1.1.1:devel/py-tzlocal \ + ${PYTHON_PKGNAMEPREFIX}structlog>=16.0.0:devel/py-structlog \ + ${PYTHON_PKGNAMEPREFIX}pyparsing>=2.0.0:devel/py-pyparsing \ + ${PYTHON_PKGNAMEPREFIX}yaml>3.1:devel/py-yaml \ + ${PYTHON_PKGNAMEPREFIX}cairocffi>=0.7.2:graphics/py-cairocffi \ + ${PYTHON_PKGNAMEPREFIX}gunicorn>=19.4.1:www/py-gunicorn \ + xorg-fonts-truetype>=0:x11-fonts/xorg-fonts-truetype + +USES= python +USE_PYTHON= autoplist distutils +.include Added: head/www/py-graphite-api/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-graphite-api/distinfo Sun May 15 17:51:48 2016 (r415273) @@ -0,0 +1,2 @@ +SHA256 (graphite-api-1.1.2.tar.gz) = bfd112cdc7ef1812429afc8b481bda38fb12d85bbabdd098be2c60e55cce1cca +SIZE (graphite-api-1.1.2.tar.gz) = 74846 Added: head/www/py-graphite-api/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-graphite-api/pkg-descr Sun May 15 17:51:48 2016 (r415273) @@ -0,0 +1,7 @@ +Graphite-API + +This is a minimalistic API server that replicates the behavior of Graphite-web, +pruned and simplified as much code as possible while keeping the basic +functionality. + +WWW: https://github.com/brutasse/graphite-api