15
0
forked from pool/python-ZEO
Files
python-ZEO/python-ZEO.spec
Tomáš Chvátal 9fefe36a08 - Change url to match up with upstream
- Update to release 5.2.0:
  * Fixed: The quickstart/ad-hoc/play ZEO server relied on test
    dependencies. See `issue 105
    <https://github.com/zopefoundation/ZEO/issues/105>`_.
  * Disallow passing strings as addresses to ClientStorage under Windows
    because string addresses are used for unix-domain sockets, which
    aren't supported on Windows. See `issue 107
    <https://github.com/zopefoundation/ZEO/issues/107>`_.
  * Renamed all ``async`` attributes to ``async_`` for compatibility
    with Python 3.7. See `issue 104
    <https://github.com/zopefoundation/ZEO/issues/104>`_.
  * Fixed to work with some changes made in ZODB 5.4.0.
    Client-side updates are incuded for ZODB 5.4.0 or databases that
    already had ``zodbpickle.binary`` OIDs. See `issue 113
    <https://github.com/zopefoundation/ZEO/issues/113>`_.
  * ZEO now uses pickle protocol 3 for both Python 2 and Python 3.
    (Previously protocol 1 was used for Python 2.) This matches the
    change in ZODB 5.4.0.
- Drop the docs as they are present on web and fail to build with
  current sphinx

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ZEO?expand=0&rev=13
2018-05-02 08:40:55 +00:00

121 lines
3.7 KiB
RPMSpec

#
# spec file for package python-ZEO
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2013 LISA GmbH, Bingen, 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-%{**}}
%define oldpython python
%bcond_without test
Name: python-ZEO
Version: 5.2.0
Release: 0
Summary: Client-Server storage implementation for ZODB
License: ZPL-2.1
Group: Development/Languages/Python
URL: https://pypi.org/project/ZEO/
Source: https://files.pythonhosted.org/packages/source/Z/ZEO/ZEO-%{version}.tar.gz
Source99: %{name}-rpmlintrc
BuildRequires: %{python_module ZConfig}
BuildRequires: %{python_module ZODB >= 5.1.1}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-ZConfig
Requires: python-ZODB >= 5.1.1
Requires: python-persistent >= 4.1.0
Requires: python-six
Requires: python-transaction
Requires: python-zc.lockfile
Requires: python-zdaemon
Requires: python-zope.interface
Requires(post): update-alternatives
Requires(preun): update-alternatives
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module manuel}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module msgpack}
BuildRequires: %{python_module random2}
BuildRequires: %{python_module zodbpickle >= 0.6.0}
BuildRequires: %{python_module zope.testing}
BuildRequires: %{python_module zope.testrunner}
BuildRequires: python-futures
BuildRequires: python-trollius
%endif
%ifpython2
Requires: %{oldpython}-trollius
%endif
%python_subpackages
%description
ZEO provides a client-server storage implementation for ZODB.
%package -n %{name}-doc
Summary: Client-Server storage implementation for ZODB
Group: Development/Languages/Python
Provides: %{python_module ZEO-doc = %{version}}
%description -n %{name}-doc
This package contains documentation files for %{name}.
%prep
%setup -q -n ZEO-%{version}
# delete backup files
find . -name "*~" -print -delete
# remove unwanted shebang
find src -name "*.py" | xargs sed -i '1 { /^#!/ d }'
rm -rf src/ZEO.egg-info
# remove wrong module name, renamed upstream
sed -i -e 's:msgpack-python:msgpack:' setup.py
%build
%python_build
%install
%python_install
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
%python_clone -a %{buildroot}%{_bindir}/runzeo
%python_clone -a %{buildroot}%{_bindir}/zeoctl
%python_clone -a %{buildroot}%{_bindir}/zeopack
%python_clone -a %{buildroot}%{_bindir}/zeo-nagios
%if %{with test}
%check
%python_exec setup.py test
%endif
%post
%python_install_alternative runzeo zeoctl zeopack zeo-nagios
%postun
%python_uninstall_alternative runzeo
%files %{python_files}
%license LICENSE.txt
%doc CHANGES.rst COPYRIGHT.txt README.rst
%python_alternative %{_bindir}/runzeo
%python_alternative %{_bindir}/zeoctl
%python_alternative %{_bindir}/zeopack
%python_alternative %{_bindir}/zeo-nagios
%{python_sitelib}/ZEO
%{python_sitelib}/ZEO-%{version}-py%{python_version}.egg-info
%changelog