v1.5.3: Fixed XSS vulnerability Support nested categories in the navbar menu SQLAlchemy - sort on multiple columns with column_default_sort - sort on related models in column_sortable_list - fix: inline model forms can now also be used for models with multiple primary keys - support for using mapped column_property Upgrade Leaflet and Leaflet.draw plugins, used for geoalchemy integration Specify minimum_input_length for ajax widget Peewee: support composite keys MongoEngine: when searching/filtering the input is now regarded as case-insensitive by default FileAdmin - handle special characters in filename - fix a bug with listing directories on Windows - avoid raising an exception when unknown sort parameter is encountered WTForms 3 support
23 lines
747 B
Makefile
23 lines
747 B
Makefile
# $NetBSD: Makefile,v 1.21 2018/12/22 09:30:10 adam Exp $
|
|
|
|
DISTNAME= Flask-Admin-1.5.3
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=F/Flask-Admin/}
|
|
|
|
MAINTAINER= kleink@NetBSD.org
|
|
HOMEPAGE= https://github.com/flask-admin/flask-admin
|
|
COMMENT= Simple and extensible administrative interface framework for Flask
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-flask>=0.7:../../www/py-flask
|
|
DEPENDS+= ${PYPKGPREFIX}-wtforms-[0-9]*:../../www/py-wtforms
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-extract:
|
|
${FIND} ${WRKSRC}/flask_admin/static -type f -exec ${CHMOD} a-x {} +
|
|
${FIND} ${WRKSRC}/flask_admin/templates -type f -exec ${CHMOD} a-x {} +
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|