svn commit: r520748 - in head/textproc: . py-wtf-peewee

Ben Woods woodsb02 at FreeBSD.org
Mon Dec 23 22:54:30 UTC 2019


Author: woodsb02
Date: Mon Dec 23 22:54:29 2019
New Revision: 520748
URL: https://svnweb.freebsd.org/changeset/ports/520748

Log:
  Add new port textproc/py-wtf-peewee
  
  Flask-WTF-Peewee, based on the code found in wtforms.ext, provides a bridge
  between peewee models and wtforms, mapping model fields to form fields.
  
  WWW: https://github.com/coleifer/wtf-peewee
  
  PR:		242763
  Submitted by:	Goran Mekić <meka at tilda.center>

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Mon Dec 23 22:42:20 2019	(r520747)
+++ head/textproc/Makefile	Mon Dec 23 22:54:29 2019	(r520748)
@@ -1407,6 +1407,7 @@
     SUBDIR += py-wicked
     SUBDIR += py-wordnet
     SUBDIR += py-wstools
+    SUBDIR += py-wtf-peewee
     SUBDIR += py-wtforms
     SUBDIR += py-xhtml2pdf
     SUBDIR += py-xlrd

Added: head/textproc/py-wtf-peewee/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-wtf-peewee/Makefile	Mon Dec 23 22:54:29 2019	(r520748)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	wtf-peewee
+PORTVERSION=	3.0.0
+CATEGORIES=	textproc devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	meka at tilda.center
+COMMENT=	Bridge between peewee models and wtforms
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}peewee>=0:databases/py-peewee@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wtforms>=0:textproc/py-wtforms@${PY_FLAVOR}
+
+USES=		python:3.5+
+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/textproc/py-wtf-peewee/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-wtf-peewee/distinfo	Mon Dec 23 22:54:29 2019	(r520748)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1576928651
+SHA256 (wtf-peewee-3.0.0.tar.gz) = acd05d136c8595da3327fcf9176fa85fdcec1f2aac51d235e46e6fc7a0871283
+SIZE (wtf-peewee-3.0.0.tar.gz) = 62346

Added: head/textproc/py-wtf-peewee/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-wtf-peewee/pkg-descr	Mon Dec 23 22:54:29 2019	(r520748)
@@ -0,0 +1,4 @@
+Flask-WTF-Peewee, based on the code found in wtforms.ext, provides a bridge
+between peewee models and wtforms, mapping model fields to form fields.
+
+WWW: https://github.com/coleifer/wtf-peewee


More information about the svn-ports-all mailing list