Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/ebe84efc1a869da8d5689c706cdcf6ea864f0d9b.tar.gz
|
SOURCES/sphinxcontrib-websupport-1.2.4.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
561298109115d420144bad09226f6c2de7d2c969 SOURCES/ebe84efc1a869da8d5689c706cdcf6ea864f0d9b.tar.gz
|
39f6170825895ffeb0e06d52e351932b5f0c0147 SOURCES/sphinxcontrib-websupport-1.2.4.tar.gz
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
%global commit ebe84efc1a869da8d5689c706cdcf6ea864f0d9b
|
|
||||||
%global pypi_name sphinxcontrib-websupport
|
%global pypi_name sphinxcontrib-websupport
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 1.0.1
|
Version: 1.2.4
|
||||||
Release: 10.20180316git%{?dist}
|
Release: 5%{?dist}
|
||||||
Summary: Sphinx API for Web Apps
|
Summary: Sphinx API for Web Apps
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: http://sphinx-doc.org/
|
URL: http://sphinx-doc.org/
|
||||||
Source0: https://github.com/sphinx-doc/sphinxcontrib-websupport/archive/%{commit}.tar.gz
|
Source0: %{pypi_source}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -19,28 +18,30 @@ documentation into your Web application.
|
|||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
%{?python_provide:%python_provide python3-%{pypi_name}}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-docutils
|
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-jinja2
|
BuildRequires: python3-jinja2
|
||||||
BuildRequires: python3-mock
|
|
||||||
BuildRequires: python3-pytest
|
BuildRequires: python3-pytest
|
||||||
BuildRequires: python3-six
|
BuildRequires: python3-six
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-sphinx
|
||||||
BuildRequires: python3-sqlalchemy
|
BuildRequires: python3-sphinxcontrib-serializinghtml >= 1.1.3
|
||||||
BuildRequires: python3-whoosh
|
|
||||||
Requires: python3-docutils
|
# Optional tests deps:
|
||||||
|
# Disabled on RHEL9
|
||||||
|
#BuildRequires: python3-sqlalchemy
|
||||||
|
#BuildRequires: python3-whoosh
|
||||||
|
#BuildRequires: python3-xapian
|
||||||
|
|
||||||
|
# Undeclared but used runtime dependencies
|
||||||
|
# https://github.com/sphinx-doc/sphinxcontrib-websupport/pull/46
|
||||||
Requires: python3-jinja2
|
Requires: python3-jinja2
|
||||||
Requires: python3-six
|
|
||||||
Requires: python3-sphinx
|
Requires: python3-sphinx
|
||||||
Requires: python3-sqlalchemy
|
|
||||||
Requires: python3-whoosh
|
|
||||||
|
|
||||||
%description -n python3-%{pypi_name}
|
%description -n python3-%{pypi_name}
|
||||||
sphinxcontrib-websupport provides a Python API to easily integrate Sphinx
|
sphinxcontrib-websupport provides a Python API to easily integrate Sphinx
|
||||||
documentation into your Web application.
|
documentation into your Web application.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{pypi_name}-%{commit}
|
%autosetup -n %{pypi_name}-%{version}
|
||||||
# Remove bundled egg-info
|
# Remove bundled egg-info
|
||||||
rm -rf %{pypi_name}.egg-info
|
rm -rf %{pypi_name}.egg-info
|
||||||
|
|
||||||
@ -51,26 +52,92 @@ rm -rf %{pypi_name}.egg-info
|
|||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
%check
|
%check
|
||||||
PYTHONPATH=. py.test-3 tests/
|
mkdir empty && pushd empty # don't run the tests from sources
|
||||||
|
export PYTHONPATH=%{buildroot}%{python3_sitelib}
|
||||||
|
%{__python3} -m pytest ../tests
|
||||||
|
popd
|
||||||
|
rmdir empty
|
||||||
|
|
||||||
%files -n python3-%{pypi_name}
|
%files -n python3-%{pypi_name}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%{python3_sitelib}/sphinxcontrib/websupport
|
%dir %{python3_sitelib}/sphinxcontrib
|
||||||
|
%{python3_sitelib}/sphinxcontrib/websupport/
|
||||||
%{python3_sitelib}/sphinxcontrib_websupport-*.pth
|
%{python3_sitelib}/sphinxcontrib_websupport-*.pth
|
||||||
%{python3_sitelib}/sphinxcontrib_websupport-*.egg-info
|
%{python3_sitelib}/sphinxcontrib_websupport-*.egg-info/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 1.0.1-10.20180316git
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.4-5
|
||||||
- Do not BR xapian, it is not needed
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 1.0.1-9.20180316git
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.4-4
|
||||||
- Remove python2 subpackage (bz#1567315)
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Mar 10 2021 Miro Hrončok <mhroncok@redhat.com> - 1.2.4-3
|
||||||
|
- Update runtime and buildtime dependencies
|
||||||
|
- Remove sqlalchemy, whoosh and xapian dependencies from RHEL9
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Aug 18 2020 Miro Hrončok <mhroncok@redhat.com> - 1.2.4-1
|
||||||
|
- Update to 1.2.4
|
||||||
|
- Fixes rhbz#1800626
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 1.2.1-2
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Tue Apr 14 2020 Javier Peña <jpena@redhat.com> - 1.2.1-1
|
||||||
|
- Update to upstream 1.2.1 (bz#1823520)
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1.2-4
|
||||||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
|
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1.2-3
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 20 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1.2-1
|
||||||
|
- Update to 1.1.2 (#1711650)
|
||||||
|
|
||||||
|
* Wed Mar 27 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1.1~dev20190321-1
|
||||||
|
- Update to 1.1.1.dev20190321 (#1691429)
|
||||||
|
- Support Sphinx 2.0 (#1690793)
|
||||||
|
|
||||||
|
* Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-1
|
||||||
|
- Update to 1.1.0
|
||||||
|
- Subpackage python2-sphinxcontrib-websupport has been removed
|
||||||
|
See https://fedoraproject.org/wiki/Changes/Sphinx2
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-12.20180316git
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 16 2018 Miro Hrončok <mhroncok@redhat.com> - 1.0.1-11.20180316git
|
||||||
|
- Remove unused dependency on xapian
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-10.20180316git
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 1.0.1-9.20180316git
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
* Wed May 16 2018 Javier Peña <jpena@redhat.com> - 1.0.1-8.20180316git
|
* Wed May 16 2018 Javier Peña <jpena@redhat.com> - 1.0.1-8.20180316git
|
||||||
- Update to commit ebe84efc1a869da8d5689c706cdcf6ea864f0d9b
|
- Update to commit ebe84efc1a869da8d5689c706cdcf6ea864f0d9b
|
||||||
- Fix build with Sphinx 1.7 (bz#1578132)
|
- Fix build with Sphinx 1.7 (bz#1578132)
|
||||||
|
|
||||||
|
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.0.1-7.20171013git
|
||||||
|
- Update Python 2 dependency declarations to new packaging standards
|
||||||
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-6.20171013git
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-6.20171013git
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user