From owner-svn-ports-head@freebsd.org Wed Mar 7 21:39:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7778F3364F; Wed, 7 Mar 2018 21:39:22 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 75B6470DD7; Wed, 7 Mar 2018 21:39:22 +0000 (UTC) (envelope-from feld@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 567A027527; Wed, 7 Mar 2018 21:39:22 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w27LdMkP062214; Wed, 7 Mar 2018 21:39:22 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w27LdLtE062210; Wed, 7 Mar 2018 21:39:21 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201803072139.w27LdLtE062210@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 7 Mar 2018 21:39:21 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/www: . py-flask-script X-SVN-Commit-Revision: 463837 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2018 21:39:23 -0000 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 +# $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 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/