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

python2-kazoo-2.7.0-bp153.1.18 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python2-kazoo Distribution: SUSE Linux Enterprise 15 SP3
Version: 2.7.0 Vendor: openSUSE
Release: bp153.1.18 Build date: Sat Mar 6 10:25:35 2021
Group: Development/Languages/Python Build host: old-atreju4
Size: 1233372 Source RPM: python-kazoo-2.7.0-bp153.1.18.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/python-zk/kazoo
Summary: Higher Level Zookeeper Client
Implements a higher level API to Apache Zookeeper for Python clients.

Provides

Requires

License

Apache-2.0

Changelog

* Mon Mar 30 2020 Dirk Mueller <dmueller@suse.com>
  - downgrade pure-sasl dependency to suggests, as it requires
    kerberos which conflicts with pykerberos (needed by requests)
    and the code handles this as optional dependency
* Mon Mar 16 2020 Dirk Mueller <dmueller@suse.com>
  - add dependency on pure-sasl, move python 2.x deps inside a conditional
* Mon Mar 16 2020 Dirk Mueller <dmueller@suse.com>
  - update to 2.7.0:
    * *core:**
    * run SASL Kerberos tests as part of build
    * Add create2 support
    * closed states instead of lost states (#573)
    * *recipe:**  add support for curator SharedCount recipe (#559)
    * *core:**
    * allow requests to be queued in CONNECTING state (#374) (#588)
    * when connection fails, close the ConnectionHandler (#577) (#579)
    * *tests:**
    * Disable JAAS isInitiator for Server
    * deactivate TCP port that was enabled by default.
    * capitalize the default_domain value
    * prefix with toxinidir variable with a / to ensure path to ensure-zookeeper-env.sh is correct
    * specify -Dfile.encoding=UTF-8 when starting the ZK JVM
* Mon Apr 08 2019 pgajdos@suse.com
  - version update to 2.5.1
    * *client:**  add missing paren (#550)
    * *core:** support deprecated KazooRetry argument (#545)
    * *core:** reduce timeout for the first Connect() request (#540)
    * *handlers:**  make AsyncResult call all registered callbacks
      instantly if the handler has stopped running (#549)
    * *recipe:** No more memory leak when ChildrenWatch was stopped (#543)
    * *recipe:** No more memory leak once TreeCache was closed (#524)
* Thu Nov 01 2018 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 2.5.0:
    * Various fixes for gevent and python 3.7
  - Fix homepage
* Tue Aug 22 2017 tbechtold@suse.com
  - update to 2.4.0:
    * add missed parens to LockingQueue function call.
    * revert PR #305 SetWatches which caused RuntimeError
    * pep8 all the things
    * drop Python 2.6/3.3 official support, add 3.5/3.6 testing
    * allow multiple endpoints in KazooClient hosts arg
    * use epoll when available to support fds > 1023
    * Add TreeCache recipe
    * update MANIFEST.in to reflect changes to filenames
    * add travis deployment and update ZK versions
    * allow having observers and different sized clusters
    * fully resolve multiple records for hosts in the zookeeper
      connection string
    * Fix the recipe examples, so they actually work by connecting to
      ZooKeeper. Without start() they just hang and can't be killed.
* Thu Sep 29 2016 dmueller@suse.com
  - update to 2.2.1:
    * Issue #234: Add support for reconfig cluster membership operation
    * Start running tests against Zookeeper 3.5.0 alpha and explicitly configure
      the `admin.serverPort` in tests to avoid port conflicts. The Zookeeper
      alpha version is not yet officially supported.
    * Integrate eventlet *handler* support into kazoo so that along with [gevent,
      threading] handlers there can now be a dedicated eventlet handler for
      projects that need to (or want to) use eventlet (such as those working
      in the openstack community). The ``requirements_eventlet.txt`` file lists
      the optional eventlet requirement(s) that needs to be satisfied when this
      new handler is used.
    * Use ``six`` to nicely handle the cross compatibility of kazoo with
      python 2.x and 3.x (reducing/removing the need to have custom compatibility
      code that replicates what six already provides).
    * Add ``state_change_event`` to ``kazoo.recipe.partitioner.SetPartitioner``
      which is set on every state change.
    * Add a NonBlockingLease recipe.  The recipe allows e.g. cron jobs scheduled
      on multiple machines to ensure that at most N instances will run a particular
      job, with lease timeout for graceful handover in case of node failures.
* Mon Sep 15 2014 tbechtold@suse.com
  - update to version 2.0
    * Extend support to Python 3.4, deprecating Python 3.2.
    * Issue #198: Mention Zake as a sophisticated kazoo mock testing library.
    * Issue #181: Add documentation on basic logging setup.
    * Null or None data is no longer treated as "". Pull req #165, patch by
      Raul Gutierrez S. This will affect how you should treat null data in a
      znode vs. an empty string.
    * Passing acl=[] to create() now works properly instead of an InvalidACLError
      as it returned before. Patch by Raul Gutierrez S in PR #164.
    * Removed the dependency on zope.interface. The classes in the interfaces
      module are left for documentation purposes only (issue #131).
    * Logging levels have been reduced.
      + Logging previously at the ``logging.DEBUG`` level is now logged at
      the ``kazoo.loggingsupport.BLATHER`` level (5).
      + Some low-level logging previously at the ``logging.INFO`` level is
      now logged at the ``logging.DEBUG`` level.
    * Issue #133: Introduce a new environment variable `ZOOKEEPER_PORT_OFFSET`
      for the testing support, to run the testing cluster on a different range.
    * When authenticating via add_auth() the auth data will be saved to ensure that
      the authentication happens on reconnect (as is the case when feeding auth
      data via KazooClient's constructor). PR #172, patch by Raul Gutierrez S.
    * Change gevent import to remove deprecation warning when newer gevent is
      used. PR #191, patch by Hiroaki Kawai.
    * Lock recipe was failing to use the client's sleep_func causing issues with
      gevent. Issue #150.
    * Calling a DataWatch or ChildrenWatch instance twice (decorator) now throws
      an exception as only a single function can be associated with a single
      watcher. Issue #154.
    * Another fix for atexit handling so that when disposing of connections the
      atexit handler is removed. PR #190, patch by Devaev Maxim.
    * Fix atexit handling for kazoo threading handler, PR #183. Patch by
      Brian Wickman.
    * Partitioner should handle a suspended connection properly and restore
      an allocated state if it was allocated previously. Patch by Manish Tomar.
    * Issue #167: Closing a client that was never started throws a type error.
      Patch by Joshua Harlow.
    * Passing dictionaries to KazooClient.__init__() wasn't actually working
      properly. Patch by Ryan Uber.
    * Issue #119: Handler timeout takes the max of the random interval or
      the read timeout to ensure a negative number isn't used for the read
      timeout.
    * Fix ordering of exception catches in lock.acquire as it was capturing a
      parent exception before the child. Patch by ReneSac.
    * Fix issue with client.stop() not always setting the client state to
      KeeperState.CLOSED. Patch by Jyrki Pulliainen in PR #174.
    * Issue #169: Fixed pipes leaking into child processes.
    * Add section on contributing recipes, add maintainer/status information for
      existing recipes.
    * Add note about alternate use of DataWatch.
  - Remove Require python-zope.interfaces
* Wed Apr 02 2014 speilicke@suse.com
  - Initial version

Files

/usr/lib/python2.7/site-packages/kazoo
/usr/lib/python2.7/site-packages/kazoo-2.7.0-py2.7.egg-info
/usr/lib/python2.7/site-packages/kazoo-2.7.0-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/kazoo-2.7.0-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/kazoo-2.7.0-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/kazoo-2.7.0-py2.7.egg-info/not-zip-safe
/usr/lib/python2.7/site-packages/kazoo-2.7.0-py2.7.egg-info/requires.txt
/usr/lib/python2.7/site-packages/kazoo-2.7.0-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/kazoo/__init__.py
/usr/lib/python2.7/site-packages/kazoo/__init__.pyc
/usr/lib/python2.7/site-packages/kazoo/__init__.pyo
/usr/lib/python2.7/site-packages/kazoo/client.py
/usr/lib/python2.7/site-packages/kazoo/client.pyc
/usr/lib/python2.7/site-packages/kazoo/client.pyo
/usr/lib/python2.7/site-packages/kazoo/exceptions.py
/usr/lib/python2.7/site-packages/kazoo/exceptions.pyc
/usr/lib/python2.7/site-packages/kazoo/exceptions.pyo
/usr/lib/python2.7/site-packages/kazoo/handlers
/usr/lib/python2.7/site-packages/kazoo/handlers/__init__.py
/usr/lib/python2.7/site-packages/kazoo/handlers/__init__.pyc
/usr/lib/python2.7/site-packages/kazoo/handlers/__init__.pyo
/usr/lib/python2.7/site-packages/kazoo/handlers/eventlet.py
/usr/lib/python2.7/site-packages/kazoo/handlers/eventlet.pyc
/usr/lib/python2.7/site-packages/kazoo/handlers/eventlet.pyo
/usr/lib/python2.7/site-packages/kazoo/handlers/gevent.py
/usr/lib/python2.7/site-packages/kazoo/handlers/gevent.pyc
/usr/lib/python2.7/site-packages/kazoo/handlers/gevent.pyo
/usr/lib/python2.7/site-packages/kazoo/handlers/threading.py
/usr/lib/python2.7/site-packages/kazoo/handlers/threading.pyc
/usr/lib/python2.7/site-packages/kazoo/handlers/threading.pyo
/usr/lib/python2.7/site-packages/kazoo/handlers/utils.py
/usr/lib/python2.7/site-packages/kazoo/handlers/utils.pyc
/usr/lib/python2.7/site-packages/kazoo/handlers/utils.pyo
/usr/lib/python2.7/site-packages/kazoo/hosts.py
/usr/lib/python2.7/site-packages/kazoo/hosts.pyc
/usr/lib/python2.7/site-packages/kazoo/hosts.pyo
/usr/lib/python2.7/site-packages/kazoo/interfaces.py
/usr/lib/python2.7/site-packages/kazoo/interfaces.pyc
/usr/lib/python2.7/site-packages/kazoo/interfaces.pyo
/usr/lib/python2.7/site-packages/kazoo/loggingsupport.py
/usr/lib/python2.7/site-packages/kazoo/loggingsupport.pyc
/usr/lib/python2.7/site-packages/kazoo/loggingsupport.pyo
/usr/lib/python2.7/site-packages/kazoo/protocol
/usr/lib/python2.7/site-packages/kazoo/protocol/__init__.py
/usr/lib/python2.7/site-packages/kazoo/protocol/__init__.pyc
/usr/lib/python2.7/site-packages/kazoo/protocol/__init__.pyo
/usr/lib/python2.7/site-packages/kazoo/protocol/connection.py
/usr/lib/python2.7/site-packages/kazoo/protocol/connection.pyc
/usr/lib/python2.7/site-packages/kazoo/protocol/connection.pyo
/usr/lib/python2.7/site-packages/kazoo/protocol/paths.py
/usr/lib/python2.7/site-packages/kazoo/protocol/paths.pyc
/usr/lib/python2.7/site-packages/kazoo/protocol/paths.pyo
/usr/lib/python2.7/site-packages/kazoo/protocol/serialization.py
/usr/lib/python2.7/site-packages/kazoo/protocol/serialization.pyc
/usr/lib/python2.7/site-packages/kazoo/protocol/serialization.pyo
/usr/lib/python2.7/site-packages/kazoo/protocol/states.py
/usr/lib/python2.7/site-packages/kazoo/protocol/states.pyc
/usr/lib/python2.7/site-packages/kazoo/protocol/states.pyo
/usr/lib/python2.7/site-packages/kazoo/python2atexit.py
/usr/lib/python2.7/site-packages/kazoo/python2atexit.pyc
/usr/lib/python2.7/site-packages/kazoo/python2atexit.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe
/usr/lib/python2.7/site-packages/kazoo/recipe/__init__.py
/usr/lib/python2.7/site-packages/kazoo/recipe/__init__.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/__init__.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/barrier.py
/usr/lib/python2.7/site-packages/kazoo/recipe/barrier.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/barrier.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/cache.py
/usr/lib/python2.7/site-packages/kazoo/recipe/cache.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/cache.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/counter.py
/usr/lib/python2.7/site-packages/kazoo/recipe/counter.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/counter.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/election.py
/usr/lib/python2.7/site-packages/kazoo/recipe/election.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/election.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/lease.py
/usr/lib/python2.7/site-packages/kazoo/recipe/lease.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/lease.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/lock.py
/usr/lib/python2.7/site-packages/kazoo/recipe/lock.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/lock.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/partitioner.py
/usr/lib/python2.7/site-packages/kazoo/recipe/partitioner.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/partitioner.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/party.py
/usr/lib/python2.7/site-packages/kazoo/recipe/party.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/party.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/queue.py
/usr/lib/python2.7/site-packages/kazoo/recipe/queue.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/queue.pyo
/usr/lib/python2.7/site-packages/kazoo/recipe/watchers.py
/usr/lib/python2.7/site-packages/kazoo/recipe/watchers.pyc
/usr/lib/python2.7/site-packages/kazoo/recipe/watchers.pyo
/usr/lib/python2.7/site-packages/kazoo/retry.py
/usr/lib/python2.7/site-packages/kazoo/retry.pyc
/usr/lib/python2.7/site-packages/kazoo/retry.pyo
/usr/lib/python2.7/site-packages/kazoo/security.py
/usr/lib/python2.7/site-packages/kazoo/security.pyc
/usr/lib/python2.7/site-packages/kazoo/security.pyo
/usr/lib/python2.7/site-packages/kazoo/testing
/usr/lib/python2.7/site-packages/kazoo/testing/__init__.py
/usr/lib/python2.7/site-packages/kazoo/testing/__init__.pyc
/usr/lib/python2.7/site-packages/kazoo/testing/__init__.pyo
/usr/lib/python2.7/site-packages/kazoo/testing/common.py
/usr/lib/python2.7/site-packages/kazoo/testing/common.pyc
/usr/lib/python2.7/site-packages/kazoo/testing/common.pyo
/usr/lib/python2.7/site-packages/kazoo/testing/harness.py
/usr/lib/python2.7/site-packages/kazoo/testing/harness.pyc
/usr/lib/python2.7/site-packages/kazoo/testing/harness.pyo
/usr/lib/python2.7/site-packages/kazoo/tests
/usr/lib/python2.7/site-packages/kazoo/tests/__init__.py
/usr/lib/python2.7/site-packages/kazoo/tests/__init__.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/__init__.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_barrier.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_barrier.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_barrier.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_build.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_build.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_build.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_cache.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_cache.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_cache.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_client.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_client.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_client.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_connection.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_connection.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_connection.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_counter.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_counter.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_counter.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_election.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_election.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_election.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_eventlet_handler.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_eventlet_handler.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_eventlet_handler.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_exceptions.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_exceptions.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_exceptions.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_gevent_handler.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_gevent_handler.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_gevent_handler.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_hosts.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_hosts.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_hosts.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_interrupt.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_interrupt.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_interrupt.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_lease.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_lease.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_lease.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_lock.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_lock.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_lock.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_partitioner.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_partitioner.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_partitioner.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_party.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_party.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_party.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_paths.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_paths.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_paths.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_queue.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_queue.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_queue.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_retry.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_retry.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_retry.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_sasl.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_sasl.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_sasl.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_security.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_security.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_security.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_threading_handler.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_threading_handler.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_threading_handler.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_utils.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_utils.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_utils.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/test_watchers.py
/usr/lib/python2.7/site-packages/kazoo/tests/test_watchers.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/test_watchers.pyo
/usr/lib/python2.7/site-packages/kazoo/tests/util.py
/usr/lib/python2.7/site-packages/kazoo/tests/util.pyc
/usr/lib/python2.7/site-packages/kazoo/tests/util.pyo
/usr/lib/python2.7/site-packages/kazoo/version.py
/usr/lib/python2.7/site-packages/kazoo/version.pyc
/usr/lib/python2.7/site-packages/kazoo/version.pyo
/usr/share/doc/packages/python2-kazoo
/usr/share/doc/packages/python2-kazoo/README.md
/usr/share/licenses/python2-kazoo
/usr/share/licenses/python2-kazoo/LICENSE


Generated by rpm2html 1.8.1

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