forked from pool/python-distributed
111 lines
3.5 KiB
RPMSpec
111 lines
3.5 KiB
RPMSpec
|
#
|
||
|
# spec file for package python-distributed
|
||
|
#
|
||
|
# Copyright (c) 2018 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/
|
||
|
#
|
||
|
|
||
|
|
||
|
# Test requires network connection
|
||
|
%bcond_with test
|
||
|
|
||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||
|
Name: python-distributed
|
||
|
Version: 1.21.0
|
||
|
Release: 0
|
||
|
Summary: Distributed computing
|
||
|
License: BSD-3-Clause
|
||
|
Group: Development/Languages/Python
|
||
|
Url: https://distributed.readthedocs.io/en/latest/
|
||
|
Source: https://files.pythonhosted.org/packages/source/d/distributed/distributed-%{version}.tar.gz
|
||
|
Source99: python-distributed-rpmlintrc
|
||
|
BuildRequires: %{python_module devel}
|
||
|
BuildRequires: %{python_module joblib >= 0.10.2}
|
||
|
BuildRequires: %{python_module scikit-learn >= 0.17.1}
|
||
|
BuildRequires: %{python_module setuptools}
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: python-rpm-macros
|
||
|
BuildRequires: python2-futures
|
||
|
%if %{with test}
|
||
|
BuildRequires: %{python_module certifi}
|
||
|
BuildRequires: %{python_module click >= 6.6}
|
||
|
BuildRequires: %{python_module cloudpickle >= 0.2.2}
|
||
|
BuildRequires: %{python_module dask >= 0.14.1}
|
||
|
BuildRequires: %{python_module msgpack-python}
|
||
|
BuildRequires: %{python_module psutil}
|
||
|
BuildRequires: %{python_module six}
|
||
|
BuildRequires: %{python_module sortedcontainers}
|
||
|
BuildRequires: %{python_module tblib}
|
||
|
BuildRequires: %{python_module toolz >= 0.7.4}
|
||
|
BuildRequires: %{python_module tornado >= 4.4}
|
||
|
BuildRequires: %{python_module zict >= 0.1.2}
|
||
|
%endif
|
||
|
Requires: python-certifi
|
||
|
Requires: python-click >= 6.6
|
||
|
Requires: python-cloudpickle >= 0.2.2
|
||
|
Requires: python-dask >= 0.14.1
|
||
|
Requires: python-joblib >= 0.10.2
|
||
|
Requires: python-msgpack-python
|
||
|
Requires: python-psutil
|
||
|
Requires: python-scikit-learn >= 0.17.1
|
||
|
Requires: python-six
|
||
|
Requires: python-sortedcontainers
|
||
|
Requires: python-tblib
|
||
|
Requires: python-toolz >= 0.7.4
|
||
|
Requires: python-tornado >= 4.4
|
||
|
Requires: python-zict >= 0.1.2
|
||
|
%ifpython2
|
||
|
Requires: python-futures
|
||
|
Requires: python-singledispatch
|
||
|
%endif
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%python_subpackages
|
||
|
|
||
|
%description
|
||
|
A library for distributed computation.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n distributed-%{version}
|
||
|
|
||
|
%build
|
||
|
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
%python_install
|
||
|
%{python_expand chmod a-x %{buildroot}%{$python_sitelib}/distributed/tests/test_utils_test.py
|
||
|
# Deduplicating files can generate a RPMLINT warning for pyc mtime
|
||
|
%fdupes %{buildroot}%{$python_sitelib}
|
||
|
}
|
||
|
|
||
|
%if %{with test}
|
||
|
%check
|
||
|
%python_exec setup.py test
|
||
|
%endif
|
||
|
|
||
|
%files %{python_files}
|
||
|
%defattr(-,root,root,-)
|
||
|
%doc README.rst
|
||
|
%license LICENSE.txt
|
||
|
%python3_only %{_bindir}/dask-ssh
|
||
|
%python3_only %{_bindir}/dask-submit
|
||
|
%python3_only %{_bindir}/dask-remote
|
||
|
%python3_only %{_bindir}/dask-scheduler
|
||
|
%python3_only %{_bindir}/dask-worker
|
||
|
%python3_only %{_bindir}/dask-mpi
|
||
|
%{python_sitelib}/*
|
||
|
|
||
|
%changelog
|