forked from pool/python-py7zr
- Remove bogus unmaintained pyannotate test dependency * Add py7zr-remove-pyannotate.patch gh#miurahr/py7zr#552 OBS-URL: https://build.opensuse.org/request/show/1147132 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-py7zr?expand=0&rev=18
109 lines
3.4 KiB
RPMSpec
109 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package python-py7zr
|
|
#
|
|
# Copyright (c) 2024 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/
|
|
#
|
|
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-py7zr%{psuffix}
|
|
Version: 0.20.8
|
|
Release: 0
|
|
Summary: Library and utility to support 7zip
|
|
License: LGPL-2.1-or-later
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/miurahr/py7zr
|
|
Source0: https://files.pythonhosted.org/packages/source/p/py7zr/py7zr-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM py7zr-remove-pyannotate.patch gh#miurahr/py7zr#552
|
|
Patch0: https://github.com/miurahr/py7zr/pull/552.patch#/py7zr-remove-pyannotate.patch
|
|
BuildRequires: %{python_module base >= 3.7}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools >= 63}
|
|
BuildRequires: %{python_module setuptools_scm >= 7.0.5}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Brotli >= 1.1.0
|
|
Requires: python-multivolumefile >= 0.2.3
|
|
Requires: python-psutil
|
|
Requires: python-pycryptodomex >= 3.16.0
|
|
Requires: python-pyzstd >= 0.15.9
|
|
Requires: python-texttable
|
|
Requires: (python-inflate64 >= 1.0.0 with python-inflate64 < 1.1.0)
|
|
Requires: (python-pybcj >= 1.0.0 with python-pybcj < 1.1.0)
|
|
Requires: (python-pyppmd >= 1.1.0 with python-pyppmd < 1.2.0)
|
|
%if 0%{?python_version_nodots} < 38
|
|
Requires: python-importlib_metadata
|
|
%endif
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
%if %{with test}
|
|
BuildRequires: %{python_module py-cpuinfo}
|
|
BuildRequires: %{python_module py7zr = %{version}}
|
|
BuildRequires: %{python_module pytest-benchmark}
|
|
BuildRequires: %{python_module pytest-remotedata}
|
|
BuildRequires: %{python_module pytest-timeout}
|
|
BuildRequires: %{python_module pytest}
|
|
%endif
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
py7zr is a library and utility to support 7zip archive compression, decompression, encryption and decryption written by Python programming language.
|
|
|
|
%prep
|
|
%autosetup -p1 -n py7zr-%{version}
|
|
# remove shebangs from source
|
|
sed -i '1{/#!/d}' py7zr/*.py
|
|
|
|
%if !%{with test}
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_clone -a %{buildroot}%{_bindir}/py7zr
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%endif
|
|
|
|
%if %{with test}
|
|
%check
|
|
%pytest
|
|
%endif
|
|
|
|
%post
|
|
%python_install_alternative py7zr
|
|
|
|
%postun
|
|
%python_uninstall_alternative py7zr
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.rst docs/Changelog.rst
|
|
%{python_sitelib}/py7zr
|
|
%{python_sitelib}/py7zr-%{version}.dist-info
|
|
%python_alternative %{_bindir}/py7zr
|
|
%endif
|
|
|
|
%changelog
|