%if 0%{?fedora} || 0%{?rhel} >= 9 %bcond_without pyproject %bcond_with python2 %bcond_with python3 %else %bcond_with pyproject %if 0%{?rhel} > 7 %bcond_with python2 %bcond_without python3 %else %bcond_without python2 %bcond_with python3 %endif %endif %bcond_without check %global sum() Build manual page from %* ArgumentParser object %global desc \ Generate manual page an automatic way from ArgumentParser object, so the \ manpage 1:1 corresponds to the automatically generated --help output. The \ manpage generator needs to known the location of the object, user can \ specify that by (a) the module name or corresponding python filename and \ (b) the object name or the function name which returns the object. \ There is a limited support for (deprecated) optparse objects, too. Name: argparse-manpage Version: 4.5 Release: git.20240523_064603%{?dist} Summary: %{sum Python} BuildArch: noarch License: Apache-2.0 URL: https://github.com/praiskup/%{name} Source0: https://github.com/praiskup/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz %if %{with python2} BuildRequires: python2-setuptools python2-devel BuildRequires: python2-packaging BuildRequires: python2-toml %if %{with check} %if 0%{?rhel} && 0%{?rhel} == 7 BuildRequires: pytest %else BuildRequires: python2-pytest %endif %endif %endif %if %{with python3} BuildRequires: python3-setuptools python3-devel BuildRequires: python3-packaging BuildRequires: python3-tomli %if %{with check} BuildRequires: python3-pytest %endif %endif %if %{with pyproject} BuildRequires: python3-devel # EL9 needs this explicitly BuildRequires: pyproject-rpm-macros %if %{with check} BuildRequires: python3-pytest %endif %endif %if %{with python3} || %{with pyproject} Requires: python3-%name = %version-%release %else Requires: python2-%name = %version-%release %endif %description %desc %package -n python2-%name Summary: %{sum Python 2} Requires: python2-setuptools Requires: python2-toml %description -n python2-%name %{desc} %package -n python3-%name Summary: %{sum Python 3} %if %{without pyproject} Requires: python3-setuptools %endif %description -n python3-%name %{desc} %if %{with pyproject} %pyproject_extras_subpkg -n python3-%{name} setuptools %endif %prep %setup -q %if %{with pyproject} %generate_buildrequires %pyproject_buildrequires %endif %build %if %{with python2} %py2_build %endif %if %{with python3} %py3_build %endif %if %{with pyproject} %pyproject_wheel %endif %install %if %{with python2} %py2_install %endif %if %{with python3} %py3_install %endif %if %{with pyproject} %pyproject_install %endif %if %{with check} %check %if %{with python2} PYTHONPATH=%buildroot%python2_sitearch %__python2 -m pytest -vv %endif %if %{with python3} PYTHONPATH=%buildroot%python3_sitearch %__python3 -m pytest -vv %endif %if %{with pyproject} %pytest -vv %endif %endif %files %license LICENSE %{_bindir}/argparse-manpage %_mandir/man1/argparse-manpage.1.* %if %{with python3} || %{with pyproject} %python3_sitelib/argparse_manpage/cli.py %else %python2_sitelib/argparse_manpage/cli.py %endif %if %{with python2} %files -n python2-%name %license LICENSE %python2_sitelib/build_manpages %python2_sitelib/argparse_manpage %python2_sitelib/argparse_manpage-%{version}*.egg-info %exclude %python2_sitelib/argparse_manpages/cli.py %endif %if %{with python3} || %{with pyproject} %files -n python3-%name %license LICENSE %python3_sitelib/build_manpages %python3_sitelib/argparse_manpage %if %{with pyproject} %python3_sitelib/argparse_manpage-*dist-info %else %python3_sitelib/argparse_manpage-%{version}*.egg-info %endif %exclude %python3_sitelib/argparse_manpage/cli.py %endif %changelog * Thu May 23 2024 Pavel Raiskup - 4.5-git.20240523_064603 - built from upstream, changelog ignored