Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Dec 2019 05:48:42 +0000 (UTC)
From:      Ben Woods <woodsb02@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520777 - in head/www: . py-flask-peewee
Message-ID:  <201912240548.xBO5mg83061263@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: woodsb02
Date: Tue Dec 24 05:48:42 2019
New Revision: 520777
URL: https://svnweb.freebsd.org/changeset/ports/520777

Log:
  Add new port www/py-flask-peewee
  
  Flask-Peewee provides a layer of integration between the flask web
  framework and the peewee orm.
  
  WWW: https://github.com/coleifer/flask-peewee/
  
  PR:		242765
  Submitted by:	Goran Mekić <meka@tilda.center>

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Tue Dec 24 05:33:55 2019	(r520776)
+++ head/www/Makefile	Tue Dec 24 05:48:42 2019	(r520777)
@@ -1637,6 +1637,7 @@
     SUBDIR += py-flask-migrate
     SUBDIR += py-flask-moment
     SUBDIR += py-flask-oauthlib
+    SUBDIR += py-flask-peewee
     SUBDIR += py-flask-principal
     SUBDIR += py-flask-restful
     SUBDIR += py-flask-restplus

Added: head/www/py-flask-peewee/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-peewee/Makefile	Tue Dec 24 05:48:42 2019	(r520777)
@@ -0,0 +1,34 @@
+# $FreeBSD$
+
+PORTNAME=	flask-peewee
+PORTVERSION=	3.0.3
+CATEGORIES=	www devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	meka@tilda.center
+COMMENT=	Integration between the flask web framework and the peewee orm
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Flask>=0:www/py-flask@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}werkzeug>=0:www/py-werkzeug@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}peewee>=0:databases/py-peewee@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wtforms>=0:textproc/py-wtforms@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wtf-peewee>=0:textproc/py-wtf-peewee@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR}
+
+USES=		python:3.5+
+USE_GITHUB=	yes # tests not packaged with PyPI sdist
+GH_ACCOUNT=	coleifer
+USE_PYTHON=	autoplist concurrent distutils
+
+TEST_ENV=	PYTHONPATH=${WRKSRC}/src
+
+NO_ARCH=	yes
+
+do-test:
+	cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} runtests.py
+
+.include <bsd.port.mk>

Added: head/www/py-flask-peewee/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-peewee/distinfo	Tue Dec 24 05:48:42 2019	(r520777)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1576931683
+SHA256 (coleifer-flask-peewee-3.0.3_GH0.tar.gz) = c3b0ac9a27450a9603b38f58e3996c7508711a3a58dd255c9a8274d7a3c37ebc
+SIZE (coleifer-flask-peewee-3.0.3_GH0.tar.gz) = 646492

Added: head/www/py-flask-peewee/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-peewee/pkg-descr	Tue Dec 24 05:48:42 2019	(r520777)
@@ -0,0 +1,7 @@
+Flask-Peewee provides a layer of integration between the flask web framework
+and the peewee orm. Batteries included:
+ - admin interface
+ - authentication
+ - rest api
+
+WWW: https://github.com/coleifer/flask-peewee/



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