Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Mar 2018 21:39:21 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r463837 - in head/www: . py-flask-script
Message-ID:  <201803072139.w27LdLtE062210@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Wed Mar  7 21:39:21 2018
New Revision: 463837
URL: https://svnweb.freebsd.org/changeset/ports/463837

Log:
  The Flask-Script extension provides support for writing external scripts
  in Flask. This includes running a development server, a customised
  Python shell, scripts to set up your database, cronjobs, and other
  command-line tasks that belong outside the web application itself.
  
  WWW: http://flask-script.readthedocs.io/en/latest/

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Wed Mar  7 21:39:06 2018	(r463836)
+++ head/www/Makefile	Wed Mar  7 21:39:21 2018	(r463837)
@@ -1682,6 +1682,7 @@
     SUBDIR += py-flask-principal
     SUBDIR += py-flask-restful
     SUBDIR += py-flask-restplus
+    SUBDIR += py-flask-script
     SUBDIR += py-flask-socketio
     SUBDIR += py-flask-sockets
     SUBDIR += py-flask-uploads

Added: head/www/py-flask-script/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-script/Makefile	Wed Mar  7 21:39:21 2018	(r463837)
@@ -0,0 +1,21 @@
+# Created by: Mark Felder <feld@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Flask-Script
+PORTVERSION=	2.0.6
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld@FreeBSD.org
+COMMENT=	Scripting support for Flask
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Flask>0:www/py-flask@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+.include <bsd.port.mk>

Added: head/www/py-flask-script/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-script/distinfo	Wed Mar  7 21:39:21 2018	(r463837)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1520437708
+SHA256 (Flask-Script-2.0.6.tar.gz) = 6425963d91054cfcc185807141c7314a9c5ad46325911bd24dcb489bd0161c65
+SIZE (Flask-Script-2.0.6.tar.gz) = 43146

Added: head/www/py-flask-script/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-script/pkg-descr	Wed Mar  7 21:39:21 2018	(r463837)
@@ -0,0 +1,6 @@
+The Flask-Script extension provides support for writing external scripts
+in Flask. This includes running a development server, a customised
+Python shell, scripts to set up your database, cronjobs, and other
+command-line tasks that belong outside the web application itself.
+
+WWW: http://flask-script.readthedocs.io/en/latest/



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