e26cdeb5f7
Version 2.0.1 ------------- Released July 1, 2014 - Update wheel install to conditionally install ordereddict for python 2.6. - Doc improvements Version 2.0 ----------- Released May 20, 2014 - Add new `class Meta` paradigm for much more powerful customization of WTForms. - Move i18n into core. Deprecate `wtforms.ext.i18n`. - Move CSRF into core. Deprecate `wtforms.ext.csrf`. - Fix issue rendering SelectFields with ``value=True`` - Make `DecimalField` able to use babel locale-based number formatting. - Drop Python 3.2 support (Python3 support for 3.3+ only) - passing ``attr=False`` to WTForms widgets causes the value to be ignored. - `Unique` validator in `wtforms.ext.sqlalchemy` has been removed.
20 lines
540 B
Makefile
20 lines
540 B
Makefile
# $NetBSD: Makefile,v 1.10 2015/01/09 21:03:27 kleink Exp $
|
|
|
|
DISTNAME= WTForms-2.0.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/W/WTForms/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= kleink@NetBSD.org
|
|
HOMEPAGE= http://wtforms.simplecodes.com/
|
|
COMMENT= Flexible forms validation and rendering library
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= # empty
|
|
|
|
post-extract:
|
|
${FIND} ${WRKSRC} -type f -exec ${CHMOD} -x {} \;
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|