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 Jun 29 16:13:01 UTC 2020

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

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

Version 1.9.0

- Add an option to include the functions source code when generating the cache
  key.
- Add an feature that allows one to completely control the way how cache keys
  are generating. For example, one can now implement a function that generates
  cache the keys based on the POST-based requests.
- Fix the cache backend naming collisions by renaming them from ``simple`` to
  ``simplecache``, ``null`` to ``nullcache`` and ``filesystem`` to
  ``filesystemcache``.
- Explicitly pass the ``default_timeout`` to ``RedisCache`` from
  ``RedisSentinelCache``.
- Use ``os.replace`` instead of werkzeug's ``rename`` due to Windows raising an
  ``OSError`` if the dst file already exist.
- Documentation updates and fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-flask-caching/Makefile \
    pkgsrc/www/py-flask-caching/distinfo
cvs rdiff -u -r1.4 -r1.5 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.6 pkgsrc/www/py-flask-caching/Makefile:1.7
--- pkgsrc/www/py-flask-caching/Makefile:1.6    Sat Mar 21 08:55:14 2020
+++ pkgsrc/www/py-flask-caching/Makefile        Mon Jun 29 16:13:01 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2020/03/21 08:55:14 adam Exp $
+# $NetBSD: Makefile,v 1.7 2020/06/29 16:13:01 adam Exp $
 
-DISTNAME=      Flask-Caching-1.8.0
+DISTNAME=      Flask-Caching-1.9.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.6 pkgsrc/www/py-flask-caching/distinfo:1.7
--- pkgsrc/www/py-flask-caching/distinfo:1.6    Sat Mar 21 08:55:14 2020
+++ pkgsrc/www/py-flask-caching/distinfo        Mon Jun 29 16:13:01 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.6 2020/03/21 08:55:14 adam Exp $
+$NetBSD: distinfo,v 1.7 2020/06/29 16:13:01 adam Exp $
 
-SHA1 (Flask-Caching-1.8.0.tar.gz) = d119767506d970fad3313d7bfe62ff576b149776
-RMD160 (Flask-Caching-1.8.0.tar.gz) = 158c9d4e01e8a58f2db4ff140ac247878eb8d6c8
-SHA512 (Flask-Caching-1.8.0.tar.gz) = c7e541c18e50e2428b114083fd0849fa99675635eb00ff6ea89af353e2e1cdface817aadc0651c9d7c1c1695f93ca3e4a2a66344f73761339e429dccd3764cf4
-Size (Flask-Caching-1.8.0.tar.gz) = 69302 bytes
+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

Index: pkgsrc/www/py-flask-caching/PLIST
diff -u pkgsrc/www/py-flask-caching/PLIST:1.4 pkgsrc/www/py-flask-caching/PLIST:1.5
--- pkgsrc/www/py-flask-caching/PLIST:1.4       Sat Mar 21 08:55:14 2020
+++ pkgsrc/www/py-flask-caching/PLIST   Mon Jun 29 16:13:01 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2020/03/21 08:55:14 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2020/06/29 16:13:01 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -14,21 +14,21 @@ ${PYSITELIB}/flask_caching/backends/__in
 ${PYSITELIB}/flask_caching/backends/base.py
 ${PYSITELIB}/flask_caching/backends/base.pyc
 ${PYSITELIB}/flask_caching/backends/base.pyo
-${PYSITELIB}/flask_caching/backends/filesystem.py
-${PYSITELIB}/flask_caching/backends/filesystem.pyc
-${PYSITELIB}/flask_caching/backends/filesystem.pyo
+${PYSITELIB}/flask_caching/backends/filesystemcache.py
+${PYSITELIB}/flask_caching/backends/filesystemcache.pyc
+${PYSITELIB}/flask_caching/backends/filesystemcache.pyo
 ${PYSITELIB}/flask_caching/backends/memcache.py
 ${PYSITELIB}/flask_caching/backends/memcache.pyc
 ${PYSITELIB}/flask_caching/backends/memcache.pyo
-${PYSITELIB}/flask_caching/backends/null.py
-${PYSITELIB}/flask_caching/backends/null.pyc
-${PYSITELIB}/flask_caching/backends/null.pyo
+${PYSITELIB}/flask_caching/backends/nullcache.py
+${PYSITELIB}/flask_caching/backends/nullcache.pyc
+${PYSITELIB}/flask_caching/backends/nullcache.pyo
 ${PYSITELIB}/flask_caching/backends/rediscache.py
 ${PYSITELIB}/flask_caching/backends/rediscache.pyc
 ${PYSITELIB}/flask_caching/backends/rediscache.pyo
-${PYSITELIB}/flask_caching/backends/simple.py
-${PYSITELIB}/flask_caching/backends/simple.pyc
-${PYSITELIB}/flask_caching/backends/simple.pyo
+${PYSITELIB}/flask_caching/backends/simplecache.py
+${PYSITELIB}/flask_caching/backends/simplecache.pyc
+${PYSITELIB}/flask_caching/backends/simplecache.pyo
 ${PYSITELIB}/flask_caching/backends/uwsgicache.py
 ${PYSITELIB}/flask_caching/backends/uwsgicache.pyc
 ${PYSITELIB}/flask_caching/backends/uwsgicache.pyo



Home | Main Index | Thread Index | Old Index