Compare commits

..

10 Commits

Author SHA1 Message Date
Miro Hrončok b5d2654d1b Remove unused dependency on xapian 2018-07-16 10:54:05 +02:00
Fedora Release Engineering 666119c5a0 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-07-14 02:12:29 +00:00
Miro Hrončok 94d1979615 Rebuilt for Python 3.7 2018-06-15 11:41:49 +02:00
Javier Pena d2d5654136 Update to commit ebe84efc1a869da8d5689c706cdcf6ea864f0d9b
Fix build with Sphinx 1.7 (bz#1578132)
2018-05-16 11:24:52 +02:00
Iryna Shcherbina 188cf32647 Update Python 2 dependency declarations to new packaging standards 2018-02-28 03:43:06 +01:00
Fedora Release Engineering 727fc5ff52 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-02-09 11:01:36 +00:00
Javier Pena 5a01928f9f Fixed Source0 URL (bz#1526646) 2017-12-18 12:57:35 +01:00
Javier Pena cfdd3a4aa7 Updated to latest git commit to fix build in Rawhide 2017-10-13 16:13:09 +02:00
Troy Dawson 5c2648dfa6 Cleanup spec file conditionals 2017-10-11 13:09:57 -07:00
Fedora Release Engineering adb8e4e7f6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild 2017-07-27 11:55:26 +00:00
3 changed files with 62 additions and 28 deletions
+3
View File
@@ -1 +1,4 @@
/sphinxcontrib-websupport-1.0.1.tar.gz
/sphinxcontrib-websupport-1.0.1.dev20171013.tar.gz
/88d4fdd163efdeaab91a105b7980c42078ed3417.tar.gz
/ebe84efc1a869da8d5689c706cdcf6ea864f0d9b.tar.gz
+58 -27
View File
@@ -1,17 +1,18 @@
%if 0%{?fedora}
%if 0%{?fedora} || 0%{?rhel} > 7
%global with_python3 1
%endif
%global commit ebe84efc1a869da8d5689c706cdcf6ea864f0d9b
%global pypi_name sphinxcontrib-websupport
Name: python-%{pypi_name}
Version: 1.0.1
Release: 1%{?dist}
Release: 11.20180316git%{?dist}
Summary: Sphinx API for Web Apps
License: BSD
URL: http://sphinx-doc.org/
Source0: https://files.pythonhosted.org/packages/source/s/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
Source0: https://github.com/sphinx-doc/sphinxcontrib-websupport/archive/%{commit}.tar.gz
BuildArch: noarch
%description
@@ -22,22 +23,21 @@ documentation into your Web application.
Summary: %{summary}
%{?python_provide:%python_provide python2-%{pypi_name}}
BuildRequires: python2-devel
BuildRequires: python-docutils
BuildRequires: python-jinja2
BuildRequires: python-mock
BuildRequires: python-pytest
BuildRequires: python-setuptools
BuildRequires: python-six
BuildRequires: python-sphinx
BuildRequires: python-sqlalchemy
BuildRequires: python-whoosh
BuildRequires: xapian-bindings-python
Requires: python-docutils
Requires: python-jinja2
Requires: python-six
Requires: python-sphinx
Requires: python-sqlalchemy
Requires: python-whoosh
BuildRequires: python2-docutils
BuildRequires: python2-jinja2
BuildRequires: python2-mock
BuildRequires: python2-pytest
BuildRequires: python2-setuptools
BuildRequires: python2-six
BuildRequires: python2-sphinx
BuildRequires: python2-sqlalchemy
BuildRequires: python2-whoosh
Requires: python2-docutils
Requires: python2-jinja2
Requires: python2-six
Requires: python2-sphinx
Requires: python2-sqlalchemy
Requires: python2-whoosh
%description -n python2-%{pypi_name}
sphinxcontrib-websupport provides a Python API to easily integrate Sphinx
@@ -57,7 +57,6 @@ BuildRequires: python3-six
BuildRequires: python3-sphinx
BuildRequires: python3-sqlalchemy
BuildRequires: python3-whoosh
BuildRequires: python3-xapian
Requires: python3-docutils
Requires: python3-jinja2
Requires: python3-six
@@ -71,7 +70,7 @@ documentation into your Web application.
%endif
%prep
%autosetup -n %{pypi_name}-%{version}
%autosetup -n %{pypi_name}-%{commit}
# Remove bundled egg-info
rm -rf %{pypi_name}.egg-info
@@ -88,28 +87,60 @@ rm -rf %{pypi_name}.egg-info
%py2_install
%check
py.test tests/
PYTHONPATH=. py.test tests/
%if 0%{?with_python3}
py.test-3 tests/
PYTHONPATH=. py.test-3 tests/
%endif
%files -n python2-%{pypi_name}
%license LICENSE
%doc README.rst
%{python2_sitelib}/sphinxcontrib/websupport
%{python2_sitelib}/sphinxcontrib_websupport-%{version}-py?.?-*.pth
%{python2_sitelib}/sphinxcontrib_websupport-%{version}-py?.?.egg-info
%{python2_sitelib}/sphinxcontrib_websupport-*.pth
%{python2_sitelib}/sphinxcontrib_websupport-*.egg-info
%if 0%{?with_python3}
%files -n python3-%{pypi_name}
%license LICENSE
%doc README.rst
%{python3_sitelib}/sphinxcontrib/websupport
%{python3_sitelib}/sphinxcontrib_websupport-%{version}-py?.?-*.pth
%{python3_sitelib}/sphinxcontrib_websupport-%{version}-py?.?.egg-info
%{python3_sitelib}/sphinxcontrib_websupport-*.pth
%{python3_sitelib}/sphinxcontrib_websupport-*.egg-info
%endif
%changelog
* 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
- Update to commit ebe84efc1a869da8d5689c706cdcf6ea864f0d9b
- 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
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Dec 18 2017 Javier Peña <jpena@redhat.com> - 1.0.1-5.20171013git
- Fixed Source0 URL (bz#1526646)
* Fri Oct 13 2017 Javier Peña <jpena@redhat.com> - 1.0.1-4.20171013git
- Updated to latest git commit to fix build in Rawhide
* Wed Oct 11 2017 Troy Dawson <tdawson@redhat.com> - 1.0.1-3
- Cleanup spec file conditionals
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Fri Jun 30 2017 Javier Peña <jpena@redhat.com> - 1.0.1-1
- Initial package.
+1 -1
View File
@@ -1 +1 @@
SHA512 (sphinxcontrib-websupport-1.0.1.tar.gz) = 67807b2505e063639163b020f0e62469b0c2838c303516cce9a8d90181cc7b8a10d76532adb1267556d40f95966efc20ec9f8ee1a6731056bda827a6f97f40ec
SHA512 (ebe84efc1a869da8d5689c706cdcf6ea864f0d9b.tar.gz) = a33c32cd20c24a714c149059953492e2bacf590a912cc2144935021ad4c2639eb7a47986f31bebf028bcc43de3a842bde0215602213d883d3cc0ed9abf78e747