Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-dogpile.cache-0.6.5-2.9 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python2-dogpile.cache Distribution: SUSE Linux Enterprise 15
Version: 0.6.5 Vendor: SUSE LLC <https://www.suse.com/>
Release: 2.9 Build date: Fri May 25 22:32:55 2018
Group: Development/Languages/Python Build host: sheep53
Size: 296808 Source RPM: python-dogpile.cache-0.6.5-2.9.src.rpm
Packager: https://www.suse.com/
Url: http://bitbucket.org/zzzeek/dogpile.cache
Summary: A caching front-end based on the Dogpile lock
A caching API built around the concept of a "dogpile lock", which allows
continued access to an expiring data value while a single thread generates a
new value.

Provides

Requires

License

BSD-3-Clause

Changelog

* Mon Apr 23 2018 dmueller@suse.com
  - skip lock tests, they fail frequently (bsc#1086987)
* Fri Apr 20 2018 dmueller@suse.com
  - for testing purposes drop dogpile.cache-tests_more_slow_waiters.patch
* Thu Apr 19 2018 dmueller@suse.com
  - only run generic tests using pytest (bsc#1089564)
* Mon Mar 26 2018 ro@suse.de
  - update to 0.6.5:
    * Fixed import issue for Python 3.7 where several variables named
      "async" were, leading to syntax errors.
    * drop dogpile-threading.patch (upstreamed)
  - add dogpile.cache-tests_more_slow_waiters.patch (bsc#1086987)
    increase number of allowed slow waiters in testsuite
    otherwise this testsuite seems extremely flaky on non-x86_64
* Sun Feb 18 2018 dmueller@suse.com
  - add  dogpile-threading.patch
* Wed Nov 08 2017 alarrosa@suse.com
  - Fix broken symlinks created by fdupes on the python3-dogpile.cache package
* Mon Aug 21 2017 tbechtold@suse.com
  - update to 0.6.4:
    * The method :meth:`.Region.get_or_create_multi` will not pass to the
      cache backend if no values are ultimately to be stored, based on
      the use of the :paramref:`.Region.get_or_create_multi.should_cache_fn`
      function.  This empty dictionary is unnecessary and can cause API
      problems for backends like that of Redis.
    * The :attr:`.api.NO_VALUE` constant now has a fixed ``__repr__()``
      output, so that scenarios where this constant's string value
      ends up being used as a cache key do not create multiple values.
    * A new exception class :class:`.exception.PluginNotFound` is now
      raised when a particular cache plugin class cannot be located
      either as a setuptools entrypoint or as a registered backend.
      Previously, a plain ``Exception`` was thrown.
    * Added ``replace_existing_backend`` to
      :meth:`.CacheRegion.configure_from_config`.
* Sat May 06 2017 toddrme2178@gmail.com
  - Fix Provides/Obsoletes.
* Wed Mar 01 2017 aloisio@gmx.com
  - Converted to single-spec
* Wed Aug 31 2016 tbechtold@suse.com
  - update to 0.6.2:
    * Added a new system to allow custom plugins specific to the issue of
      "invalidate the entire region", using a new base class
      :class:`.RegionInvalidationStrategy`. As there are many potential
      strategies to this (special backend function, storing special keys, etc.)
      the mechanism for both soft and hard invalidation is now customizable.
      New approaches to region invalidation can be contributed as documented
      recipes.
    * Added a new cache key generator :func:`.kwarg_function_key_generator`,
      which takes keyword arguments as well as positional arguments into
      account when forming the cache key.
    * Restored some more util symbols that users may have been relying upon
      (although these were not necessarily intended as user-facing):
      ``dogpile.cache.util.coerce_string_conf``,
      ``dogpile.cache.util.KeyReentrantMutex``,
      ``dogpile.cache.util.memoized_property``,
      ``dogpile.cache.util.PluginLoader``,
      ``dogpile.cache.util.to_list``.
    * Drop 0001-Link-moved-functions-in-dogpile.cache.util.patch
      applied upstream
* Mon Jul 04 2016 tbechtold@suse.com
  - Use pypi.io for Source url
* Fri Jul 01 2016 tbechtold@suse.com
  - dogpile.core was merged into dogpile.cache .
    See https://gerrit.sqlalchemy.org/#/c/89/
    So dogpile.core is no longer a Require.
  - Add 0001-Link-moved-functions-in-dogpile.cache.util.patch
    For backward compat.
* Tue Jun 07 2016 aloisio@gmx.com
  - Update to version 0.6.1
      bug:
    * Fixed imports for dogpile.core restoring ReadWriteMutex
      and NameRegistry into the base namespace, in addition to
      dogpile.core.nameregistry and dogpile.core.readwrite_lock.
    version 0.6.0
      feature:
    * The dogpile.core library has been rolled in as part of the
      dogpile.cache distribution. The configuration of the
      dogpile name as a namespace package is also removed from
      dogpile.cache. In order to allow existing installations of
      dogpile.core as a separate package to remain unaffected,
      the .core package has been retired within dogpile.cache
      directly; the Lock class is now available directly as
      dogpile.Lock and the additional dogpile.core constructs
      are under the dogpile.util namespace.
      Additionally, the long-deprecated dogpile.core.Dogpile
      and dogpile.core.SyncReaderDogpile classes have been
      removed.
      bug:
    * The Redis backend now creates a copy of the “arguments”
      dictionary passed to it, before popping values out of it.
      This prevents the given dictionary from losing its keys.
    * Fixed bug in “null” backend where NullLock did not accept
      a flag for the NullLock.acquire() method, nor did it return
      a boolean value for “success”.
* Mon Mar 07 2016 tbechtold@suse.com
  - update to 0.5.7:
    * Added new parameter :paramref:`.GenericMemcachedBackend.lock_timeout`,
      used in conjunction with :paramref:`.GenericMemcachedBackend.distributed_lock`,
      will specify the timeout used when communicating to the ``.add()`` method of
      the memcached client.
    * Added a new flag :paramref:`.CacheRegion.configure.replace_existing_backend`,
      allows a region to have a new backend replace an existing one.
    * Test suite now runs using py.test.
    * Repaired the :meth:`.CacheRegion.get_multi` method when used with a
      list of zero length against the redis backend.
* Mon May 04 2015 benoit.monin@gmx.fr
  - update to version 0.5.6:
    * Changed the pickle protocol for the file/DBM backend to
      pickle.HIGHEST_PROTOCOL when producing new pickles, to match
      that of the redis and memorypickle backends. Pull request
      courtesy anentropic.
  - additional changes from version 0.5.5:
    * Added new arguments
      CacheRegion.cache_on_arguments.function_key_generator and
      CacheRegion.cache_multi_on_arguments.function_multi_key_generator
      which serve as per-decorator replacements for the region-wide
      CacheRegion.function_key_generator and
      CacheRegion.function_multi_key_generator parameters,
      respectively, so that custom key production schemes can be
      applied on a per-function basis within one region. Pull request
      courtesy Hongbin Lu.
    * Fixed bug where sending -1 for the
      CacheRegion.get_or_create.expiration_time parameter to
      CacheRegion.get_or_create() or
      CacheRegion.get_or_create_multi() would fail to honor the
      setting as “no expiration time”. Pull request courtesy Hongbin
      Lu.
    * The wrap argument is now propagated when calling
      CacheRegion.configure_from_config(). Pull request courtesy
      Jonathan Vanasco.
    * Fixed tests under py.test, which were importing a symbol from
      pytest itself is_unittest which has been removed.
  - add fdupes as BuildRequires and call it after install
* Mon Sep 15 2014 tbechtold@suse.com
  - Update to version 0.5.4:
    * Added new :class:`.NullBackend`, for testing and cache-disabling
      purposes.  Pull request courtesy Wichert Akkerman.
    * Added missing Mako test dependency to setup.py.
      Pull request courtesy Wichert Akkerman.
    * Fixed bug where calling :meth:`.CacheRegion.get_multi` or
      :meth:`.CacheRegion.set_multi` with an empty list would cause failures
      based on backend.  Pull request courtesy Wichert Akkerman.
    * Added new :paramref:`.RedisBackend.connection_pool` option
      on the Redis backend; this can be passed a ``redis.ConnectionPool``
      instance directly.  Pull request courtesy Masayuko.
    * Added new :paramref:`.RedisBackend.socket_timeout` option
      on the Redis backend.  Pull request courtesy
      Saulius Menkevičius.
    * Added support for tests to run via py.test.
    * Repaired the entry point for Mako templates; the name of the entrypoint
      itself was wrong vs. what was in the docs, but beyond that the entrypoint
      would load the wrong module name.  Pull request courtesy zoomorph.
    * The :func:`.coerce_string_conf` function, which is used by
      :meth:`.Region.configure_from_config`, will now recognize floating point
      values when parsing conf strings and deliver them as such; this supports
      non-integer values such as Redis ``lock_sleep``.  Pullreq courtesy
      Jeff Dairiki.
* Mon Jan 13 2014 dmueller@suse.com
  - update to 0.5.3:
    * Fixed bug where the key_mangler would get in the way of usage of the
    async_creation_runner feature within the :meth:`
* Mon Dec 30 2013 dmueller@suse.com
  - update to 0.5.2:
    * Added a new argument ``lock_factory`` to the :class:`.DBMBackend`
    * implementation.  This allows for drop-in replacement of the default
    * :class:`.FileLock` backend, which builds on ``os.flock()`` and only
    * supports Unix platforms.
* Mon Oct 21 2013 dmueller@suse.com
  - update to 0.5.1:
    * The :meth:`.CacheRegion.invalidate` method now supports an option
    ``hard=True|False``.
    * New dogpile-specific exception classes have been added, so that
    issues like "region already configured", "region unconfigured",
    raise dogpile-specific exceptions.  Other exception classes have
* Mon Sep 02 2013 dmueller@suse.com
  - Initial package (0.5.0)

Files

/usr/lib/python2.7/site-packages/dogpile
/usr/lib/python2.7/site-packages/dogpile.cache-0.6.5-py2.7.egg-info
/usr/lib/python2.7/site-packages/dogpile.cache-0.6.5-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/dogpile.cache-0.6.5-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/dogpile.cache-0.6.5-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/dogpile.cache-0.6.5-py2.7.egg-info/entry_points.txt
/usr/lib/python2.7/site-packages/dogpile.cache-0.6.5-py2.7.egg-info/not-zip-safe
/usr/lib/python2.7/site-packages/dogpile.cache-0.6.5-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/dogpile/__init__.py
/usr/lib/python2.7/site-packages/dogpile/__init__.pyc
/usr/lib/python2.7/site-packages/dogpile/__init__.pyo
/usr/lib/python2.7/site-packages/dogpile/cache
/usr/lib/python2.7/site-packages/dogpile/cache/__init__.py
/usr/lib/python2.7/site-packages/dogpile/cache/__init__.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/__init__.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/api.py
/usr/lib/python2.7/site-packages/dogpile/cache/api.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/api.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/backends
/usr/lib/python2.7/site-packages/dogpile/cache/backends/__init__.py
/usr/lib/python2.7/site-packages/dogpile/cache/backends/__init__.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/backends/__init__.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/backends/file.py
/usr/lib/python2.7/site-packages/dogpile/cache/backends/file.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/backends/file.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/backends/memcached.py
/usr/lib/python2.7/site-packages/dogpile/cache/backends/memcached.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/backends/memcached.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/backends/memory.py
/usr/lib/python2.7/site-packages/dogpile/cache/backends/memory.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/backends/memory.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/backends/null.py
/usr/lib/python2.7/site-packages/dogpile/cache/backends/null.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/backends/null.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/backends/redis.py
/usr/lib/python2.7/site-packages/dogpile/cache/backends/redis.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/backends/redis.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/exception.py
/usr/lib/python2.7/site-packages/dogpile/cache/exception.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/exception.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/plugins
/usr/lib/python2.7/site-packages/dogpile/cache/plugins/__init__.py
/usr/lib/python2.7/site-packages/dogpile/cache/plugins/__init__.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/plugins/__init__.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/plugins/mako_cache.py
/usr/lib/python2.7/site-packages/dogpile/cache/plugins/mako_cache.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/plugins/mako_cache.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/proxy.py
/usr/lib/python2.7/site-packages/dogpile/cache/proxy.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/proxy.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/region.py
/usr/lib/python2.7/site-packages/dogpile/cache/region.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/region.pyo
/usr/lib/python2.7/site-packages/dogpile/cache/util.py
/usr/lib/python2.7/site-packages/dogpile/cache/util.pyc
/usr/lib/python2.7/site-packages/dogpile/cache/util.pyo
/usr/lib/python2.7/site-packages/dogpile/core.py
/usr/lib/python2.7/site-packages/dogpile/core.pyc
/usr/lib/python2.7/site-packages/dogpile/core.pyo
/usr/lib/python2.7/site-packages/dogpile/lock.py
/usr/lib/python2.7/site-packages/dogpile/lock.pyc
/usr/lib/python2.7/site-packages/dogpile/lock.pyo
/usr/lib/python2.7/site-packages/dogpile/util
/usr/lib/python2.7/site-packages/dogpile/util/__init__.py
/usr/lib/python2.7/site-packages/dogpile/util/__init__.pyc
/usr/lib/python2.7/site-packages/dogpile/util/__init__.pyo
/usr/lib/python2.7/site-packages/dogpile/util/compat.py
/usr/lib/python2.7/site-packages/dogpile/util/compat.pyc
/usr/lib/python2.7/site-packages/dogpile/util/compat.pyo
/usr/lib/python2.7/site-packages/dogpile/util/langhelpers.py
/usr/lib/python2.7/site-packages/dogpile/util/langhelpers.pyc
/usr/lib/python2.7/site-packages/dogpile/util/langhelpers.pyo
/usr/lib/python2.7/site-packages/dogpile/util/nameregistry.py
/usr/lib/python2.7/site-packages/dogpile/util/nameregistry.pyc
/usr/lib/python2.7/site-packages/dogpile/util/nameregistry.pyo
/usr/lib/python2.7/site-packages/dogpile/util/readwrite_lock.py
/usr/lib/python2.7/site-packages/dogpile/util/readwrite_lock.pyc
/usr/lib/python2.7/site-packages/dogpile/util/readwrite_lock.pyo
/usr/share/doc/packages/python2-dogpile.cache
/usr/share/doc/packages/python2-dogpile.cache/LICENSE
/usr/share/doc/packages/python2-dogpile.cache/README.rst


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024