forked from pool/python-kazoo
- 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. OBS-URL: https://build.opensuse.org/request/show/518136 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kazoo?expand=0&rev=7
66 lines
1.9 KiB
RPMSpec
66 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package python-kazoo
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-kazoo
|
|
Version: 2.4.0
|
|
Release: 0
|
|
Summary: Higher Level Zookeeper Client
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/yahoo/Zake
|
|
Source: https://files.pythonhosted.org/packages/source/k/kazoo/kazoo-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: unzip
|
|
Requires: python-six
|
|
# Test requirements:
|
|
#BuildRequires: python-gevent
|
|
#BuildRequires: python-mock
|
|
#BuildRequires: python-coverage
|
|
#BuildRequires: python-nose
|
|
#BuildRequires: python-nose
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
Implements a higher level API to Apache Zookeeper for Python clients.
|
|
|
|
%prep
|
|
%setup -q -n kazoo-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
|
|
#NOTE(saschpe): Currently require a running Zookeeper instance:
|
|
#%%check
|
|
#python setup.py test
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE README.md
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|