[pkg-boost-commits] r15050 - in /boost/trunk/debian: changelog control patches/make-docs-use-offline-resources-only.patch patches/series

xnox at users.alioth.debian.org xnox at users.alioth.debian.org
Tue Oct 24 15:10:15 UTC 2017


Author: xnox
Date: Tue Oct 24 15:10:15 2017
New Revision: 15050

URL: http://svn.debian.org/wsvn/pkg-boost/?sc=1&rev=15050
Log:
* In asciidoctor docs, do not use external webfonts.
* In doxygen docs, use local mathjax library.

Added:
    boost/trunk/debian/patches/make-docs-use-offline-resources-only.patch
Modified:
    boost/trunk/debian/changelog
    boost/trunk/debian/control
    boost/trunk/debian/patches/series

Modified: boost/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-boost/boost/trunk/debian/changelog?rev=15050&op=diff
==============================================================================
--- boost/trunk/debian/changelog	(original)
+++ boost/trunk/debian/changelog	Tue Oct 24 15:10:15 2017
@@ -9,6 +9,8 @@
 
   [ Dimitri John Ledkov ]
   * Fixup py3 suffixes and symlinks.
+  * In asciidoctor docs, do not use external webfonts.
+  * In doxygen docs, use local mathjax library.
 
  -- Steve M. Robbins <smr at debian.org>  Sun, 22 Oct 2017 11:43:15 -0500
 

Modified: boost/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-boost/boost/trunk/debian/control?rev=15050&op=diff
==============================================================================
--- boost/trunk/debian/control	(original)
+++ boost/trunk/debian/control	Tue Oct 24 15:10:15 2017
@@ -149,7 +149,7 @@
 Homepage: http://www.boost.org/libs/
 Architecture: all
 Section: doc
-Depends: ${misc:Depends}
+Depends: ${misc:Depends}, libjs-mathjax
 Suggests: libboost1.65-dev (>= ${source:Version})
 Conflicts: libboost1.42-doc, libboost1.46-doc, libboost1.48-doc, libboost1.49-doc, libboost1.50-doc, libboost1.52-doc, libboost1.53-doc, libboost1.54-doc, libboost1.55-doc, libboost1.57-doc, libboost1.58-doc, libboost1.60-doc, libboost1.61-doc, libboost1.62-doc, libboost1.63-doc
 Description: Boost.org libraries documentation placeholder

Added: boost/trunk/debian/patches/make-docs-use-offline-resources-only.patch
URL: http://svn.debian.org/wsvn/pkg-boost/boost/trunk/debian/patches/make-docs-use-offline-resources-only.patch?rev=15050&op=file
==============================================================================
--- boost/trunk/debian/patches/make-docs-use-offline-resources-only.patch	(added)
+++ boost/trunk/debian/patches/make-docs-use-offline-resources-only.patch	Tue Oct 24 15:10:15 2017
@@ -0,0 +1,56 @@
+Description: Offline the docs
+ Make documentation not use external webfonts and/or external javascript
+Author: Dimitri John Ledkov <xnox at ubuntu.com>
+
+--- boost1.65.1-1.65.1+dfsg.orig/libs/assert/doc/index.adoc
++++ boost1.65.1-1.65.1+dfsg/libs/assert/doc/index.adoc
+@@ -6,6 +6,7 @@ Distributed under the Boost Software Lic
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+ ////
++:webfonts!:
+ 
+ # Boost.Assert
+ Peter Dimov
+--- boost1.65.1-1.65.1+dfsg.orig/libs/geometry/doc/index/Doxyfile
++++ boost1.65.1-1.65.1+dfsg/libs/geometry/doc/index/Doxyfile
+@@ -217,7 +217,7 @@ EXT_LINKS_IN_WINDOW    = NO
+ FORMULA_FONTSIZE       = 10
+ FORMULA_TRANSPARENT    = YES
+ USE_MATHJAX            = NO
+-MATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest
++MATHJAX_RELPATH        = file:///usr/share/javascript/mathjax/MathJax.js
+ MATHJAX_EXTENSIONS     = 
+ SEARCHENGINE           = YES
+ SERVER_BASED_SEARCH    = NO
+--- boost1.65.1-1.65.1+dfsg.orig/libs/hana/doc/Doxyfile.in
++++ boost1.65.1-1.65.1+dfsg/libs/hana/doc/Doxyfile.in
+@@ -133,6 +133,6 @@ SEARCHENGINE            = @HANA_SEARCHEN
+ # Mathjax (HTML only)
+ USE_MATHJAX             = YES
+ MATHJAX_FORMAT          = HTML-CSS
+-MATHJAX_RELPATH         = https://cdn.mathjax.org/mathjax/latest
++MATHJAX_RELPATH         = file:///usr/share/javascript/mathjax/MathJax.js
+ MATHJAX_EXTENSIONS      =
+ MATHJAX_CODEFILE        = @Boost.Hana_SOURCE_DIR@/doc/js/mathjax-config.js
+--- boost1.65.1-1.65.1+dfsg.orig/libs/smart_ptr/doc/smart_ptr.adoc
++++ boost1.65.1-1.65.1+dfsg/libs/smart_ptr/doc/smart_ptr.adoc
+@@ -6,6 +6,7 @@ Distributed under the Boost Software Lic
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+ ////
++:webfonts!:
+ 
+ # Boost.SmartPtr: The Smart Pointer Library
+ Greg Colvin, Beman Dawes, Peter Dimov, Glen Fernandes
+--- boost1.65.1-1.65.1+dfsg.orig/libs/test/doc/doxygen/Doxyfile
++++ boost1.65.1-1.65.1+dfsg/libs/test/doc/doxygen/Doxyfile
+@@ -1468,7 +1468,7 @@ MATHJAX_FORMAT         = HTML-CSS
+ # The default value is: http://cdn.mathjax.org/mathjax/latest.
+ # This tag requires that the tag USE_MATHJAX is set to YES.
+ 
+-MATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest
++MATHJAX_RELPATH        = file:///usr/share/javascript/mathjax/MathJax.js
+ 
+ # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
+ # extension names that should be enabled during MathJax rendering. For example

Modified: boost/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-boost/boost/trunk/debian/patches/series?rev=15050&op=diff
==============================================================================
--- boost/trunk/debian/patches/series	(original)
+++ boost/trunk/debian/patches/series	Tue Oct 24 15:10:15 2017
@@ -4,3 +4,4 @@
 ppc64el-fp_traits-ibm-long-double.patch
 no-gcc-m-options.diff
 no-gcc-march-options.patch
+make-docs-use-offline-resources-only.patch




More information about the pkg-boost-commits mailing list