d230191b31
%pyproject_buildrequires already handles requests. toml is obsolete; tomli is required only for python<3.11 (RHEL 9 at this point).
59 lines
1.6 KiB
RPMSpec
59 lines
1.6 KiB
RPMSpec
%global pypi_name podman
|
|
%global desc %{pypi_name} is a library of bindings to use the RESTful API for Podman.
|
|
|
|
%global pypi_dist 4
|
|
%global built_tag v4.5.1
|
|
%global built_tag_strip %(b=%{built_tag}; echo ${b:1})
|
|
%global gen_version %(b=%{built_tag_strip}; echo ${b/-/"~"})
|
|
|
|
Name: python-%{pypi_name}
|
|
Epoch: 3
|
|
Version: %{gen_version}
|
|
License: Apache-2.0
|
|
Release: %autorelease
|
|
Summary: RESTful API for Podman
|
|
URL: https://github.com/containers/%{pypi_name}-py
|
|
# Tarball fetched from upstream
|
|
Source0: %{url}/archive/%{built_tag}.tar.gz
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
%desc
|
|
|
|
%package -n python%{python3_pkgversion}-%{pypi_name}
|
|
BuildRequires: git-core
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
BuildRequires: pyproject-rpm-macros
|
|
Provides: %{pypi_name}-py = %{version}-%{release}
|
|
Provides: python%{python3_pkgversion}dist(%{pypi_name}) = %{pypi_dist}
|
|
Provides: python%{python3_version}dist(%{pypi_name}) = %{pypi_dist}
|
|
Obsoletes: python%{python3_pkgversion}-%{pypi_name}-api <= 0.0.0-1
|
|
Provides: python%{python3_pkgversion}-%{pypi_name}-api = %{epoch}:%{version}-%{release}
|
|
Summary: %{summary}
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
|
|
|
|
%description -n python%{python3_pkgversion}-%{pypi_name}
|
|
%desc
|
|
|
|
%prep
|
|
%autosetup -Sgit -n %{pypi_name}-py-%{built_tag_strip}
|
|
|
|
%generate_buildrequires
|
|
%pyproject_buildrequires %{?with_tests:-t}
|
|
|
|
%build
|
|
export PBR_VERSION="0.0.0"
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
export PBR_VERSION="0.0.0"
|
|
%pyproject_install
|
|
%pyproject_save_files %{pypi_name}
|
|
|
|
%files -n python%{python3_pkgversion}-%{pypi_name} -f %{pyproject_files}
|
|
%license LICENSE
|
|
%doc README.md
|
|
|
|
%changelog
|
|
%autochangelog
|