pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/py-flask-caching



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Mar  8 20:09:38 UTC 2021

Modified Files:
        pkgsrc/www/py-flask-caching: Makefile PLIST distinfo

Log Message:
py-flask-caching: updated to 1.10.0

Version 1.10.0
--------------
- **Important**: The way caching backends are loaded have been refactored.
  Instead of passing the name of the initialization function one can now use
  the full path to the caching backend class.
  For example:
  ``CACHE_TYPE="flask_caching.backends.SimpleCache"``.
  In the next major release (2.0), this will be the only supported way.
- UWSGICache is not officially supported anymore and moved to the user
  contributed backends.
- Switch from Travis-CI to GitHub Actions
- Fix add() in RedisCache without a timeout.
- Fix error in how the FileSystemCache counts the number of files.
- Type Annotations have been added.
- Add some basic logging to SimpleCache and FileSystemCache for better
  observability.
- Add option in memoize to ignore args
- Stop marking wheels as Python 2 compatible.
- Fix ``default_timeout`` not being properly passed to its super constructor.
- Fix ``kwargs`` not being passed on in function ``_memoize_make_cache_key``.
- Add a Redis Cluster Mode caching backend.
- Do not let PIP install this package on unsupported Python Versions.
- Fix uWSGI initialization by checking if uWSGI has the 'cache2' option
  enabled.
- Documentation updates and fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-flask-caching/Makefile \
    pkgsrc/www/py-flask-caching/distinfo
cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-flask-caching/PLIST

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-caching/Makefile
diff -u pkgsrc/www/py-flask-caching/Makefile:1.7 pkgsrc/www/py-flask-caching/Makefile:1.8
--- pkgsrc/www/py-flask-caching/Makefile:1.7    Mon Jun 29 16:13:01 2020
+++ pkgsrc/www/py-flask-caching/Makefile        Mon Mar  8 20:09:38 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2020/06/29 16:13:01 adam Exp $
+# $NetBSD: Makefile,v 1.8 2021/03/08 20:09:38 adam Exp $
 
-DISTNAME=      Flask-Caching-1.9.0
+DISTNAME=      Flask-Caching-1.10.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=F/Flask-Caching/}
Index: pkgsrc/www/py-flask-caching/distinfo
diff -u pkgsrc/www/py-flask-caching/distinfo:1.7 pkgsrc/www/py-flask-caching/distinfo:1.8
--- pkgsrc/www/py-flask-caching/distinfo:1.7    Mon Jun 29 16:13:01 2020
+++ pkgsrc/www/py-flask-caching/distinfo        Mon Mar  8 20:09:38 2021
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2020/06/29 16:13:01 adam Exp $
+$NetBSD: distinfo,v 1.8 2021/03/08 20:09:38 adam Exp $
 
-SHA1 (Flask-Caching-1.9.0.tar.gz) = a66eeb3eb545a54d1b98223ff2fdc528b9c51b7b
-RMD160 (Flask-Caching-1.9.0.tar.gz) = 1f4d52c4674eb50f0e665a6fe2c10ccc3ec8ba7e
-SHA512 (Flask-Caching-1.9.0.tar.gz) = cd29aab6c8888180a90db0520acbde0b825c2f25908033cacc19de6a7d574823a4a07119a4c3c75628b6fbe67026ac566c5bd2ecadd52523dbe4163307b133a1
-Size (Flask-Caching-1.9.0.tar.gz) = 71618 bytes
+SHA1 (Flask-Caching-1.10.0.tar.gz) = 069fa379f58c95bc6517c4e927ddb528912a3224
+RMD160 (Flask-Caching-1.10.0.tar.gz) = c85c22e6fde159255989157af95b1cc972a344c0
+SHA512 (Flask-Caching-1.10.0.tar.gz) = cb52ab39fc0b887366b9be6759a638f71ae8fabbe553db4c567f27c8f150ce98d5b687eac805ef78c8e92f2d0f6243dbbe8863c610aa42cda14d0946590fc948
+Size (Flask-Caching-1.10.0.tar.gz) = 74740 bytes

Index: pkgsrc/www/py-flask-caching/PLIST
diff -u pkgsrc/www/py-flask-caching/PLIST:1.5 pkgsrc/www/py-flask-caching/PLIST:1.6
--- pkgsrc/www/py-flask-caching/PLIST:1.5       Mon Jun 29 16:13:01 2020
+++ pkgsrc/www/py-flask-caching/PLIST   Mon Mar  8 20:09:38 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2020/06/29 16:13:01 adam Exp $
+@comment $NetBSD: PLIST,v 1.6 2021/03/08 20:09:38 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -32,6 +32,12 @@ ${PYSITELIB}/flask_caching/backends/simp
 ${PYSITELIB}/flask_caching/backends/uwsgicache.py
 ${PYSITELIB}/flask_caching/backends/uwsgicache.pyc
 ${PYSITELIB}/flask_caching/backends/uwsgicache.pyo
+${PYSITELIB}/flask_caching/contrib/__init__.py
+${PYSITELIB}/flask_caching/contrib/__init__.pyc
+${PYSITELIB}/flask_caching/contrib/__init__.pyo
+${PYSITELIB}/flask_caching/contrib/uwsgicache.py
+${PYSITELIB}/flask_caching/contrib/uwsgicache.pyc
+${PYSITELIB}/flask_caching/contrib/uwsgicache.pyo
 ${PYSITELIB}/flask_caching/jinja2ext.py
 ${PYSITELIB}/flask_caching/jinja2ext.pyc
 ${PYSITELIB}/flask_caching/jinja2ext.pyo



Home | Main Index | Thread Index | Old Index