forked from pool/python-rpmfile
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rpmfile?expand=0&rev=9
93 lines
2.6 KiB
RPMSpec
93 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-rpmfile
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%if 0%{?suse_version} > 1500
|
|
%bcond_without libalternatives
|
|
%else
|
|
%bcond_with libalternatives
|
|
%endif
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-rpmfile
|
|
Version: 2.1.0
|
|
Release: 0
|
|
Summary: Python module to read rpm files
|
|
License: MIT
|
|
URL: https://github.com/srossross/rpmfile
|
|
Source: https://files.pythonhosted.org/packages/source/r/rpmfile/rpmfile-%{version}.tar.gz
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools_scm}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
%if %{with libalternatives}
|
|
Requires: alts
|
|
BuildRequires: alts
|
|
%else
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
%endif
|
|
Recommends: python-zstandard >= 0.13.0
|
|
Conflicts: rpmdevtools
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module zstandard >= 0.13.0}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Tools for inspecting RPM files in python. This module is modeled after the tarfile module.
|
|
|
|
%prep
|
|
%autosetup -p1 -n rpmfile-%{version}
|
|
sed -i '1{/#!/d}' rpmfile/cpiofile.py
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_clone -a %{buildroot}%{_bindir}/rpmfile
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%python_group_libalternatives rpmfile
|
|
|
|
%pre
|
|
%python_libalternatives_reset_alternative rpmfile
|
|
|
|
%post
|
|
%python_install_alternative rpmfile
|
|
|
|
%postun
|
|
%python_uninstall_alternative rpmfile
|
|
|
|
%check
|
|
# https://github.com/srossross/rpmfile/issues/35
|
|
# test_extract depend on github.com
|
|
%pytest -k 'not (test_extract or test_info or test_list)'
|
|
|
|
%files %{python_files}
|
|
%doc README.md
|
|
%license LICENSE
|
|
%python_alternative %{_bindir}/rpmfile
|
|
%{python_sitelib}/rpmfile
|
|
%{python_sitelib}/rpmfile-%{version}.dist-info
|
|
|
|
%changelog
|