pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/py-flask-admin
Module Name: pkgsrc
Committed By: kleink
Date: Wed Feb 22 16:18:24 UTC 2017
Modified Files:
pkgsrc/www/py-flask-admin: Makefile PLIST distinfo
Log Message:
Update py-flask-admin to 1.4.2.
1.4.2
-----
* Small bug fix release. Fixes regression that prevented usage of "virtual"
columns with a custom formatter.
1.4.1
-----
* Official Python 3.5 support
* Customizable row actions
* Tablib support (exporting to XLS, XLSX, CSV, etc)
* Updated external dependencies (jQuery, x-editable, etc)
* Added settings that allows exceptions to be raised on view errors
* Bug fixes
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/www/py-flask-admin/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/www/py-flask-admin/PLIST
cvs rdiff -u -r1.13 -r1.14 pkgsrc/www/py-flask-admin/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/py-flask-admin/Makefile
diff -u pkgsrc/www/py-flask-admin/Makefile:1.16 pkgsrc/www/py-flask-admin/Makefile:1.17
--- pkgsrc/www/py-flask-admin/Makefile:1.16 Fri Jan 8 17:05:47 2016
+++ pkgsrc/www/py-flask-admin/Makefile Wed Feb 22 16:18:24 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2016/01/08 17:05:47 kleink Exp $
+# $NetBSD: Makefile,v 1.17 2017/02/22 16:18:24 kleink Exp $
-DISTNAME= Flask-Admin-1.4.0
+DISTNAME= Flask-Admin-1.4.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=F/Flask-Admin/}
@@ -21,13 +21,14 @@ PLIST_SUBST+= EGDIR=${EGDIR}
INSTALLATION_DIRS+= ${EGDIR}
post-extract:
- rm -f ${WRKSRC}/examples/__init__.py
+ ${RM} -f ${WRKSRC}/examples/__init__.py
+ ${FIND} ${WRKSRC} -type f -name .DS_Store -print | ${XARGS} ${RM} -f
post-install:
-.for i in LICENSE select2.css select2.min.js
- ${CHMOD} -x \
- ${DESTDIR}${PREFIX}/${PYSITELIB}/flask_admin/static/vendor/select2/${i}
-.endfor
+ ${FIND} \
+ ${DESTDIR}${PREFIX}/${PYSITELIB}/flask_admin/static \
+ ${DESTDIR}${PREFIX}/${PYSITELIB}/flask_admin/templates \
+ -type f -print | ${XARGS} ${CHMOD} -x
${TOUCH} ${DESTDIR}${PREFIX}/${EGDIR}/__init__.py
cd ${WRKSRC}/examples && pax -rwppm . ${DESTDIR}${PREFIX}/${EGDIR}
Index: pkgsrc/www/py-flask-admin/PLIST
diff -u pkgsrc/www/py-flask-admin/PLIST:1.11 pkgsrc/www/py-flask-admin/PLIST:1.12
--- pkgsrc/www/py-flask-admin/PLIST:1.11 Fri Jan 8 17:05:47 2016
+++ pkgsrc/www/py-flask-admin/PLIST Wed Feb 22 16:18:24 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2016/01/08 17:05:47 kleink Exp $
+@comment $NetBSD: PLIST,v 1.12 2017/02/22 16:18:24 kleink Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -298,6 +298,7 @@ ${PYSITELIB}/flask_admin/templates/boots
${PYSITELIB}/flask_admin/templates/bootstrap2/admin/model/modals/create.html
${PYSITELIB}/flask_admin/templates/bootstrap2/admin/model/modals/details.html
${PYSITELIB}/flask_admin/templates/bootstrap2/admin/model/modals/edit.html
+${PYSITELIB}/flask_admin/templates/bootstrap2/admin/model/row_actions.html
${PYSITELIB}/flask_admin/templates/bootstrap2/admin/rediscli/console.html
${PYSITELIB}/flask_admin/templates/bootstrap2/admin/rediscli/response.html
${PYSITELIB}/flask_admin/templates/bootstrap2/admin/static.html
@@ -321,6 +322,7 @@ ${PYSITELIB}/flask_admin/templates/boots
${PYSITELIB}/flask_admin/templates/bootstrap3/admin/model/modals/create.html
${PYSITELIB}/flask_admin/templates/bootstrap3/admin/model/modals/details.html
${PYSITELIB}/flask_admin/templates/bootstrap3/admin/model/modals/edit.html
+${PYSITELIB}/flask_admin/templates/bootstrap3/admin/model/row_actions.html
${PYSITELIB}/flask_admin/templates/bootstrap3/admin/rediscli/console.html
${PYSITELIB}/flask_admin/templates/bootstrap3/admin/rediscli/response.html
${PYSITELIB}/flask_admin/templates/bootstrap3/admin/static.html
@@ -403,6 +405,8 @@ ${PYSITELIB}/flask_admin/tests/test_mode
${PYSITELIB}/flask_admin/tests/test_tools.py
${PYSITELIB}/flask_admin/tests/test_tools.pyc
${PYSITELIB}/flask_admin/tests/test_tools.pyo
+${PYSITELIB}/flask_admin/tests/tmp/copyleft.jpg
+${PYSITELIB}/flask_admin/tests/tmp/inner/test1.txt
${PYSITELIB}/flask_admin/tools.py
${PYSITELIB}/flask_admin/tools.pyc
${PYSITELIB}/flask_admin/tools.pyo
@@ -501,6 +505,8 @@ ${EGDIR}/simple/__init__.py
${EGDIR}/simple/app.py
${EGDIR}/sqla-custom-filter/__init__.py
${EGDIR}/sqla-custom-filter/app.py
+${EGDIR}/sqla-filter-selectable/__init__.py
+${EGDIR}/sqla-filter-selectable/app.py
${EGDIR}/sqla-hybrid_property/__init__.py
${EGDIR}/sqla-hybrid_property/app.py
${EGDIR}/sqla/__init__.py
Index: pkgsrc/www/py-flask-admin/distinfo
diff -u pkgsrc/www/py-flask-admin/distinfo:1.13 pkgsrc/www/py-flask-admin/distinfo:1.14
--- pkgsrc/www/py-flask-admin/distinfo:1.13 Fri Jan 8 17:05:47 2016
+++ pkgsrc/www/py-flask-admin/distinfo Wed Feb 22 16:18:24 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.13 2016/01/08 17:05:47 kleink Exp $
+$NetBSD: distinfo,v 1.14 2017/02/22 16:18:24 kleink Exp $
-SHA1 (Flask-Admin-1.4.0.tar.gz) = 475b0790ed2e4e59f89647138c49be7f58c35df7
-RMD160 (Flask-Admin-1.4.0.tar.gz) = f27f2d706c4e40aa1deb183492147f608ac98576
-SHA512 (Flask-Admin-1.4.0.tar.gz) = 19b65e594821164cd80f0665bd3052865ada4d4676f3deb15ef32e040d3ed519a50cab53fac958d8efb26f6b2056f820a2116a34d73119d120a7eaf813a69712
-Size (Flask-Admin-1.4.0.tar.gz) = 868807 bytes
+SHA1 (Flask-Admin-1.4.2.tar.gz) = a12f2bdb6aa21a94b74e6244ca607cc0fd014512
+RMD160 (Flask-Admin-1.4.2.tar.gz) = abf2693fb9e9e01cccb5e8b27034401d9890cbc4
+SHA512 (Flask-Admin-1.4.2.tar.gz) = e736d5f6d05c886ac8bd96b7524d6bc7af956fd9d2f183d1c0872ea346301d67c5b634589b94b1de3be9fd5f1595ad95505b68d80adc613520259380bb9b0be5
+Size (Flask-Admin-1.4.2.tar.gz) = 922579 bytes
Home |
Main Index |
Thread Index |
Old Index