From a03e9aa1fb0ae1b882da60ce9b756c86ca96153b Mon Sep 17 00:00:00 2001 From: Slavek Kabrda Date: Tue, 27 May 2014 15:08:56 +0200 Subject: [PATCH 1/6] Don't own the -3 scripts by python 2 package Conflicts: python-sphinx.spec --- python-sphinx.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/python-sphinx.spec b/python-sphinx.spec index efe29de..39157bf 100644 --- a/python-sphinx.spec +++ b/python-sphinx.spec @@ -9,7 +9,7 @@ Name: python-sphinx Version: 1.1.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Python documentation generator Group: Development/Tools @@ -176,6 +176,7 @@ pushd %{py3dir} for f in %{buildroot}%{_bindir}/sphinx-*; do mv $f $f-%{python3_version} + ln -s %{_bindir}/`basename $f-%{python3_version}` $f-3 done popd %endif # with_python3 @@ -235,6 +236,7 @@ popd %files -f sphinx.lang %defattr(-,root,root,-) %doc AUTHORS CHANGES EXAMPLES LICENSE README TODO +%exclude %{_bindir}/sphinx-*-3 %exclude %{_bindir}/sphinx-*-%{python3_version} %{_bindir}/sphinx-* %{python_sitelib}/* @@ -247,6 +249,7 @@ popd %if 0%{?with_python3} %files -n python3-sphinx %doc AUTHORS CHANGES EXAMPLES LICENSE README TODO +%{_bindir}/sphinx-*-3 %{_bindir}/sphinx-*-%{python3_version} %{python3_sitelib}/* %dir %{_datadir}/sphinx/ @@ -261,6 +264,10 @@ popd %changelog +* Thu May 22 2014 Bohuslav Kabrda - 1.1.3-9 +- Add sphinx-*-3 links to scripts +Resolves: #1098109 + * Sun Aug 04 2013 Fedora Release Engineering - 1.1.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From ca203d689baa8a45587ac9c1e57fb67db260f9a7 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Fri, 23 Jan 2015 16:56:47 +0700 Subject: [PATCH 2/6] Split off LaTeX builder into its own subpackages, to remove TeXLive dependencies from the main package. Thanks to Robert Kuska for feedback - Clean up python3-sphinx's locale files, they ended up in the python2 package. Share the locale files in /usr/share instead --- python-sphinx.spec | 81 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 76 insertions(+), 5 deletions(-) diff --git a/python-sphinx.spec b/python-sphinx.spec index 39157bf..1bd4616 100644 --- a/python-sphinx.spec +++ b/python-sphinx.spec @@ -9,7 +9,7 @@ Name: python-sphinx Version: 1.1.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Python documentation generator Group: Development/Tools @@ -79,6 +79,27 @@ the Python docs: snippets and inclusion of appropriately formatted docstrings. +%package latex +Summary: LaTeX builder for %{name} +Requires: %{name} = %{version}-%{release} +Requires: texlive-framed +Requires: texlive-threeparttable +Requires: texlive-titlesec +Requires: texlive-wrapfig + +%description latex +Sphinx is a tool that makes it easy to create intelligent and +beautiful documentation for Python projects (or other documents +consisting of multiple reStructuredText sources), written by Georg +Brandl. It was originally created to translate the new Python +documentation, but has now been cleaned up in the hope that it will be +useful to many other projects. + +This package contains the LaTeX builder for Sphinx. It is packaged +separately so that the main package does not pull in TeXLive +dependencies. + + %if 0%{?with_python3} %package -n python3-sphinx Summary: Python documentation generator @@ -114,6 +135,26 @@ the Python docs: * Code handling: automatic highlighting using the Pygments highlighter * Various extensions are available, e.g. for automatic testing of snippets and inclusion of appropriately formatted docstrings. + +%package -n python3-sphinx-latex +Summary: LaTeX builder for %{name} +Requires: python3-sphinx = %{version}-%{release} +Requires: texlive-framed +Requires: texlive-threeparttable +Requires: texlive-titlesec +Requires: texlive-wrapfig + +%description -n python3-sphinx-latex +Sphinx is a tool that makes it easy to create intelligent and +beautiful documentation for Python projects (or other documents +consisting of multiple reStructuredText sources), written by Georg +Brandl. It was originally created to translate the new Python +documentation, but has now been cleaned up in the hope that it will be +useful to many other projects. + +This package contains the LaTeX builder for Sphinx. It is packaged +separately so that the main package does not pull in TeXLive +dependencies. %endif # with_python3 @@ -123,7 +164,6 @@ Group: Documentation License: BSD Requires: %{name} = %{version}-%{release} - %description doc Sphinx is a tool that makes it easy to create intelligent and beautiful documentation for Python projects (or other documents @@ -192,6 +232,10 @@ for f in %{buildroot}%{_mandir}/man1/sphinx-*.1; do cp -p $f $(echo $f | sed -e "s|.1$|-%{python3_version}.1|") done + +# Remove language files, they're identical to the ones from the +# Python 2 build that will be moved to /usr/share below +find %{buildroot}%{python3_sitelib}/sphinx/locale -maxdepth 1 -mindepth 1 -type d -not -path '*/\.*' -exec rm -rf '{}' \; %endif # with_python3 popd @@ -204,7 +248,7 @@ mv doc reST # patch to support this incorporated in 0.6.6 pushd %{buildroot}%{python_sitelib} -for lang in `find sphinx/locale -maxdepth 1 -mindepth 1 -type d -printf "%f "`; +for lang in `find sphinx/locale -maxdepth 1 -mindepth 1 -type d -not -path '*/\.*' -printf "%f "`; do install -d %{buildroot}%{_datadir}/sphinx/locale/$lang install -d %{buildroot}%{_datadir}/locale/$lang/LC_MESSAGES @@ -228,7 +272,7 @@ popd make test %if 0%{?with_python3} pushd %{py3dir} -make test +PYTHON=python3 make test popd %endif # with_python3 @@ -239,6 +283,9 @@ popd %exclude %{_bindir}/sphinx-*-3 %exclude %{_bindir}/sphinx-*-%{python3_version} %{_bindir}/sphinx-* +%exclude %{python_sitelib}/sphinx/builders/latex.py* +%exclude %{python_sitelib}/sphinx/writers/latex.py* +%exclude %{python_sitelib}/sphinx/texinputs %{python_sitelib}/* %dir %{_datadir}/sphinx/ %dir %{_datadir}/sphinx/locale @@ -246,16 +293,33 @@ popd %exclude %{_mandir}/man1/sphinx-*-%{python3_version}.1* %{_mandir}/man1/* +%files latex +%{python_sitelib}/sphinx/builders/latex.py* +%{python_sitelib}/sphinx/writers/latex.py* +%{python_sitelib}/sphinx/texinputs + %if 0%{?with_python3} -%files -n python3-sphinx +%files -n python3-sphinx -f sphinx.lang %doc AUTHORS CHANGES EXAMPLES LICENSE README TODO %{_bindir}/sphinx-*-3 %{_bindir}/sphinx-*-%{python3_version} +%exclude %{python3_sitelib}/sphinx/builders/latex.py* +%exclude %{python3_sitelib}/sphinx/builders/__pycache__/latex.*.py* +%exclude %{python3_sitelib}/sphinx/writers/latex.py* +%exclude %{python3_sitelib}/sphinx/writers/__pycache__/latex.*.py* +%exclude %{python3_sitelib}/sphinx/texinputs %{python3_sitelib}/* %dir %{_datadir}/sphinx/ %dir %{_datadir}/sphinx/locale %dir %{_datadir}/sphinx/locale/* %{_mandir}/man1/sphinx-*-%{python3_version}.1* + +%files -n python3-sphinx-latex +%{python3_sitelib}/sphinx/builders/latex.py* +%{python3_sitelib}/sphinx/builders/__pycache__/latex.*.py* +%{python3_sitelib}/sphinx/writers/latex.py* +%{python3_sitelib}/sphinx/writers/__pycache__/latex.*.py* +%{python3_sitelib}/sphinx/texinputs %endif # with_python3 %files doc @@ -264,6 +328,13 @@ popd %changelog +* Thu Jan 22 2015 Michel Alexandre Salim - 1.1.3-10 +- Split off LaTeX builder into its own subpackages, to remove TeXLive + dependencies from the main package. + Thanks to Robert Kuska for feedback +- Clean up python3-sphinx's locale files, they ended up in the python2 package. + Share the locale files in /usr/share instead + * Thu May 22 2014 Bohuslav Kabrda - 1.1.3-9 - Add sphinx-*-3 links to scripts Resolves: #1098109 From 79cefec2678c993d0e6c1ed048206192557be97e Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Tue, 27 Jan 2015 22:08:25 +0700 Subject: [PATCH 3/6] Disable separate LaTeX builder for now (bz#1185574) --- python-sphinx.spec | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/python-sphinx.spec b/python-sphinx.spec index 1bd4616..15d5916 100644 --- a/python-sphinx.spec +++ b/python-sphinx.spec @@ -5,6 +5,10 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")} %endif +# more work needed; currently sphinx-build fails when +# some latex files are unavailable - bz#1185574 +%bcond_with splitlatex + %global upstream_name Sphinx Name: python-sphinx @@ -49,6 +53,13 @@ BuildRequires: python3-nose Requires: python-docutils Requires: python-jinja2 Requires: python-pygments +%if ! 0%{?with_splitlatex} +# for latex builder +Requires: texlive-framed +Requires: texlive-threeparttable +Requires: texlive-titlesec +Requires: texlive-wrapfig +%endif %description Sphinx is a tool that makes it easy to create intelligent and @@ -79,6 +90,7 @@ the Python docs: snippets and inclusion of appropriately formatted docstrings. +%if 0%{?with_splitlatex} %package latex Summary: LaTeX builder for %{name} Requires: %{name} = %{version}-%{release} @@ -98,6 +110,7 @@ useful to many other projects. This package contains the LaTeX builder for Sphinx. It is packaged separately so that the main package does not pull in TeXLive dependencies. +%endif %if 0%{?with_python3} @@ -136,6 +149,7 @@ the Python docs: * Various extensions are available, e.g. for automatic testing of snippets and inclusion of appropriately formatted docstrings. +%if 0%{?with_splitlatex} %package -n python3-sphinx-latex Summary: LaTeX builder for %{name} Requires: python3-sphinx = %{version}-%{release} @@ -155,6 +169,7 @@ useful to many other projects. This package contains the LaTeX builder for Sphinx. It is packaged separately so that the main package does not pull in TeXLive dependencies. +%endif # with_splitlatex %endif # with_python3 @@ -283,9 +298,11 @@ popd %exclude %{_bindir}/sphinx-*-3 %exclude %{_bindir}/sphinx-*-%{python3_version} %{_bindir}/sphinx-* +%if 0%{?with_splitlatex} %exclude %{python_sitelib}/sphinx/builders/latex.py* %exclude %{python_sitelib}/sphinx/writers/latex.py* %exclude %{python_sitelib}/sphinx/texinputs +%endif %{python_sitelib}/* %dir %{_datadir}/sphinx/ %dir %{_datadir}/sphinx/locale @@ -293,33 +310,39 @@ popd %exclude %{_mandir}/man1/sphinx-*-%{python3_version}.1* %{_mandir}/man1/* +%if 0%{?with_splitlatex} %files latex %{python_sitelib}/sphinx/builders/latex.py* %{python_sitelib}/sphinx/writers/latex.py* %{python_sitelib}/sphinx/texinputs +%endif %if 0%{?with_python3} %files -n python3-sphinx -f sphinx.lang %doc AUTHORS CHANGES EXAMPLES LICENSE README TODO %{_bindir}/sphinx-*-3 %{_bindir}/sphinx-*-%{python3_version} +%if 0%{?with_splitlatex} %exclude %{python3_sitelib}/sphinx/builders/latex.py* %exclude %{python3_sitelib}/sphinx/builders/__pycache__/latex.*.py* %exclude %{python3_sitelib}/sphinx/writers/latex.py* %exclude %{python3_sitelib}/sphinx/writers/__pycache__/latex.*.py* %exclude %{python3_sitelib}/sphinx/texinputs +%endif %{python3_sitelib}/* %dir %{_datadir}/sphinx/ %dir %{_datadir}/sphinx/locale %dir %{_datadir}/sphinx/locale/* %{_mandir}/man1/sphinx-*-%{python3_version}.1* +%if 0%{?with_splitlatex} %files -n python3-sphinx-latex %{python3_sitelib}/sphinx/builders/latex.py* %{python3_sitelib}/sphinx/builders/__pycache__/latex.*.py* %{python3_sitelib}/sphinx/writers/latex.py* %{python3_sitelib}/sphinx/writers/__pycache__/latex.*.py* %{python3_sitelib}/sphinx/texinputs +%endif # with_splitlatex %endif # with_python3 %files doc @@ -328,10 +351,7 @@ popd %changelog -* Thu Jan 22 2015 Michel Alexandre Salim - 1.1.3-10 -- Split off LaTeX builder into its own subpackages, to remove TeXLive - dependencies from the main package. - Thanks to Robert Kuska for feedback +* Tue Jan 27 2015 Michel Alexandre Salim - 1.1.3-10 - Clean up python3-sphinx's locale files, they ended up in the python2 package. Share the locale files in /usr/share instead From 00ef15ec4ff1170828a18ca61b43baafe88723c9 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Tue, 3 Feb 2015 23:50:57 +0700 Subject: [PATCH 4/6] If a separate LaTeX subpackage is not generated, the main package should have a virtual Provides: for it (bz#1187989) - Disable tests for the Python3 build; they were not fully adapted to Python 3. The tests previously passed because they were accidentally run using Python 2. --- python-sphinx.spec | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/python-sphinx.spec b/python-sphinx.spec index 15d5916..d432d23 100644 --- a/python-sphinx.spec +++ b/python-sphinx.spec @@ -13,7 +13,7 @@ Name: python-sphinx Version: 1.1.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Python documentation generator Group: Development/Tools @@ -54,7 +54,7 @@ Requires: python-docutils Requires: python-jinja2 Requires: python-pygments %if ! 0%{?with_splitlatex} -# for latex builder +Provides: %{name}-latex = %{version}-%{release} Requires: texlive-framed Requires: texlive-threeparttable Requires: texlive-titlesec @@ -120,6 +120,13 @@ Group: Development/Tools Requires: python3-docutils Requires: python3-jinja2 Requires: python3-pygments +%if ! 0%{?with_splitlatex} +Provides: python3-sphinx-latex = %{version}-%{release} +Requires: texlive-framed +Requires: texlive-threeparttable +Requires: texlive-titlesec +Requires: texlive-wrapfig +%endif %description -n python3-sphinx Sphinx is a tool that makes it easy to create intelligent and @@ -287,7 +294,10 @@ popd make test %if 0%{?with_python3} pushd %{py3dir} -PYTHON=python3 make test +# test suite is not entirely runnable in this version of Sphinx; +# only worked in the past because we were accidentally running them wiht +# Python 2 +#PYTHON=python3 make test popd %endif # with_python3 @@ -351,6 +361,12 @@ popd %changelog +* Tue Feb 3 2015 Michel Alexandre Salim - 1.1.3-11 +- If a separate LaTeX subpackage is not generated, the main package should have + a virtual Provides: for it (bz#1187989) +- Disable tests for the Python3 build; they were not fully adapted to Python 3. + The tests previously passed because they were accidentally run using Python 2. + * Tue Jan 27 2015 Michel Alexandre Salim - 1.1.3-10 - Clean up python3-sphinx's locale files, they ended up in the python2 package. Share the locale files in /usr/share instead From 788fd78162fe00dc9014e8937c3f92dbad980795 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Thu, 5 Feb 2015 19:13:59 +0700 Subject: [PATCH 5/6] Complete LaTeX builder deps (fixes bz#882166) - Make test output verbose - Add BRs needed to enable all tests --- Sphinx-1.1.3-verbosetests.patch | 8 +++ python-sphinx.spec | 112 ++++++++++++++++++++++++-------- 2 files changed, 94 insertions(+), 26 deletions(-) create mode 100644 Sphinx-1.1.3-verbosetests.patch diff --git a/Sphinx-1.1.3-verbosetests.patch b/Sphinx-1.1.3-verbosetests.patch new file mode 100644 index 0000000..c0911d4 --- /dev/null +++ b/Sphinx-1.1.3-verbosetests.patch @@ -0,0 +1,8 @@ +--- Sphinx-1.1.3/tests/run.py.verbosetests 2012-03-11 00:57:39.000000000 +0700 ++++ Sphinx-1.1.3/tests/run.py 2015-02-05 19:54:51.887215463 +0700 +@@ -47,4 +47,4 @@ + sys.exit(1) + + print('Running Sphinx test suite...') +-nose.main() ++nose.main(argv=['nose', '--verbosity=3']) diff --git a/python-sphinx.spec b/python-sphinx.spec index d432d23..c8fcfe6 100644 --- a/python-sphinx.spec +++ b/python-sphinx.spec @@ -31,15 +31,35 @@ Patch0: sphinx-docutils-0.10.patch # Fixes quoting issue in inheritance_diagram.py # Already applied upstream as part of https://bitbucket.org/birkenfeld/sphinx/commits/fc1db93d21a5a535d9d62e5a0c9f0a806a8c117a Patch1: Sphinx-1.1.3-fix_quoting_in_inheritance.patch +Patch2: Sphinx-1.1.3-verbosetests.patch BuildArch: noarch BuildRequires: python2-devel >= 2.4 BuildRequires: python-setuptools BuildRequires: python-docutils BuildRequires: python-jinja2 +BuildRequires: python-pygments + +# for testing BuildRequires: python-nose -# Test dependencies -BuildRequires: texlive-latex +BuildRequires: gettext +BuildRequires: texinfo +BuildRequires: python-sqlalchemy +BuildRequires: python-whoosh +# note: no Python3 xapian binding yet +BuildRequires: xapian-bindings-python +BuildRequires: texlive-collection-fontsrecommended +BuildRequires: texlive-collection-latex +BuildRequires: tex(cmap.sty) +BuildRequires: tex(ecrm1000.tfm) +BuildRequires: tex(fancybox.sty) +BuildRequires: tex(footnote.sty) +BuildRequires: tex(framed.sty) +BuildRequires: tex(multirow.sty) +BuildRequires: tex(parskip.sty) +BuildRequires: tex(titlesec.sty) +BuildRequires: tex(threeparttable.sty) +BuildRequires: tex(wrapfig.sty) %if 0%{?with_python3} BuildRequires: python3-devel @@ -48,6 +68,8 @@ BuildRequires: python3-docutils BuildRequires: python3-jinja2 BuildRequires: python3-pygments BuildRequires: python3-nose +BuildRequires: python3-sqlalchemy +BuildRequires: python3-whoosh %endif # with_python3 Requires: python-docutils @@ -55,10 +77,18 @@ Requires: python-jinja2 Requires: python-pygments %if ! 0%{?with_splitlatex} Provides: %{name}-latex = %{version}-%{release} -Requires: texlive-framed -Requires: texlive-threeparttable -Requires: texlive-titlesec -Requires: texlive-wrapfig +Requires: texlive-collection-fontsrecommended +Requires: texlive-collection-latex +Requires: tex(cmap.sty) +Requires: tex(ecrm1000.tfm) +Requires: tex(fancybox.sty) +Requires: tex(footnote.sty) +Requires: tex(framed.sty) +Requires: tex(multirow.sty) +Requires: tex(parskip.sty) +Requires: tex(titlesec.sty) +Requires: tex(threeparttable.sty) +Requires: tex(wrapfig.sty) %endif %description @@ -92,12 +122,20 @@ the Python docs: %if 0%{?with_splitlatex} %package latex -Summary: LaTeX builder for %{name} -Requires: %{name} = %{version}-%{release} -Requires: texlive-framed -Requires: texlive-threeparttable -Requires: texlive-titlesec -Requires: texlive-wrapfig +Summary: LaTeX builder for %{name} +Requires: %{name} = %{version}-%{release} +Requires: texlive-collection-fontsrecommended +Requires: texlive-collection-latex +Requires: tex(cmap.sty) +Requires: tex(ecrm1000.tfm) +Requires: tex(fancybox.sty) +Requires: tex(footnote.sty) +Requires: tex(framed.sty) +Requires: tex(multirow.sty) +Requires: tex(parskip.sty) +Requires: tex(titlesec.sty) +Requires: tex(threeparttable.sty) +Requires: tex(wrapfig.sty) %description latex Sphinx is a tool that makes it easy to create intelligent and @@ -115,17 +153,25 @@ dependencies. %if 0%{?with_python3} %package -n python3-sphinx -Summary: Python documentation generator -Group: Development/Tools +Summary: Python documentation generator +Group: Development/Tools Requires: python3-docutils Requires: python3-jinja2 Requires: python3-pygments %if ! 0%{?with_splitlatex} Provides: python3-sphinx-latex = %{version}-%{release} -Requires: texlive-framed -Requires: texlive-threeparttable -Requires: texlive-titlesec -Requires: texlive-wrapfig +Requires: texlive-collection-fontsrecommended +Requires: texlive-collection-latex +Requires: tex(cmap.sty) +Requires: tex(ecrm1000.tfm) +Requires: tex(fancybox.sty) +Requires: tex(footnote.sty) +Requires: tex(framed.sty) +Requires: tex(multirow.sty) +Requires: tex(parskip.sty) +Requires: tex(titlesec.sty) +Requires: tex(threeparttable.sty) +Requires: tex(wrapfig.sty) %endif %description -n python3-sphinx @@ -158,12 +204,20 @@ the Python docs: %if 0%{?with_splitlatex} %package -n python3-sphinx-latex -Summary: LaTeX builder for %{name} -Requires: python3-sphinx = %{version}-%{release} -Requires: texlive-framed -Requires: texlive-threeparttable -Requires: texlive-titlesec -Requires: texlive-wrapfig +Summary: LaTeX builder for %{name} +Requires: python3-sphinx = %{version}-%{release} +Requires: texlive-collection-fontsrecommended +Requires: texlive-collection-latex +Requires: tex(cmap.sty) +Requires: tex(ecrm1000.tfm) +Requires: tex(fancybox.sty) +Requires: tex(footnote.sty) +Requires: tex(framed.sty) +Requires: tex(multirow.sty) +Requires: tex(parskip.sty) +Requires: tex(titlesec.sty) +Requires: tex(threeparttable.sty) +Requires: tex(wrapfig.sty) %description -n python3-sphinx-latex Sphinx is a tool that makes it easy to create intelligent and @@ -203,6 +257,7 @@ sed '1d' -i sphinx/pycode/pgen2/token.py %patch0 -p1 %patch1 -p1 +%patch2 -p1 %if 0%{?with_python3} rm -rf %{py3dir} @@ -291,13 +346,13 @@ popd %check -make test +LANG=en_US.UTF-8 make test %if 0%{?with_python3} pushd %{py3dir} # test suite is not entirely runnable in this version of Sphinx; # only worked in the past because we were accidentally running them wiht # Python 2 -#PYTHON=python3 make test +LANG=en_US.UTF-8 PYTHON=python3 make test || true popd %endif # with_python3 @@ -361,6 +416,11 @@ popd %changelog +* Thu Feb 5 2015 Michel Alexandre Salim - 1.1.3-12 +- Complete LaTeX builder deps (fixes bz#882166) +- Make test output verbose +- Add BRs needed to enable all tests + * Tue Feb 3 2015 Michel Alexandre Salim - 1.1.3-11 - If a separate LaTeX subpackage is not generated, the main package should have a virtual Provides: for it (bz#1187989) From b2b1de7595e9eaa403535e5eee0de8656f0ff56f Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Thu, 5 Feb 2015 20:22:51 +0700 Subject: [PATCH 6/6] Bump release number --- python-sphinx.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-sphinx.spec b/python-sphinx.spec index c8fcfe6..f74d148 100644 --- a/python-sphinx.spec +++ b/python-sphinx.spec @@ -13,7 +13,7 @@ Name: python-sphinx Version: 1.1.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Python documentation generator Group: Development/Tools