diff --git a/.python-sphinx_selective_exclude.metadata b/.python-sphinx_selective_exclude.metadata new file mode 100644 index 0000000..f000abb --- /dev/null +++ b/.python-sphinx_selective_exclude.metadata @@ -0,0 +1 @@ +2aa2748da449ebe48ef551b3e9e1ef4165687aac SOURCES/sphinx_selective_exclude-1.0.3.tar.gz diff --git a/SPECS/python-sphinx_selective_exclude.spec b/SPECS/python-sphinx_selective_exclude.spec new file mode 100644 index 0000000..e0f77c6 --- /dev/null +++ b/SPECS/python-sphinx_selective_exclude.spec @@ -0,0 +1,82 @@ +%global srcname sphinx_selective_exclude + +# Upstream does not have any tests yet +%bcond_with tests + +Name: python-%{srcname} +Version: 1.0.3 +Release: 5%{?dist} +Summary: Sphinx eager ".. only::" directive and other selective rendition extensions + +License: BSD +Url: https://github.com/pfalcon/sphinx_selective_exclude +Source0: %{pypi_source} + +BuildArch: noarch + +%global _description %{expand: +The implementation of ".. only::" directive in Sphinx documentation generation +tool is known to violate principles of least user surprise and user expectations +in general. Instead of excluding content early in the pipeline (preprocessor +style), Sphinx defers exclusion until output phase, and what's the worst, +various stages processing ignore "only" blocks and their exclusion status, so +they may leak unexpected information into ToC, indexes, etc. + +This projects tries to rectify situation on users' side. It actually changes the +way Sphinx processes "only" directive, but does this without forking the +project, and instead is made as a standard Sphinx extension, which a user may +add to their documentation config. Unlike normal extensions, extensions provided +in this package monkey-patch Sphinx core to work in a way expected by users.} + +%description %_description + + +%package -n python3-%{srcname} +Summary: %{summary} +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-sphinx +Requires: python3-sphinx + +%description -n python3-%{srcname} %_description + + +%prep +%autosetup -n %{srcname}-%{version} + + +%build +%py3_build + + +%install +%py3_install + + +%if %{with tests} +%check +%endif + + +%files -n python3-%{srcname} +%license LICENSE +%doc README.md +%{python3_sitelib}/%{srcname}-*.egg-info/ +%{python3_sitelib}/%{srcname}/ + + +%changelog +* Thu Sep 16 2021 Kaleb S. KEITHLEY - 1.0.3-5 +- rebuild from git+lookaside + +* Fri Jul 23 2021 Fedora Release Engineering - 1.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 1.0.3-3 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 1.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Fri Nov 20 2020 Michel Alexandre Salim - 1.0.3-1 +- Initial package