diff -Nru sfepy-2016.2/debian/changelog sfepy-2016.2/debian/changelog --- sfepy-2016.2/debian/changelog 2017-09-05 08:23:51.000000000 +0000 +++ sfepy-2016.2/debian/changelog 2017-10-16 21:22:00.000000000 +0000 @@ -1,8 +1,19 @@ -sfepy (2016.2-2build1) artful; urgency=medium +sfepy (2016.2-4) unstable; urgency=medium - * No-change rebuild to drop _PyFPE support. + [ Dmitry Shachnev ] + * [45a07e6] Fix latex_preamble FTBFS. (Closes: #878369) - -- Matthias Klose Tue, 05 Sep 2017 08:23:51 +0000 + [ Anton Gladky ] + * [3edf0bb] Set compat level 10. + + -- Anton Gladky Mon, 16 Oct 2017 23:22:00 +0200 + +sfepy (2016.2-3) unstable; urgency=medium + + * [41e9fbb] Add build-dep on latexmk. (Closes: #872248) + * [d4f2474] Set Standards-Version to 4.1.1 + + -- Anton Gladky Thu, 05 Oct 2017 18:15:47 +0200 sfepy (2016.2-2) unstable; urgency=medium diff -Nru sfepy-2016.2/debian/compat sfepy-2016.2/debian/compat --- sfepy-2016.2/debian/compat 2016-07-25 21:24:42.000000000 +0000 +++ sfepy-2016.2/debian/compat 2017-10-16 21:21:41.000000000 +0000 @@ -1 +1 @@ -9 +10 diff -Nru sfepy-2016.2/debian/control sfepy-2016.2/debian/control --- sfepy-2016.2/debian/control 2016-07-25 21:26:04.000000000 +0000 +++ sfepy-2016.2/debian/control 2017-10-16 21:21:41.000000000 +0000 @@ -5,9 +5,10 @@ Testsuite: autopkgtest Priority: optional Build-Depends: cython, - debhelper (>= 9), + debhelper (>= 10), dh-python, ipython, + latexmk, libadmesh-dev, libjs-jquery, libsuitesparse-dev, @@ -28,7 +29,7 @@ texlive-generic-extra, texlive-latex-extra, texlive-latex-recommended -Standards-Version: 3.9.8 +Standards-Version: 4.1.1 Vcs-Browser: https://anonscm.debian.org/cgit/debian-science/packages/python-sfepy.git Vcs-Git: https://anonscm.debian.org/git/debian-science/packages/python-sfepy.git Homepage: http://sfepy.org diff -Nru sfepy-2016.2/debian/patches/01_remove_google_analytics.patch sfepy-2016.2/debian/patches/01_remove_google_analytics.patch --- sfepy-2016.2/debian/patches/01_remove_google_analytics.patch 2016-05-05 19:16:40.000000000 +0000 +++ sfepy-2016.2/debian/patches/01_remove_google_analytics.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -Description: remove Google analytics script in docs -Author: Anton Gladky -Last-Update: 2015-03-21 - -Index: sfepy-release_2016.1/doc/_templates/layout.html -=================================================================== ---- sfepy-release_2016.1.orig/doc/_templates/layout.html -+++ sfepy-release_2016.1/doc/_templates/layout.html -@@ -35,17 +35,4 @@ - - {% block footer %} - {{ super() }} -- - {% endblock %} -Index: sfepy-release_2016.1/doc/gallery_template.html -=================================================================== ---- sfepy-release_2016.1.orig/doc/gallery_template.html -+++ sfepy-release_2016.1/doc/gallery_template.html -@@ -96,18 +96,5 @@ - © Copyright 2010, Robert Cimrman and Contributors. - Created using Sphinx 1.1.3. - -- - - diff -Nru sfepy-2016.2/debian/patches/10_remove_google_analytics.patch sfepy-2016.2/debian/patches/10_remove_google_analytics.patch --- sfepy-2016.2/debian/patches/10_remove_google_analytics.patch 1970-01-01 00:00:00.000000000 +0000 +++ sfepy-2016.2/debian/patches/10_remove_google_analytics.patch 2017-10-16 21:21:41.000000000 +0000 @@ -0,0 +1,49 @@ +Description: remove Google analytics script in docs +Author: Anton Gladky +Last-Update: 2015-03-21 + +Index: sfepy-release_2016.1/doc/_templates/layout.html +=================================================================== +--- sfepy-release_2016.1.orig/doc/_templates/layout.html ++++ sfepy-release_2016.1/doc/_templates/layout.html +@@ -35,17 +35,4 @@ + + {% block footer %} + {{ super() }} +- + {% endblock %} +Index: sfepy-release_2016.1/doc/gallery_template.html +=================================================================== +--- sfepy-release_2016.1.orig/doc/gallery_template.html ++++ sfepy-release_2016.1/doc/gallery_template.html +@@ -96,18 +96,5 @@ + © Copyright 2010, Robert Cimrman and Contributors. + Created using Sphinx 1.1.3. + +- + + diff -Nru sfepy-2016.2/debian/patches/20_sphinx1.6_preamble.patch sfepy-2016.2/debian/patches/20_sphinx1.6_preamble.patch --- sfepy-2016.2/debian/patches/20_sphinx1.6_preamble.patch 1970-01-01 00:00:00.000000000 +0000 +++ sfepy-2016.2/debian/patches/20_sphinx1.6_preamble.patch 2017-10-16 21:21:41.000000000 +0000 @@ -0,0 +1,37 @@ +Description: Updated conf.py to new LaTeX customization scheme +Origin: upstream, https://github.com/sfepy/sfepy/commit/8fb2189c3a9a9aec +Last-Update: 2017-10-13 + +Index: sfepy/doc/conf.py +=================================================================== +--- sfepy.orig/doc/conf.py ++++ sfepy/doc/conf.py +@@ -214,7 +214,8 @@ latex_documents = [ + + # Additional stuff for the LaTeX preamble. + #latex_preamble = '' +-latex_preamble = r""" ++latex_elements = { ++ 'preamble': r''' + \usepackage{bm} + \usepackage{amsfonts} + \def\dt{{\Delta t}} +@@ -244,7 +245,8 @@ latex_preamble = r""" + \def\vb{\bm{v}} + \def\Mb{\bm{M}} + \def\vphib{\bm{\varphi}} +-""" ++''', ++} + # LS: Are the following needed as well? + #\def\Vcal{\mathcal{V}} + #\def\Tcal{\mathcal{T}} +@@ -258,7 +260,7 @@ latex_preamble = r""" + #latex_use_modindex = True + + # Preamble for pngmath images +-pngmath_latex_preamble = latex_preamble ++pngmath_latex_preamble = latex_elements['preamble'] + + # Turn off numpydoc autosummary tables + numpydoc_show_class_members = False diff -Nru sfepy-2016.2/debian/patches/series sfepy-2016.2/debian/patches/series --- sfepy-2016.2/debian/patches/series 2016-05-13 21:17:02.000000000 +0000 +++ sfepy-2016.2/debian/patches/series 2017-10-16 21:21:41.000000000 +0000 @@ -1 +1,2 @@ -01_remove_google_analytics.patch +10_remove_google_analytics.patch +20_sphinx1.6_preamble.patch