From owner-svn-ports-all@FreeBSD.ORG Sat Jun 28 18:06:49 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B173415; Sat, 28 Jun 2014 18:06:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 1BF162AAC; Sat, 28 Jun 2014 18:06:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5SI6mf0092881; Sat, 28 Jun 2014 18:06:48 GMT (envelope-from robak@svn.freebsd.org) Received: (from robak@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5SI6mkl092873; Sat, 28 Jun 2014 18:06:48 GMT (envelope-from robak@svn.freebsd.org) Message-Id: <201406281806.s5SI6mkl092873@svn.freebsd.org> From: Bartek Rutkowski Date: Sat, 28 Jun 2014 18:06:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359709 - in head/www: . py-flask-admin 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.18 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: Sat, 28 Jun 2014 18:06:49 -0000 Author: robak Date: Sat Jun 28 18:06:47 2014 New Revision: 359709 URL: http://svnweb.freebsd.org/changeset/ports/359709 QAT: https://qat.redports.org/buildarchive/r359709/ Log: New port: www/py-flask-admin Flask-Admin is a batteries-included, simple-to-use Flask extension that lets you add admin interfaces to Flask applications. It is inspired by the django-admin package, but implemented in such a way that the developer has total control of the look, feel and functionality of the resulting application. Approved by: marino (mentor) Added: head/www/py-flask-admin/ head/www/py-flask-admin/Makefile (contents, props changed) head/www/py-flask-admin/distinfo (contents, props changed) head/www/py-flask-admin/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Jun 28 17:39:57 2014 (r359708) +++ head/www/Makefile Sat Jun 28 18:06:47 2014 (r359709) @@ -1548,6 +1548,7 @@ SUBDIR += py-feedfinder SUBDIR += py-feedgenerator SUBDIR += py-flask + SUBDIR += py-flask-admin SUBDIR += py-flask-cache SUBDIR += py-flask-flatpages SUBDIR += py-flask-uploads Added: head/www/py-flask-admin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-admin/Makefile Sat Jun 28 18:06:47 2014 (r359709) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= Flask-Admin +PORTVERSION= 1.0.8 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= robak@FreeBSD.org +COMMENT= Flask extension for adding admin interfaces to Flask applications + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.10:${PORTSDIR}/www/py-flask + +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/www/py-flask-admin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-admin/distinfo Sat Jun 28 18:06:47 2014 (r359709) @@ -0,0 +1,2 @@ +SHA256 (Flask-Admin-1.0.8.tar.gz) = 987e8468c0c6edb993cbcf44c25df9134748a5e554d1f631c0fdd13b8f91855a +SIZE (Flask-Admin-1.0.8.tar.gz) = 342794 Added: head/www/py-flask-admin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-admin/pkg-descr Sat Jun 28 18:06:47 2014 (r359709) @@ -0,0 +1,7 @@ +Flask-Admin is a batteries-included, simple-to-use Flask extension +that lets you add admin interfaces to Flask applications. +It is inspired by the django-admin package, but implemented in such +a way that the developer has total control of the look, feel and +functionality of the resulting application. + +WWW: https://github.com/mrjoes/flask-admin/