Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Feb 2015 11:19:01 +0000 (UTC)
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378765 - in head/www: . py-flask-restful
Message-ID:  <201502101119.t1ABJ1Lv038129@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Tue Feb 10 11:19:00 2015
New Revision: 378765
URL: https://svnweb.freebsd.org/changeset/ports/378765
QAT: https://qat.redports.org/buildarchive/r378765/

Log:
  Simple framework for creating REST APIs.
  
  WWW: http://flask-restful.readthedocs.org/en/latest/

Added:
  head/www/py-flask-restful/
  head/www/py-flask-restful/Makefile   (contents, props changed)
  head/www/py-flask-restful/distinfo   (contents, props changed)
  head/www/py-flask-restful/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Tue Feb 10 11:18:12 2015	(r378764)
+++ head/www/Makefile	Tue Feb 10 11:19:00 2015	(r378765)
@@ -1542,6 +1542,7 @@
     SUBDIR += py-flask-admin
     SUBDIR += py-flask-cache
     SUBDIR += py-flask-flatpages
+    SUBDIR += py-flask-restful
     SUBDIR += py-flask-sockets
     SUBDIR += py-flask-uploads
     SUBDIR += py-flask-wtf

Added: head/www/py-flask-restful/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-restful/Makefile	Tue Feb 10 11:19:00 2015	(r378765)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	Flask-RESTful
+PORTVERSION=	0.3.1
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	rm@FreeBSD.org
+COMMENT=	Simple framework for creating REST APIs with Flask
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}aniso8601>0:${PORTSDIR}/devel/py-aniso8601 \
+		${PYTHON_PKGNAMEPREFIX}Flask>0:${PORTSDIR}/www/py-flask \
+		${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \
+		${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/www/py-flask-restful/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-restful/distinfo	Tue Feb 10 11:19:00 2015	(r378765)
@@ -0,0 +1,2 @@
+SHA256 (Flask-RESTful-0.3.1.tar.gz) = b571d6f0ee09d285877b8af981e4815a3fdf98a66cb4528c76ffbd156de2db09
+SIZE (Flask-RESTful-0.3.1.tar.gz) = 18875

Added: head/www/py-flask-restful/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-restful/pkg-descr	Tue Feb 10 11:19:00 2015	(r378765)
@@ -0,0 +1,3 @@
+Simple framework for creating REST APIs.
+
+WWW: http://flask-restful.readthedocs.org/en/latest/



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