python-mrcz/python-mrcz.spec
Tomáš Chvátal 8ecc0e08e3 Accepting request 802790 from home:andythe_great
- Remove not building for python2.
- Add dependencies required for building with python 2.

There seems to be an issue not recognizing python-blosc, could it be that it mrcz need higher version of blosc?

OBS-URL: https://build.opensuse.org/request/show/802790
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mrcz?expand=0&rev=1
2020-05-12 08:25:24 +00:00

76 lines
2.3 KiB
RPMSpec

#
# spec file for package python-mrcz
#
# Copyright (c) 2020 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-mrcz
Version: 0.5.6
Release: 0
Summary: MRCZ meta-compressed image file-format library
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/em-MRCZ/python-mrcz
Source: https://github.com/em-MRCZ/python-mrcz/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: %{python_module blosc}
BuildRequires: %{python_module numpy}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
%if 0%{?suse_version} <= 1510
BuildRequires: python-enum34
BuildRequires: python-futures
%endif
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python3-numpy
Requires: python3-blosc
%if 0%{?suse_version} <= 1510
Requires: python-enum34
Requires: python-futures
%endif
BuildArch: noarch
%python_subpackages
%description
mrcz is a package designed to supplement the venerable MRC image file
format with a highly efficient compressed variant, using the blosc
meta-compressor library to shrink files on disk and greatly accelerate
file input/output for the era of "Big Data" in electron and optical
microscopy.
%prep
%setup -q
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc AUTHORS.txt README.rst
%license LICENSE.txt
%dir %{python_sitelib}/mrcz/
%pycache_only %{python_sitelib}/mrcz-%{version}-py%{python_version}.egg-info/
%pycache_only %{python_sitelib}/mrcz/*.py
%pycache_only %{python_sitelib}/mrcz/__pycache__/
%changelog