Hello community,

here is the log from the commit of package python-readthedocs-sphinx-ext for 
openSUSE:Factory checked in at 2020-06-11 14:37:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-readthedocs-sphinx-ext (Old)
 and      /work/SRC/openSUSE:Factory/.python-readthedocs-sphinx-ext.new.3606 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-readthedocs-sphinx-ext"

Thu Jun 11 14:37:47 2020 rev:5 rq:810545 version:1.0.4

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-readthedocs-sphinx-ext/python-readthedocs-sphinx-ext.changes
      2020-04-28 22:29:13.285401236 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-readthedocs-sphinx-ext.new.3606/python-readthedocs-sphinx-ext.changes
    2020-06-11 14:37:50.624114137 +0200
@@ -1,0 +2,6 @@
+Sat May 30 23:26:29 UTC 2020 - Arun Persaud <[email protected]>
+
+- update to version 1.0.4:
+  * Re-add proxied_api_host to allow overriding it
+
+-------------------------------------------------------------------

Old:
----
  readthedocs-sphinx-ext-1.0.3.tar.gz

New:
----
  readthedocs-sphinx-ext-1.0.4.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-readthedocs-sphinx-ext.spec ++++++
--- /var/tmp/diff_new_pack.2pTK9O/_old  2020-06-11 14:37:52.584119743 +0200
+++ /var/tmp/diff_new_pack.2pTK9O/_new  2020-06-11 14:37:52.584119743 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-readthedocs-sphinx-ext
-Version:        1.0.3
+Version:        1.0.4
 Release:        0
 Summary:        Sphinx extension for Read the Docs overrides
 License:        MIT

++++++ readthedocs-sphinx-ext-1.0.3.tar.gz -> 
readthedocs-sphinx-ext-1.0.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/readthedocs-sphinx-ext-1.0.3/PKG-INFO 
new/readthedocs-sphinx-ext-1.0.4/PKG-INFO
--- old/readthedocs-sphinx-ext-1.0.3/PKG-INFO   2020-04-21 19:24:55.000000000 
+0200
+++ new/readthedocs-sphinx-ext-1.0.4/PKG-INFO   2020-05-26 18:33:15.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: readthedocs-sphinx-ext
-Version: 1.0.3
+Version: 1.0.4
 Summary: Sphinx extension for Read the Docs overrides
 Home-page: http://github.com/readthedocs/readthedocs-sphinx-ext
 Author: Read the Docs, Inc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/readthedocs-sphinx-ext-1.0.3/readthedocs_ext/_static/readthedocs-data.js_t 
new/readthedocs-sphinx-ext-1.0.4/readthedocs_ext/_static/readthedocs-data.js_t
--- 
old/readthedocs-sphinx-ext-1.0.3/readthedocs_ext/_static/readthedocs-data.js_t  
    2020-04-21 18:23:00.000000000 +0200
+++ 
new/readthedocs-sphinx-ext-1.0.4/readthedocs_ext/_static/readthedocs-data.js_t  
    2020-05-26 18:32:01.000000000 +0200
@@ -10,6 +10,9 @@
     docroot: {{ conf_py_path|default('')|tojson }},
     source_suffix: {{ source_suffix|default('')|tojson }},
     api_host: {{ api_host|default('')|tojson }},
+    {% if proxied_api_host %}
+    proxied_api_host: {{ proxied_api_host|tojson }},
+    {% endif %}
     commit: {{ commit|default('')|tojson }},
     ad_free: {% if ad_free %}true{% else %}false{% endif %},
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/readthedocs-sphinx-ext-1.0.3/readthedocs_ext/readthedocs.py 
new/readthedocs-sphinx-ext-1.0.4/readthedocs_ext/readthedocs.py
--- old/readthedocs-sphinx-ext-1.0.3/readthedocs_ext/readthedocs.py     
2020-04-21 18:23:00.000000000 +0200
+++ new/readthedocs-sphinx-ext-1.0.4/readthedocs_ext/readthedocs.py     
2020-05-20 01:24:34.000000000 +0200
@@ -11,8 +11,6 @@
 
 import sphinx
 from sphinx import package_dir
-from sphinx.builders.html import (DirectoryHTMLBuilder, SingleFileHTMLBuilder,
-                                  StandaloneHTMLBuilder)
 from sphinx.util.console import bold
 
 
@@ -25,6 +23,16 @@
 except ImportError:
     from logging import getLogger
 
+try:
+    # Available from Sphinx 2.0
+    from sphinx.builders.dirhtml import DirectoryHTMLBuilder
+    from sphinx.builders.html import StandaloneHTMLBuilder
+    from sphinx.builders.singlehtml import SingleFileHTMLBuilder
+except ImportError:
+    from sphinx.builders.html import (DirectoryHTMLBuilder,
+                                      SingleFileHTMLBuilder,
+                                      StandaloneHTMLBuilder)
+
 log = getLogger(__name__)
 
 DEFAULT_STATIC_URL = 'https://assets.readthedocs.org/static/'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/readthedocs-sphinx-ext-1.0.3/readthedocs_sphinx_ext.egg-info/PKG-INFO 
new/readthedocs-sphinx-ext-1.0.4/readthedocs_sphinx_ext.egg-info/PKG-INFO
--- old/readthedocs-sphinx-ext-1.0.3/readthedocs_sphinx_ext.egg-info/PKG-INFO   
2020-04-21 19:24:54.000000000 +0200
+++ new/readthedocs-sphinx-ext-1.0.4/readthedocs_sphinx_ext.egg-info/PKG-INFO   
2020-05-26 18:33:14.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: readthedocs-sphinx-ext
-Version: 1.0.3
+Version: 1.0.4
 Summary: Sphinx extension for Read the Docs overrides
 Home-page: http://github.com/readthedocs/readthedocs-sphinx-ext
 Author: Read the Docs, Inc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/readthedocs-sphinx-ext-1.0.3/setup.py 
new/readthedocs-sphinx-ext-1.0.4/setup.py
--- old/readthedocs-sphinx-ext-1.0.3/setup.py   2020-04-21 19:24:38.000000000 
+0200
+++ new/readthedocs-sphinx-ext-1.0.4/setup.py   2020-05-26 18:32:11.000000000 
+0200
@@ -4,7 +4,7 @@
 
 setup(
     name='readthedocs-sphinx-ext',
-    version='1.0.3',
+    version='1.0.4',
     author='Read the Docs, Inc',
     author_email='[email protected]',
     url='http://github.com/readthedocs/readthedocs-sphinx-ext',


Reply via email to