Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 May 2016 17:51:48 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
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
Message-ID:  <201605151751.u4FHpmvP026028@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <dch@skunkwerks.at>

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 <dch@skunkwerks.at>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605151751.u4FHpmvP026028>