226d1946cc
0.17.0: - Dropped py27, py33 and py34 support 0.16.9: - Added support for JSON type in TypeMap 0.16.8: - Fixed QuerySelectField.query allowing no results 0.16.7: - Fixed UnknownTypeException being thrown correctly for unsupported types 0.16.6: - Added SQLAlchemy 1.2 support 0.16.5: - Fixed GroupedQuerySelectMultipleField validator to support empty data 0.16.4: - Fixed GroupedQuerySelectMultipleField validator 0.16.3: - Fixed ChoiceType conversion for Enums 0.16.2: - Added GroupedQueryMultipleSelectField 0.16.1: - Updated SQLAlchemy-Utils requirement to 0.32.6 - Fixed PhoneNumberType conversion 0.16.0: - Dropped python 2.6 support - Made PhoneNumberField work correctly together with DataRequired 0.15.0: - Moved GroupedQuerySelectField from WTForms-Components package to WTForms-Alchemy - Moved WeekdaysField from WTForms-Components package to WTForms-Alchemy - Moved PhoneNumberField from WTForms-Components package to WTForms-Alchemy - Moved Unique validator from WTForms-Components package to WTForms-Alchemy 0.14.0: - Added QuerySelectField and QuerySelectMultipleField which were deprecated from WTForms as of version 2.1 0.13.3: - Removed ClassMap's inheritance sorting. This never really worked properly and resulted in weird undeterministic bugs on Python 3. 0.13.2: - Added support for callables in type map argument 0.13.1: - Added flake8 checks - Added isort checks - Fixed country import caused by SQLAlchemy-Utils 0.30.0 - Update SQLAlchemy-Utils dependency to 0.30.0
24 lines
869 B
Makefile
24 lines
869 B
Makefile
# $NetBSD: Makefile,v 1.9 2020/10/03 18:44:56 adam Exp $
|
|
|
|
DISTNAME= WTForms-Alchemy-0.17.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
|
CATEGORIES= www databases python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=W/WTForms-Alchemy/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/kvesteri/wtforms-alchemy
|
|
COMMENT= Generates WTForms forms from SQLAlchemy models
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.4.1:../../lang/py-six
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlalchemy>=1.0.0:../../databases/py-sqlalchemy
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlalchemy-utils>=0.32.6:../../databases/py-sqlalchemy-utils
|
|
DEPENDS+= ${PYPKGPREFIX}-wtforms>=1.0.4:../../www/py-wtforms
|
|
DEPENDS+= ${PYPKGPREFIX}-wtforms-components>=0.9.2:../../www/py-wtforms-components
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|