Conditionalize docs

python-furo is not available in RHEL.
This commit is contained in:
Yaakov Selkowitz 2024-01-04 14:08:02 -05:00
parent ebb0d39922
commit 6f18bfaa97

View File

@ -1,6 +1,8 @@
%bcond docs %{undefined rhel}
Name: python-netaddr Name: python-netaddr
Version: 0.10.1 Version: 0.10.1
Release: 1%{?dist} Release: 2%{?dist}
Summary: A pure Python network address representation and manipulation library Summary: A pure Python network address representation and manipulation library
License: BSD-3-Clause License: BSD-3-Clause
@ -10,8 +12,10 @@ Source0: https://pypi.python.org/packages/source/n/netaddr/netaddr-%{vers
Source1: THANKS Source1: THANKS
BuildArch: noarch BuildArch: noarch
%if %{with docs}
BuildRequires: python3-sphinx BuildRequires: python3-sphinx
BuildRequires: python3-furo BuildRequires: python3-furo
%endif
%global desc A network address manipulation library for Python\ %global desc A network address manipulation library for Python\
\ \
@ -45,7 +49,6 @@ Summary: A pure Python network address representation and manipulation library
BuildRequires: python3-devel BuildRequires: python3-devel
BuildRequires: python3-setuptools BuildRequires: python3-setuptools
BuildRequires: python3-sphinx
BuildRequires: python3-pytest BuildRequires: python3-pytest
%description -n python3-netaddr %description -n python3-netaddr
@ -78,10 +81,12 @@ mv %{SOURCE1} .
%py3_build %py3_build
#docs #docs
%if %{with docs}
pushd docs pushd docs
PYTHONPATH='../' sphinx-build-%{python3_version} -b html -d build/doctrees source python3/html PYTHONPATH='../' sphinx-build-%{python3_version} -b html -d build/doctrees source python3/html
rm -f python3/html/.buildinfo rm -f python3/html/.buildinfo
popd popd
%endif
%install %install
@ -93,14 +98,19 @@ py.test-%{python3_version}
%files -n python3-netaddr %files -n python3-netaddr
%license COPYRIGHT %license COPYRIGHT
%doc AUTHORS CHANGELOG %doc AUTHORS CHANGELOG README.rst
%doc README.rst docs/python3/html %if %{with docs}
%doc docs/python3/html
%endif
%{python3_sitelib}/* %{python3_sitelib}/*
%files -n python3-netaddr-shell %files -n python3-netaddr-shell
%{_bindir}/netaddr %{_bindir}/netaddr
%changelog %changelog
* Thu Jan 04 2024 Yaakov Selkowitz <yselkowi@redhat.com> - 0.10.1-2
- Conditionalize docs
* Wed Jan 3 2024 John Eckersberg <jeckersb@redhat.com> - 0.10.1-1 * Wed Jan 3 2024 John Eckersberg <jeckersb@redhat.com> - 0.10.1-1
- New upstream release 0.10.1 (rhbz#2256342) - New upstream release 0.10.1 (rhbz#2256342)
- Remove patch for Python 3.13 compatibility (merged upstream in 0.10.0) - Remove patch for Python 3.13 compatibility (merged upstream in 0.10.0)