0f9443a045
Version 1.0.1 ------------- Released 2022-03-31 - Update compatibility with the latest Werkzeug release. :issue:`511` Version 1.0.0 -------------- Released 2021-11-07 - Deprecated items removal :pr:`484` - Support for alternatives captcha services :pr:`425` :pr:`342` :pr:`387` :issue:`384` Version 0.15.1 -------------- Released 2021-05-25 - Add ``python_requires`` metadata to avoid installing on unsupported Python versions. :pr:`442` Version 0.15.0 -------------- Released 2021-05-24 - Drop support for Python < 3.6. :pr:`416` - ``FileSize`` validator. :pr:`307, 365` - Extra requirement ``email`` installs the ``email_validator`` package. :pr:`423` - Fixed Flask 2.0 warnings. :pr:`434` - Various documentation fixes. :pr:`315, 321, 335, 344, 386, 400`, :pr:`404, 420, 437` - Various CI fixes. :pr:`405, 438`
29 lines
926 B
Makefile
29 lines
926 B
Makefile
# $NetBSD: Makefile,v 1.27 2022/05/25 15:23:51 kleink Exp $
|
|
|
|
DISTNAME= Flask-WTF-1.0.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=F/Flask-WTF/}
|
|
|
|
MAINTAINER= kleink@NetBSD.org
|
|
HOMEPAGE= https://github.com/wtforms/flask-wtf
|
|
COMMENT= Simple integration of Flask and WTForms
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-flask-[0-9]*:../../www/py-flask
|
|
DEPENDS+= ${PYPKGPREFIX}-wtforms>=1.0.5:../../www/py-wtforms
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-flask-babel-[0-9]*:../../www/py-flask-babel
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-flask-babelex-[0-9]*:../../www/py-flask-babelex
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
|
|
USE_LANGUAGES= # empty
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|