commit python-Sphinx for openSUSE:Factory

2020-11-06 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2020-11-06 23:43:21

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.11331 (New)


Package is "python-Sphinx"

Fri Nov  6 23:43:21 2020 rev:69 rq:846078 version:3.2.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2020-10-29 09:46:20.796057557 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.11331/python-Sphinx.changes   
2020-11-06 23:43:22.947461624 +0100
@@ -1,0 +2,14 @@
+Wed Nov  4 11:10:14 UTC 2020 - Benjamin Greiner 
+
+- Fix the lang collection macro override.
+  * gh#openSUSE/python-rpm-macros#66
+  * gh#openSUSE/python-rpm-macros#74
+
+---
+Tue Nov  3 19:56:15 UTC 2020 - Benjamin Greiner 
+
+- Fix lang files collection for multiple flavors
+  * gh#openSUSE/python-rpm-macros#5
+  * gh#openSUSE/python-rpm-macros#66
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.DFxrS1/_old  2020-11-06 23:43:23.935459725 +0100
+++ /var/tmp/diff_new_pack.DFxrS1/_new  2020-11-06 23:43:23.939459717 +0100
@@ -251,7 +251,16 @@
 %python_expand mkdir -p %{buildroot}%{$python_sitelib}/sphinxcontrib
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
-%find_lang sphinx
+# gh#openSUSE/python-rpm-macros#74
+%{!?python_find_lang: %define python_find_lang() \
+%find_lang %{**} \
+langfile=%{?2}%{!?2:%1.lang} \
+%{python_expand # \
+grep -v 'python.*site-packages' ${langfile} > %{$python_prefix}-${langfile} \
+grep -F %{$python_sitelib} ${langfile} >> %{$python_prefix}-${langfile} \
+} \
+}
+%python_find_lang sphinx
 
 %else
 mkdir -p %{buildroot}%{_docdir}/python-Sphinx/
@@ -282,7 +291,7 @@
 %endif
 
 %if ! %{with test}
-%files %{python_files} -f sphinx.lang
+%files %{python_files} -f %{python_prefix}-sphinx.lang
 %license LICENSE
 %doc AUTHORS CHANGES README.rst
 %python_alternative %{_bindir}/sphinx-apidoc






commit python-Sphinx for openSUSE:Factory

2020-10-29 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2020-10-29 09:46:17

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.3463 (New)


Package is "python-Sphinx"

Thu Oct 29 09:46:17 2020 rev:68 rq:838296 version:3.2.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2020-09-04 11:01:12.922690970 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.3463/python-Sphinx.changes
2020-10-29 09:46:20.796057557 +0100
@@ -1,0 +2,5 @@
+Mon Sep 28 13:45:37 UTC 2020 - Dirk Mueller 
+
+- add sphinx-pygments-compat.patch (fix tests with newer pygments) 
+
+---

New:

  sphinx-pygments-compat.patch



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.kNe9g1/_old  2020-10-29 09:46:22.100058788 +0100
+++ /var/tmp/diff_new_pack.kNe9g1/_new  2020-10-29 09:46:22.100058788 +0100
@@ -38,6 +38,8 @@
 Source1:
https://files.pythonhosted.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz.asc
 Source2:python3.inv
 Source99:   python-Sphinx-rpmlintrc
+# PATCH-FIX-UPSTREAM: 
https://patch-diff.githubusercontent.com/raw/sphinx-doc/sphinx/pull/8205.patch
+Patch0: sphinx-pygments-compat.patch
 BuildRequires:  %{python_module base}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -217,6 +219,7 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
+%autopatch -p1
 
 sed -i 's/\r$//' sphinx/themes/basic/static/jquery.js # Fix wrong end-of-line 
encoding
 



++ sphinx-pygments-compat.patch ++
>From 85b24a2e88ea71edc728aff3b078d34c2f374f06 Mon Sep 17 00:00:00 2001
From: Takeshi KOMIYA 
Date: Sun, 13 Sep 2020 09:16:32 +0900
Subject: [PATCH] Fix our test failed with pygments-2.7.0

Since pygments-2.7.0, it has changed the style of output HTML.
That makes our test broken.  This fixes it to pass with new pygments.
---
 tests/test_build_html.py | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/tests/test_build_html.py b/tests/test_build_html.py
index e949f11572..1efc6c14a6 100644
--- a/tests/test_build_html.py
+++ b/tests/test_build_html.py
@@ -10,8 +10,10 @@
 
 import os
 import re
+from distutils.version import LooseVersion
 from itertools import cycle, chain
 
+import pygments
 import pytest
 from html5lib import HTMLParser
 
@@ -1591,4 +1593,8 @@ def test_html_codeblock_linenos_style_inline(app):
 app.build()
 content = (app.outdir / 'index.html').read_text()
 
-assert '1 ' in content
+pygments_version = tuple(LooseVersion(pygments.__version__).version)
+if pygments_version > (2, 7):
+assert '1' in content
+else:
+assert '1 ' in content



commit python-Sphinx for openSUSE:Factory

2020-09-04 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2020-09-04 11:00:14

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.3399 (New)


Package is "python-Sphinx"

Fri Sep  4 11:00:14 2020 rev:67 rq:830124 version:3.2.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2020-07-26 16:15:10.216584252 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.3399/python-Sphinx.changes
2020-09-04 11:01:12.922690970 +0200
@@ -1,0 +2,113 @@
+Tue Aug 18 14:44:04 UTC 2020 - Dirk Mueller 
+
+- update to 3.2.1:
+  * #8095: napoleon: Add :confval:`napoleon_preprocess_types` to enable the 
type
+preprocessor for numpy style docstrings
+  * #8114: C and C++, parse function attributes after parameters and 
qualifiers.
+  * #8074: napoleon: Crashes during processing C-ext module
+  * #8088: napoleon: "Inline literal start-string without end-string" warning 
in
+Numpy style Parameters section
+  * #8084: autodoc: KeyError is raised on documenting an attribute of the 
broken
+class
+  * #8091: autodoc: AttributeError is raised on documenting an attribute on 
Python
+3.5.2
+  * #8099: autodoc: NameError is raised when target code uses ``TYPE_CHECKING``
+  * C++, fix parsing of template template paramters, broken by the fix of #7944
+
+---
+Thu Aug 13 14:02:03 UTC 2020 - Dirk Mueller 
+
+
+- update to 3.2.0:
+  * #2076: autodoc: Allow overriding of exclude-members in skip-member function
+  * #8034: autodoc: ``:private-member:`` can take an explicit list of member 
names
+to be documented
+  * #2024: autosummary: Add :confval:`autosummary_filename_map` to avoid 
conflict
+of filenames between two object with different case
+  * #8011: autosummary: Support instance attributes as a target of autosummary
+directive
+  * #7849: html: Add :confval:`html_codeblock_linenos_style` to change the 
style
+of line numbers for code-blocks
+  * #7853: C and C++, support parameterized GNU style attributes.
+  * #7888: napoleon: Add aliases Warn and Raise.
+  * #7690: napoleon: parse type strings and make them hyperlinks as possible.  
The
+conversion rule can be updated via :confval:`napoleon_type_aliases`
+  * #8049: napoleon: Create a hyperlink for each the type of parameter when
+:confval:`napoleon_use_params` is False
+  * C, added :rst:dir:`c:alias` directive for inserting copies
+of existing declarations.
+  * #7745: html: inventory is broken if the docname contains a space
+  * #7991: html search: Allow searching for numbers
+  * #7902: html theme: Add a new option :confval:`globaltoc_maxdepth` to 
control
+the behavior of globaltoc in sidebar
+  * #7840: i18n: Optimize the dependencies check on bootstrap
+  * #7768: i18n: :confval:`figure_language_filename` supports ``docpath`` token
+  * #5208: linkcheck: Support checks for local links
+  * #5090: setuptools: Link verbosity to distutils' -v and -q option
+  * #6698: doctest: Add ``:trim-doctest-flags:`` and 
``:no-trim-doctest-flags:``
+options to doctest, testcode and testoutput directives
+  * #7052: add ``:noindexentry:`` to the Python, C, C++, and Javascript 
domains.
+Update the documentation to better reflect the relationship between this 
option
+and the ``:noindex:`` option.
+  * #7899: C, add possibility of parsing of some pre-v3 style type directives 
and
+roles and try to convert them to equivalent v3 directives/roles.
+Set the new option :confval:`c_allow_pre_v3` to ``True`` to enable this.
+The warnings printed from this functionality can be suppressed by setting
+:confval:`c_warn_on_allowed_pre_v3`` to ``True``.
+The functionality is immediately deprecated.
+  * #7999: C, add support for named variadic macro arguments.
+  * #8071: Allow to suppress "self referenced toctrees" warning
+  * #7886: autodoc: TypeError is raised on mocking generic-typed classes
+  * #7935: autodoc: function signature is not shown when the function has a
+parameter having ``inspect._empty`` as its default value
+  * #7901: autodoc: type annotations for overloaded functions are not resolved
+  * #904: autodoc: An instance attribute cause a crash of autofunction 
directive
+  * #1362: autodoc: ``private-members`` option does not work for class 
attributes
+  * #7983: autodoc: Generator type annotation is wrongly rendered in py36
+  * #8030: autodoc: An uninitialized annotated instance variable is not 
documented
+when ``:inherited-members:`` option given
+  * #8032: autodoc: A type hint for the instance variable defined at parent 
class
+is not shown in the document of the derived class
+  * #8041: autodoc: An annotated instance variab

commit python-Sphinx for openSUSE:Factory

2020-07-26 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2020-07-26 16:14:09

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.3592 (New)


Package is "python-Sphinx"

Sun Jul 26 16:14:09 2020 rev:66 rq:821465 version:3.1.2

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2020-06-21 19:02:55.308326231 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.3592/python-Sphinx.changes
2020-07-26 16:15:10.216584252 +0200
@@ -1,0 +2,229 @@
+Thu Jul 16 12:52:54 UTC 2020 - Matej Cepl 
+
+- In the new multiversion world, python*.inv is in python3.8
+  directory not python3.
+
+---
+Sat Jul 11 18:49:26 UTC 2020 - Arun Persaud 
+
+- update to version 3.1.2:
+  * Incompatible changes
++ #7650: autodoc: the signature of base function will be shown for
+   decorated functions, not a signature of decorator
+  * Bugs fixed
++ #7844: autodoc: Failed to detect module when relative module
+   name given
++ #7856: autodoc: AttributeError is raised when non-class object
+   is given to the autoclass directive
++ #7850: autodoc: KeyError is raised for invalid mark up when
+   autodoc_typehints is 'description'
++ #7812: autodoc: crashed if the target name matches to both an
+   attribute and module that are same name
++ #7650: autodoc: function signature becomes "(*args, **kwargs)"
+   if the function is decorated by generic decorator
++ #7812: autosummary: generates broken stub files if the target
+   code contains an attribute and module that are same name
++ #7806: viewcode: Failed to resolve viewcode references on 3rd
+   party builders
++ #7838: html theme: List items have extra vertical space
++ #7878: html theme: Undesired interaction between "overflow" and
+   "float"
+
+- changes from version 3.1.1:
+  * Incompatible changes
++ #7808: napoleon: a type for attribute are represented as typed
+   field
+  * Features added
++ #7807: autodoc: Show detailed warning when type_comment is
+   mismatched with its signature
+  * Bugs fixed
++ #7808: autodoc: Warnings raised on variable and attribute type
+   annotations
++ #7802: autodoc: EOFError is raised on parallel build
++ #7821: autodoc: TypeError is raised for overloaded C-ext
+   function
++ #7805: autodoc: an object which descriptors returns is
+   unexpectedly documented
++ #7807: autodoc: wrong signature is shown for the function using
+   contextmanager
++ #7812: autosummary: generates broken stub files if the target
+   code contains an attribute and module that are same name
++ #7808: napoleon: Warnings raised on variable and attribute type
+   annotations
++ #7811: sphinx.util.inspect causes circular import problem
+
+- changes from version 3.1.0:
+  * Dependencies
++ #7746: mathjax: Update to 2.7.5
+  * Incompatible changes
++ #7477: imgconverter: Invoke "magick convert" command by default
+   on Windows
+  * Deprecated
++ The first argument for
+  sphinx.ext.autosummary.generate.AutosummaryRenderer has been
+  changed to Sphinx object
++ "sphinx.ext.autosummary.generate.AutosummaryRenderer" takes an
+  object type as an argument
++ The "ignore" argument of
+  "sphinx.ext.autodoc.Documenter.get_doc()"
++ The "template_dir" argument of "sphinx.ext.autosummary.generate.
+  AutosummaryRenderer"
++ The "module" argument of "sphinx.ext.autosummary.generate.
+  find_autosummary_in_docstring()"
++ The "builder" argument of "sphinx.ext.autosummary.generate.
+  generate_autosummary_docs()"
++ The "template_dir" argument of "sphinx.ext.autosummary.generate.
+  generate_autosummary_docs()"
++ The "ignore" argument of
+  "sphinx.util.docstring.prepare_docstring()"
++ "sphinx.ext.autosummary.generate.AutosummaryRenderer.exists()"
++ "sphinx.util.rpartition()"
+  * Features added
++ LaTeX: Make the "toplevel_sectioning" setting optional in LaTeX
+  theme
++ LaTeX: Allow to override papersize and pointsize from LaTeX
+  themes
++ LaTeX: Add :confval:`latex_theme_options` to override theme
+  options
++ #7410: Allow to suppress "circular toctree references detected"
+   warnings using :confval:`suppress_warnings`
++ C, added scope control directives, :rst:dir:`c:namespace`,
+  :rst:dir:`c:namespace-push`, and :rst:dir:`c:namespace-pop`.
++ #2044: autodoc: Suppress default value for instance attributes
++ #7473: autodoc: consider a member public if docstring contains
+   ":meta public:" in info-field-list
++ #7487: autodoc: Al

commit python-Sphinx for openSUSE:Factory

2020-06-22 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2020-06-21 18:48:27

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.3606 (New)


Package is "python-Sphinx"

Sun Jun 21 18:48:27 2020 rev:65 rq:811095 version:3.0.4

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2020-04-09 23:14:31.070212003 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.3606/python-Sphinx.changes
2020-06-21 19:02:55.308326231 +0200
@@ -1,0 +2,336 @@
+Sat May 30 23:25:39 UTC 2020 - Arun Persaud 
+
+- update to version 3.0.4:
+  * Bugs fixed
++ #7567: autodoc: parametrized types are shown twice for generic
+   types
++ #7637: autodoc: system defined TypeVars are shown in Python 3.9
++ #7611: md5 fails when OpenSSL FIPS is enabled
++ #7626: release package does not contain "CODE_OF_CONDUCT"
+
+---
+Mon May  4 10:17:24 UTC 2020 - Jan Zerebecki 
+
+- Add python3.inv as a specific Source.
+- update to version 3.0.3
+  * Features added
+* C, parse array declarators with static, qualifiers, and VLA 
specification.
+  * Bugs fixed
+* #7516: autodoc: crashes if target object raises an error on accessing
+  its attributes
+- update to version 3.0.2
+  * Features added
+* C, parse attributes and add :confval:`c_id_attributes`
+  and :confval:`c_paren_attributes` to support user-defined attributes.
+  * Bugs fixed
+* #7461: py domain: fails with IndexError for empty tuple in type 
annotation
+* #7510: py domain: keyword-only arguments are documented as having a 
default of
+  None
+* #7418: std domain: :rst:role:`term` role could not match 
case-insensitively
+* #7461: autodoc: empty tuple in type annotation is not shown correctly
+* #7479: autodoc: Sphinx builds has been slower since 3.0.0 on mocking
+* C++, fix spacing issue in east-const declarations.
+* #7414: LaTeX: Xindy language options were incorrect
+* sphinx crashes with ImportError on python3.5.1
+
+- update to 3.0.1
+  * Incompatible changes
+* #7418: std domain: :rst:dir:`term` role becomes case sensitive
+  * Bugs fixed
+* #7428: py domain: a reference to class ``None`` emits a nitpicky warning
+* #7445: py domain: a return annotation ``None`` in the function signature 
is
+  not converted to a hyperlink when using intersphinx
+* #7418: std domain: duplication warning for glossary terms is case 
insensitive
+* #7438: C++, fix merging overloaded functions in parallel builds.
+* #7422: autodoc: fails with ValueError when using autodoc_mock_imports
+* #7435: autodoc: ``autodoc_typehints='description'`` doesn't suppress 
typehints
+  in signature for classes/methods
+* #7451: autodoc: fails with AttributeError when an object returns 
non-string
+  object as a ``__doc__`` member
+* #7423: crashed when giving a non-string object to logger
+* #7479: html theme: Do not include xmlns attribute with HTML 5 doctype
+* #7426: html theme: Escape some links in HTML templates
+
+- update to version 3.0.0
+  * Dependencies
+* LaTeX: drop dependency on :program:`extractbb` for image inclusion in
+  Japanese documents as ``.xbb`` files are unneeded by :program:`dvipdfmx`
+  since TeXLive2015 (refs: #6189)
+* babel-2.0 or above is available (Unpinned)
+  * Incompatible changes
+* Drop features and APIs deprecated in 1.8.x
+* #247: autosummary: stub files are overwritten automatically by default.  
see
+  :confval:`autosummary_generate_overwrite` to change the behavior
+* #5923: autodoc: the members of ``object`` class are not documented by 
default
+  when ``:inherited-members:`` and ``:special-members:`` are given.
+* #6830: py domain: ``meta`` fields in info-field-list becomes reserved.  
They
+  are not displayed on output document now
+* #6417: py domain: doctree of desc_parameterlist has been changed.  The
+  argument names, annotations and default values are wrapped with inline 
node
+* The structure of ``sphinx.events.EventManager.listeners`` has changed
+* Due to the scoping changes for :rst:dir:`productionlist` some uses of
+  :rst:role:`token` must be modified to include the scope which was 
previously
+  ignored.
+* #6903: Internal data structure of Python, reST and standard domains have
+  changed.  The node_id is added to the index of objects and modules.  Now 
they
+  contains a pair of docname and node_id for cross reference.
+* #7276: C++ domain: Non intended behavior is removed such as 
``say_hello_``
+  links to ``.. cpp:function:: say_hello()``
+* #7210: js domain: Non intended behav

commit python-Sphinx for openSUSE:Factory

2020-04-09 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2020-04-09 23:14:28

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.3248 (New)


Package is "python-Sphinx"

Thu Apr  9 23:14:28 2020 rev:64 rq:791929 version:2.3.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2020-03-11 18:44:58.407363525 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.3248/python-Sphinx.changes
2020-04-09 23:14:31.070212003 +0200
@@ -1,0 +2,6 @@
+Tue Apr  7 08:20:04 UTC 2020 - Steve Kowalik 
+
+- Revert to 2.3.1 due to severely increased memory usage when building
+  kernel documentation. bsc#1166965
+
+---

Old:

  Sphinx-2.4.4.tar.gz

New:

  Sphinx-2.3.1.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.YJ5HuW/_old  2020-04-09 23:14:31.606212312 +0200
+++ /var/tmp/diff_new_pack.YJ5HuW/_new  2020-04-09 23:14:31.610212314 +0200
@@ -28,7 +28,7 @@
 %endif
 %define skip_python2 1
 Name:   python-Sphinx%{psuffix}
-Version:2.4.4
+Version:2.3.1
 Release:0
 Summary:Python documentation generator
 License:BSD-2-Clause

++ Sphinx-2.4.4.tar.gz -> Sphinx-2.3.1.tar.gz ++
 21141 lines of diff (skipped)




commit python-Sphinx for openSUSE:Factory

2020-02-29 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2020-02-29 21:19:36

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.26092 (New)


Package is "python-Sphinx"

Sat Feb 29 21:19:36 2020 rev:62 rq:779133 version:2.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-12-29 15:48:26.623141926 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.26092/python-Sphinx.changes   
2020-02-29 21:19:40.538014003 +0100
@@ -1,0 +2,153 @@
+Sat Feb 22 18:38:16 UTC 2020 - Arun Persaud 
+
+- specfile:
+  * update copyright year
+
+- update to version 2.4.3:
+  * Bugs fixed
++ #7184: autodoc: "*args" and "**kwarg" in type comments are not
+   handled properly
++ #7189: autodoc: classmethod coroutines are not detected
++ #7183: intersphinx: ":attr:" reference to property is broken
++ #6244, #6387: html search: Search breaks/hangs when built with
+   dirhtml builder
++ #7195: todo: emit doctree-resolved event with non-document node
+   incorrectly
+
+- changes from version 2.4.2:
+  * Bugs fixed
++ #7138: autodoc: "autodoc.typehints" crashed when variable has
+   unbound object as a value
++ #7156: autodoc: separator for keyword only arguments is not
+   shown
++ #7146: autodoc: IndexError is raised on suppressed type_comment
+   found
++ #7161: autodoc: typehints extension does not support parallel
+   build
++ #7178: autodoc: TypeError is raised on fetching type annotations
++ #7151: crashed when extension assigns a value to
+   "env.indexentries"
++ #7170: text: Remove debug print
++ #7137: viewcode: Avoid to crash when non-python code given
+
+- changes from version 2.4.1:
+  * Bugs fixed
++ #7120: html: crashed when on scaling SVG images which have float
+   dimentions
++ #7126: autodoc: TypeError: 'getset_descriptor' object is not
+   iterable
+
+- changes from version 2.4.0:
+  * Deprecated
++ The "decode" argument of "sphinx.pycode.ModuleAnalyzer()"
++ "sphinx.directives.other.Index"
++ "sphinx.environment.temp_data['gloss_entries']"
++ "sphinx.environment.BuildEnvironment.indexentries"
++
+  "sphinx.environment.collectors.indexentries.IndexEntriesCollector"
++ "sphinx.ext.apidoc.INITPY"
++ "sphinx.ext.apidoc.shall_skip()"
++ "sphinx.io.FiletypeNotFoundError"
++ "sphinx.io.get_filetype()"
++ "sphinx.pycode.ModuleAnalyzer.encoding"
++ "sphinx.roles.Index"
++ "sphinx.util.detect_encoding()"
++ "sphinx.util.get_module_source()"
++ "sphinx.util.inspect.Signature"
++ "sphinx.util.inspect.safe_getmembers()"
++ "sphinx.writers.latex.LaTeXTranslator.settings.author"
++ "sphinx.writers.latex.LaTeXTranslator.settings.contentsname"
++ "sphinx.writers.latex.LaTeXTranslator.settings.docclass"
++ "sphinx.writers.latex.LaTeXTranslator.settings.docname"
++ "sphinx.writers.latex.LaTeXTranslator.settings.title"
++ "sphinx.writers.latex.ADDITIONAL_SETTINGS"
++ "sphinx.writers.latex.DEFAULT_SETTINGS"
++ "sphinx.writers.latex.LUALATEX_DEFAULT_FONTPKG"
++ "sphinx.writers.latex.PDFLATEX_DEFAULT_FONTPKG"
++ "sphinx.writers.latex.XELATEX_DEFAULT_FONTPKG"
++ "sphinx.writers.latex.XELATEX_GREEK_DEFAULT_FONTPKG"
+  * Features added
++ #6910: inheritance_diagram: Make the background of diagrams
+   transparent
++ #6446: duration: Add "sphinx.ext.durations" to inspect which
+   documents slow down the build
++ #6837: LaTeX: Support a nested table
++ #7115: LaTeX: Allow to override LATEXOPTS and LATEXMKOPTS via
+   environment variable
++ #6966: graphviz: Support ":class:" option
++ #6696: html: ":scale:" option of image/figure directive not
+   working for SVG images (imagesize-1.2.0 or above is required)
++ #7025: html search: full text search can be disabled for
+   individual document using ":nosearch:" file-wide metadata
++ #6994: imgconverter: Support illustrator file (.ai) to .png
+   conversion
++ autodoc: Support Positional-Only Argument separator (PEP-570
+  compliant)
++ autodoc: Support type annotations for variables
++ #2755: autodoc: Add new event:
+   :event:`autodoc-before-process-signature`
++ #2755: autodoc: Support type_comment style (ex. "# type: (str)
+   -> str") annotation (python3.8+ or `typed_ast
+   `_ is required)
++ #7051: autodoc: Support instance variables without defaults
+   (PEP-526)
++ #6418: autodoc: Add a new extension
+   "sphinx.ext.autodoc.typehints". It shows typehints as object
+   description if "autodoc_typehints = "description"" set.  This
+   

commit python-Sphinx for openSUSE:Factory

2019-12-29 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-12-29 15:48:20

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.6675 (New)


Package is "python-Sphinx"

Sun Dec 29 15:48:20 2019 rev:61 rq:759289 version:2.3.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-12-11 12:12:41.528552591 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.6675/python-Sphinx.changes
2019-12-29 15:48:26.623141926 +0100
@@ -1,0 +2,43 @@
+Wed Dec 25 18:54:41 UTC 2019 - Luigi Baldoni 
+
+- Update to version 2.3.1
+  * #6936: sphinx-autogen: raises AttributeError
+  version 2.3.0:
+  * #6742: ``end-before`` option of :rst:dir:`literalinclude`
+directive does not match the first line of the code block.
+  * #1331: Change default User-Agent header to ``"Sphinx/X.Y.Z
+requests/X.Y.Z python/X.Y.Z"``.  It can be changed via
+:confval:`user_agent`.
+  * #6867: text: content of admonitions starts after a blank line
+  * #6707: C++, support bit-fields.
+  * #267: html: Eliminate prompt characters of doctest block
+from copyable text
+  * #6548: html: Use favicon for OpenSearch if available
+  * #6729: html theme: agogo theme now supports ``rightsidebar``
+option
+  * #6780: Add PEP-561 Support
+  * #6762: latex: Allow to load additonal LaTeX packages via
+``extrapackages`` key of :confval:`latex_elements`
+  * #1331: Add new config variable: :confval:`user_agent`
+  * #6000: LaTeX: have backslash also be an inline literal word
+wrap break character
+  * #4186: LaTeX: Support upLaTeX as a new
+:confval:`latex_engine` (experimental)
+  * #6812: Improve a warning message when extensions are not
+parallel safe
+  * #6818: Improve Intersphinx performance for multiple remote
+inventories.
+  * #2546: apidoc: .so file support
+  * #6798: autosummary: emit ``autodoc-skip-member`` event on
+generating stub file
+  * #6483: i18n: make explicit titles in toctree translatable
+  * #6816: linkcheck: Add :confval:`linkcheck_auth` option to
+provide authentication information when doing ``linkcheck``
+builds
+  * #6872: linkcheck: Handles HTTP 308 Permanent Redirect
+  * #6613: html: Wrap section number in span tag
+  * #6781: gettext: Add :confval:`gettext_last_translator' and
+:confval:`gettext_language_team` to customize headers of POT
+file
+
+---

Old:

  Sphinx-2.2.2.tar.gz

New:

  Sphinx-2.3.1.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.xFWKTs/_old  2019-12-29 15:48:27.159142170 +0100
+++ /var/tmp/diff_new_pack.xFWKTs/_new  2019-12-29 15:48:27.159142170 +0100
@@ -28,7 +28,7 @@
 %endif
 %define skip_python2 1
 Name:   python-Sphinx%{psuffix}
-Version:2.2.2
+Version:2.3.1
 Release:0
 Summary:Python documentation generator
 License:BSD-2-Clause

++ Sphinx-2.2.2.tar.gz -> Sphinx-2.3.1.tar.gz ++
 12565 lines of diff (skipped)




commit python-Sphinx for openSUSE:Factory

2019-12-11 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-12-11 12:11:15

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.4691 (New)


Package is "python-Sphinx"

Wed Dec 11 12:11:15 2019 rev:60 rq:755170 version:2.2.2

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-11-04 17:13:47.928734978 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.4691/python-Sphinx.changes
2019-12-11 12:12:41.528552591 +0100
@@ -1,0 +2,15 @@
+Sat Dec  7 17:50:25 UTC 2019 - Arun Persaud 
+
+- update to version 2.2.2:
+  * Incompatible changes
++ #6803: For security reason of python, parallel mode is disabled
+   on macOS and Python3.8+
+  * Bugs fixed
++ #6776: LaTeX: 2019-10-01 LaTeX release breaks
+   :file:`sphinxcyrillic.sty`
++ #6815: i18n: French, Hindi, Chinese, Japanese and Korean
+   translation messages has been broken
++ #6803: parallel build causes AttributeError on macOS and
+   Python3.8
+
+---

Old:

  Sphinx-2.2.1.tar.gz

New:

  Sphinx-2.2.2.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.UzuN5V/_old  2019-12-11 12:12:43.588552011 +0100
+++ /var/tmp/diff_new_pack.UzuN5V/_new  2019-12-11 12:12:43.592552011 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Sphinx
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,7 +28,7 @@
 %endif
 %define skip_python2 1
 Name:   python-Sphinx%{psuffix}
-Version:2.2.1
+Version:2.2.2
 Release:0
 Summary:Python documentation generator
 License:BSD-2-Clause

++ Sphinx-2.2.1.tar.gz -> Sphinx-2.2.2.tar.gz ++
/work/SRC/openSUSE:Factory/python-Sphinx/Sphinx-2.2.1.tar.gz 
/work/SRC/openSUSE:Factory/.python-Sphinx.new.4691/Sphinx-2.2.2.tar.gz differ: 
char 5, line 1




commit python-Sphinx for openSUSE:Factory

2019-11-04 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-11-04 17:13:46

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.2990 (New)


Package is "python-Sphinx"

Mon Nov  4 17:13:46 2019 rev:59 rq:744660 version:2.2.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-09-23 12:07:16.389906729 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.2990/python-Sphinx.changes
2019-11-04 17:13:47.928734978 +0100
@@ -1,0 +2,7 @@
+Fri Nov  1 08:06:10 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.2.1:
+  * #6641: LaTeX: Undefined control sequence \sphinxmaketitle
+  * #6710: LaTeX not well configured for Greek language as main language
+
+---

Old:

  Sphinx-2.2.0.tar.gz

New:

  Sphinx-2.2.1.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.r1uTqF/_old  2019-11-04 17:13:48.884736000 +0100
+++ /var/tmp/diff_new_pack.r1uTqF/_new  2019-11-04 17:13:48.888736004 +0100
@@ -28,7 +28,7 @@
 %endif
 %define skip_python2 1
 Name:   python-Sphinx%{psuffix}
-Version:2.2.0
+Version:2.2.1
 Release:0
 Summary:Python documentation generator
 License:BSD-2-Clause

++ Sphinx-2.2.0.tar.gz -> Sphinx-2.2.1.tar.gz ++
/work/SRC/openSUSE:Factory/python-Sphinx/Sphinx-2.2.0.tar.gz 
/work/SRC/openSUSE:Factory/.python-Sphinx.new.2990/Sphinx-2.2.1.tar.gz differ: 
char 5, line 1




commit python-Sphinx for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-09-23 12:07:16

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.7948 (New)


Package is "python-Sphinx"

Mon Sep 23 12:07:16 2019 rev:58 rq:730123 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-08-15 15:42:50.499203198 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.7948/python-Sphinx.changes
2019-09-23 12:07:16.389906729 +0200
@@ -1,0 +2,19 @@
+Wed Sep 11 12:06:58 UTC 2019 - Tomáš Chvátal 
+
+- Update 2.2.0:
+  * apidoc: template files are renamed to ``.rst_t``
+  * html: Field lists will be styled by grid layout
+  * #5124: graphviz: ``:graphviz_dot:`` option is renamed to ``:layout:``
+  * #1464: html: emit a warning if :confval:`html_static_path` and
+:confval:`html_extra_path` directories are inside output directory
+  * #6514: html: Add a label to search input for accessability purposes
+  * #5602: apidoc: Add ``--templatedir`` option
+  * #6475: Add ``override`` argument to ``app.add_autodocumenter()``
+  * #6310: imgmath: let :confval:`imgmath_use_preview` work also with the SVG
+format for images rendering inline math
+  * #6533: LaTeX: refactor visit_enumerated_list() to use 
``\sphinxsetlistlabels``
+  * #6628: quickstart: Use ``https://docs.python.org/3/`` for default setting 
of
+:confval:`intersphinx_mapping`
+  * #6419: sphinx-build: give reasons why rebuilded
+
+---

Old:

  Sphinx-2.1.2.tar.gz

New:

  Sphinx-2.2.0.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.2tfPD7/_old  2019-09-23 12:07:17.149906604 +0200
+++ /var/tmp/diff_new_pack.2tfPD7/_new  2019-09-23 12:07:17.149906604 +0200
@@ -28,7 +28,7 @@
 %endif
 %define skip_python2 1
 Name:   python-Sphinx%{psuffix}
-Version:2.1.2
+Version:2.2.0
 Release:0
 Summary:Python documentation generator
 License:BSD-2-Clause

++ Sphinx-2.1.2.tar.gz -> Sphinx-2.2.0.tar.gz ++
 43632 lines of diff (skipped)




commit python-Sphinx for openSUSE:Factory

2019-08-15 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-08-15 15:42:48

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.9556 (New)


Package is "python-Sphinx"

Thu Aug 15 15:42:48 2019 rev:57 rq:721979 version:2.1.2

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-07-08 14:59:57.666438042 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.9556/python-Sphinx.changes
2019-08-15 15:42:50.499203198 +0200
@@ -1,0 +2,5 @@
+Fri Aug  9 08:32:42 UTC 2019 - Dan Čermák 
+
+- Add Sphinx translation files via %find_lang
+
+---

New:

  python-Sphinx-rpmlintrc



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.Ntu7Xv/_old  2019-08-15 15:42:51.799202898 +0200
+++ /var/tmp/diff_new_pack.Ntu7Xv/_new  2019-08-15 15:42:51.803202897 +0200
@@ -35,6 +35,7 @@
 Group:  Development/Languages/Python
 URL:http://sphinx-doc.org
 Source: 
https://files.pythonhosted.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
+Source99:   python-Sphinx-rpmlintrc
 BuildRequires:  %{python_module base}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -240,6 +241,8 @@
 %python_expand mkdir -p %{buildroot}%{$python_sitelib}/sphinxcontrib
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
+%find_lang sphinx
+
 %else
 mkdir -p %{buildroot}%{_docdir}/python-Sphinx/
 mv build.doc/html %{buildroot}%{_docdir}/python-Sphinx/
@@ -269,7 +272,7 @@
 %endif
 
 %if ! %{with test}
-%files %{python_files}
+%files %{python_files} -f sphinx.lang
 %license LICENSE
 %doc AUTHORS CHANGES README.rst
 %python_alternative %{_bindir}/sphinx-apidoc

++ python-Sphinx-rpmlintrc ++
# false positive due to the name of the package ending with "theme"
addFilter("W: suse-branding-unversioned-requires python3-sphinx_rtd_theme")
# false positive as the -latex package only ships latex files and no actual 
python code
addFilter("python3-Sphinx-latex.noarch: W: no-dependency-on python-base 3.7")



commit python-Sphinx for openSUSE:Factory

2019-07-08 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-07-08 14:59:56

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.4615 (New)


Package is "python-Sphinx"

Mon Jul  8 14:59:56 2019 rev:56 rq:713076 version:2.1.2

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-06-18 14:49:26.993683588 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.4615/python-Sphinx.changes
2019-07-08 14:59:57.666438042 +0200
@@ -1,0 +2,7 @@
+Tue Jul  2 14:44:28 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.1.2:
+  * #6497: custom lexers fails highlighting when syntax error
+  * #6478, #6488: info field lists are incorrectly recognized
+
+---

Old:

  Sphinx-2.1.1.tar.gz

New:

  Sphinx-2.1.2.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.YNn2tS/_old  2019-07-08 14:59:58.778439723 +0200
+++ /var/tmp/diff_new_pack.YNn2tS/_new  2019-07-08 14:59:58.778439723 +0200
@@ -28,7 +28,7 @@
 %endif
 %define skip_python2 1
 Name:   python-Sphinx%{psuffix}
-Version:2.1.1
+Version:2.1.2
 Release:0
 Summary:Python documentation generator
 License:BSD-2-Clause

++ Sphinx-2.1.1.tar.gz -> Sphinx-2.1.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-2.1.1/CHANGES new/Sphinx-2.1.2/CHANGES
--- old/Sphinx-2.1.1/CHANGES2019-06-10 15:34:31.0 +0200
+++ new/Sphinx-2.1.2/CHANGES2019-06-19 13:31:54.0 +0200
@@ -1,3 +1,12 @@
+Release 2.1.2 (released Jun 19, 2019)
+=
+
+Bugs fixed
+--
+
+* #6497: custom lexers fails highlighting when syntax error
+* #6478, #6488: info field lists are incorrectly recognized
+
 Release 2.1.1 (released Jun 10, 2019)
 =
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-2.1.1/PKG-INFO new/Sphinx-2.1.2/PKG-INFO
--- old/Sphinx-2.1.1/PKG-INFO   2019-06-10 15:35:14.0 +0200
+++ new/Sphinx-2.1.2/PKG-INFO   2019-06-19 13:32:20.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: Sphinx
-Version: 2.1.1
+Version: 2.1.2
 Summary: Python documentation generator
 Home-page: http://sphinx-doc.org/
 Author: Georg Brandl
@@ -166,5 +166,5 @@
 Classifier: Topic :: Utilities
 Requires-Python: >=3.5
 Description-Content-Type: text/x-rst
-Provides-Extra: docs
 Provides-Extra: test
+Provides-Extra: docs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-2.1.1/Sphinx.egg-info/PKG-INFO 
new/Sphinx-2.1.2/Sphinx.egg-info/PKG-INFO
--- old/Sphinx-2.1.1/Sphinx.egg-info/PKG-INFO   2019-06-10 15:35:04.0 
+0200
+++ new/Sphinx-2.1.2/Sphinx.egg-info/PKG-INFO   2019-06-19 13:32:12.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: Sphinx
-Version: 2.1.1
+Version: 2.1.2
 Summary: Python documentation generator
 Home-page: http://sphinx-doc.org/
 Author: Georg Brandl
@@ -166,5 +166,5 @@
 Classifier: Topic :: Utilities
 Requires-Python: >=3.5
 Description-Content-Type: text/x-rst
-Provides-Extra: docs
 Provides-Extra: test
+Provides-Extra: docs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-2.1.1/setup.cfg new/Sphinx-2.1.2/setup.cfg
--- old/Sphinx-2.1.1/setup.cfg  2019-06-10 15:35:14.0 +0200
+++ new/Sphinx-2.1.2/setup.cfg  2019-06-19 13:32:20.0 +0200
@@ -5,9 +5,6 @@
 tag_build = 
 tag_date = 0
 
-[bdist_wheel]
-universal = 1
-
 [aliases]
 release = egg_info -Db ''
 upload = upload --sign --identity=36580288
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-2.1.1/sphinx/__init__.py 
new/Sphinx-2.1.2/sphinx/__init__.py
--- old/Sphinx-2.1.1/sphinx/__init__.py 2019-06-10 15:34:11.0 +0200
+++ new/Sphinx-2.1.2/sphinx/__init__.py 2019-06-19 13:31:54.0 +0200
@@ -32,8 +32,8 @@
 warnings.filterwarnings('ignore', "'U' mode is deprecated",
 DeprecationWarning, module='docutils.io')
 
-__version__ = '2.1.1'
-__released__ = '2.1.1'  # used when Sphinx builds its own docs
+__version__ = '2.1.2'
+__released__ = '2.1.2'  # used when Sphinx builds its own docs
 
 #: Version info for better programmatic use.
 #:
@@ -43,7 +43,7 @@
 #:
 #: .. versionadded:: 1.2
 #:Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (2, 1, 1, 'final', 0)
+version_info = (2, 1, 2, 'final', 0)
 
 package_dir = path.abspath(path.dirname(__file__))
 
d

commit python-Sphinx for openSUSE:Factory

2019-06-18 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-06-18 14:49:17

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.4811 (New)


Package is "python-Sphinx"

Tue Jun 18 14:49:17 2019 rev:55 rq:709241 version:2.1.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-04-12 09:14:10.893667928 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.4811/python-Sphinx.changes
2019-06-18 14:49:26.993683588 +0200
@@ -1,0 +2,16 @@
+Tue Jun 11 18:01:43 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.1.1:
+  * #6442: LaTeX: admonitions of note type can get separated from immediately 
preceding section title by pagebreak
+  * #6448: autodoc: crashed when autodocumenting classes with __slots__ = None
+  * #6452: autosummary: crashed when generating document of properties
+
+---
+Tue Jun  4 11:37:51 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.1:
+  * Many major updates in the package
+  * Supports only python 3.5+
+- Remove obsolete conditionals wrt 3.5+ only support
+
+---

Old:

  Sphinx-1.8.5.tar.gz

New:

  Sphinx-2.1.1.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.0jZIYY/_old  2019-06-18 14:49:29.609682424 +0200
+++ /var/tmp/diff_new_pack.0jZIYY/_new  2019-06-18 14:49:29.613682422 +0200
@@ -18,11 +18,6 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
-%if 0%{?suse_version} != 1315
-%bcond_without latex
-%else
-%bcond_with latex
-%endif
 %global flavor @BUILD_FLAVOR@%{nil}
 %if "%{flavor}" == "test"
 %define psuffix -test
@@ -31,8 +26,9 @@
 %define psuffix %{nil}
 %bcond_with test
 %endif
+%define skip_python2 1
 Name:   python-Sphinx%{psuffix}
-Version:1.8.5
+Version:2.1.1
 Release:0
 Summary:Python documentation generator
 License:BSD-2-Clause
@@ -49,47 +45,36 @@
 Requires:   python-Jinja2 >= 2.3
 Requires:   python-Pygments >= 2.1
 Requires:   python-alabaster >= 0.7
-Requires:   python-docutils >= 0.11
+Requires:   python-docutils >= 0.12
 Requires:   python-imagesize
-Requires:   python-requests >= 2.0.0
-Requires:   python-six >= 1.5
+Requires:   python-requests >= 2.5.0
+Requires:   python-setuptools
 Requires:   python-snowballstemmer >= 1.1
 Requires:   python-sphinx_rtd_theme
+Requires:   python-sphinxcontrib-applehelp
+Requires:   python-sphinxcontrib-devhelp
+Requires:   python-sphinxcontrib-htmlhelp
+Requires:   python-sphinxcontrib-jsmath
+Requires:   python-sphinxcontrib-qthelp
+Requires:   python-sphinxcontrib-serializinghtml
 Requires:   python-sphinxcontrib-websupport
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
+Recommends: python-SQLAlchemy >= 0.9
+Recommends: python-Sphinx-doc-man
+Recommends: python-Whoosh >= 2.0
 BuildArch:  noarch
 %if %{with test}
 BuildRequires:  %{python_module Sphinx = %{version}}
 BuildRequires:  %{python_module Sphinx-latex = %{version}}
 BuildRequires:  %{python_module html5lib}
-BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module sphinxcontrib-websupport}
 BuildRequires:  ImageMagick
 BuildRequires:  python3-mypy
+BuildRequires:  python3-testsuite
 BuildRequires:  python3-typed-ast
 %endif
-%if 0%{?suse_version} >= 1000 || 0%{?fedora_version} >= 24
-Recommends: python-Sphinx-doc-man
-Recommends: python-SQLAlchemy >= 0.9
-Recommends: python-Whoosh >= 2.0
-%endif
-%ifpython2
-Requires:   python-enum34
-Requires:   python-typing
-%endif
-%ifpython3
-%if %{python3_version_nodots} < 35
-Requires:   python-typing
-%endif
-%endif
-%ifpython2
-%if ! %{with test}
-Obsoletes:  %{oldpython}-sphinx < %{version}
-Provides:   %{oldpython}-sphinx = %{version}
-%endif
-%endif
 %python_subpackages
 
 %description
@@ -106,8 +91,11 @@
 Summary:Sphinx packages for LaTeX
 Group:  Productivity/Publishing/TeX/Base
 Requires:   python-Sphinx = %{version}
+Requires:   texlive-dvipng
 Requires:   texlive-gnu-freefont
 Requires:   texlive-latex
+Requires:   texlive-latexmk
+Requires:   texlive-makeindex
 Requires:   texlive-metafont
 Requires:   texlive-pdftex
 Requires:   tex(8r.enc)
@@ -144,6 +132,7 @@
 Requires:   tex(ifthen.sty)
 Requires:   tex(inputenc.sty)
 Requires:   tex(longtable.sty)
+Requires:   tex(luatex85.sty)
 Requires:   t

commit python-Sphinx for openSUSE:Factory

2019-04-12 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-04-12 09:14:08

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.27019 (New)


Package is "python-Sphinx"

Fri Apr 12 09:14:08 2019 rev:54 rq:693013 version:1.8.5

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2019-03-29 20:38:17.614666716 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.27019/python-Sphinx.changes   
2019-04-12 09:14:10.893667928 +0200
@@ -1,0 +2,10 @@
+Wed Apr 10 20:43:43 UTC 2019 - Dirk Mueller 
+
+- don't provide sphinx from test subpackage, it is for testing
+
+---
+Wed Apr 10 07:13:28 UTC 2019 - Dirk Mueller 
+
+- fix tests to include latex/extmath tests
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.HAQ8dS/_old  2019-04-12 09:14:11.669668384 +0200
+++ /var/tmp/diff_new_pack.HAQ8dS/_new  2019-04-12 09:14:11.681668392 +0200
@@ -61,6 +61,7 @@
 BuildArch:  noarch
 %if %{with test}
 BuildRequires:  %{python_module Sphinx = %{version}}
+BuildRequires:  %{python_module Sphinx-latex = %{version}}
 BuildRequires:  %{python_module html5lib}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module pytest}
@@ -84,9 +85,11 @@
 %endif
 %endif
 %ifpython2
+%if ! %{with test}
 Obsoletes:  %{oldpython}-sphinx < %{version}
 Provides:   %{oldpython}-sphinx = %{version}
 %endif
+%endif
 %python_subpackages
 
 %description
@@ -166,6 +169,7 @@
 Requires:   tex(utf8x.def)
 Requires:   tex(wrapfig.sty)
 %if 0%{?suse_version} > 1320
+Requires:   texlive-dvipng
 Requires:   texlive-latexmk
 Requires:   texlive-makeindex
 Requires:   tex(varwidth.sty)




commit python-Sphinx for openSUSE:Factory

2019-03-29 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2019-03-29 20:38:15

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.25356 (New)


Package is "python-Sphinx"

Fri Mar 29 20:38:15 2019 rev:53 rq:689141 version:1.8.5

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2018-12-14 20:49:06.645367178 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.25356/python-Sphinx.changes   
2019-03-29 20:38:17.614666716 +0100
@@ -1,0 +2,63 @@
+Wed Mar 27 16:39:15 UTC 2019 - Matej Cepl 
+
+- Remove last remainder of python-Sphinx-doc-man-common subpackage
+
+---
+Thu Mar 14 16:25:50 CET 2019 - Matej Cepl 
+
+- Switch off test_latex_images test, because it tries to download
+  image from the www.python.org.
+
+---
+Tue Mar 12 15:35:49 UTC 2019 - Matej Cepl 
+
+- Remove lang packages
+
+---
+Mon Mar 11 15:32:54 CET 2019 - Matej Cepl 
+
+- Revert to multiple lang files using standard macros.
+
+---
+Mon Mar 11 10:25:50 UTC 2019 - Tomáš Chvátal 
+
+- Drop patch disable-test.patch no longer applicable
+
+---
+Mon Mar 11 09:40:44 UTC 2019 - Tomáš Chvátal 
+
+- Update to 1.8.5:
+  * LaTeX: Remove extraneous space after author names on PDF title page (refs: 
#6004)
+  * #6026: LaTeX: A cross reference to definition list does not work
+  * #6046: LaTeX: TypeError is raised when invalid latex_elements given
+  * #6067: LaTeX: images having a target are concatenated to next line
+  * #6067: LaTeX: images having a target are not aligned even if specified
+  * #6019: imgconverter: Including multipage PDF fails
+  * #6047: autodoc: autofunction emits a warning for method objects
+  * #6028: graphviz: Ensure the graphviz filenames are reproducible
+  * #6068: doctest: skipif option may remove the code block from documentation
+  * #6136: :name: option for math directive causes a crash
+  * #6139: intersphinx: ValueError on failure reporting
+  * #6135: changes: Fix UnboundLocalError when any module found
+
+---
+Wed Mar  6 16:28:12 CET 2019 - Matej Cepl 
+
+- Rewrite the package to multibuild. Remove python-Sphinx-doc*.
+- Fix %check to make tests passing.
+
+---
+Tue Mar  5 10:17:45 UTC 2019 - Thomas Bechtold 
+
+- update to 1.8.4:
+  There are many changes so have a look at the following changes files:
+  * 
https://www.sphinx-doc.org/en/master/changes.html#release-1-8-4-released-feb-03-2019
+  * 
https://www.sphinx-doc.org/en/master/changes.html#release-1-8-3-released-dec-26-2018
+  * 
https://www.sphinx-doc.org/en/master/changes.html#release-1-8-2-released-nov-11-2018
+  * 
https://www.sphinx-doc.org/en/master/changes.html#release-1-8-1-released-sep-22-2018
+  * 
https://www.sphinx-doc.org/en/master/changes.html#release-1-8-0-released-sep-13-2018
+  * 
https://www.sphinx-doc.org/en/master/changes.html#release-1-7-9-released-sep-05-2018
+  * 
https://www.sphinx-doc.org/en/master/changes.html#release-1-7-8-released-aug-29-2018
+  * 
https://www.sphinx-doc.org/en/master/changes.html#release-1-7-7-released-aug-19-2018
+
+---

Old:

  Sphinx-1.7.6.tar.gz
  disable-test.patch
  python-Sphinx-doc.changes
  python-Sphinx-doc.spec

New:

  Sphinx-1.8.5.tar.gz
  _multibuild



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.t2gmzn/_old  2019-03-29 20:38:18.386667110 +0100
+++ /var/tmp/diff_new_pack.t2gmzn/_new  2019-03-29 20:38:18.394667114 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Sphinx
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,15 +23,22 @@
 %else
 %bcond_with latex
 %endif
-Name:   python-Sphinx
-Version:1.7.6
+%global flavor @BUILD_FLAVOR@%{nil}
+%if "%{flavor}" == "test"
+%define psuffix -test
+%bcond_without test
+%else
+%define psuffix %{nil}
+%bcond_with test
+%endif
+Name:   python-Sphinx%{psuffix}
+Version:1.8.5
 Release:0
 Summary:Python documentation generator
 License:BSD-2-Clause
 Gro

commit python-Sphinx for openSUSE:Factory

2018-12-14 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2018-12-14 20:49:02

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new.28833 (New)


Package is "python-Sphinx"

Fri Dec 14 20:49:02 2018 rev:52 rq:657880 version:1.7.6

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2018-07-21 10:09:26.203181478 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new.28833/python-Sphinx.changes   
2018-12-14 20:49:06.645367178 +0100
@@ -1,0 +2,6 @@
+Fri Dec  7 21:20:58 CET 2018 - mc...@suse.com
+
+- Make this package also own %{python_sitelib}/sphinxcontrib
+  directory, so it is properly owned.
+
+---



Other differences:
--
++ python-Sphinx-doc.spec ++
--- /var/tmp/diff_new_pack.QmIQZD/_old  2018-12-14 20:49:07.517365980 +0100
+++ /var/tmp/diff_new_pack.QmIQZD/_new  2018-12-14 20:49:07.521365974 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 

++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.QmIQZD/_old  2018-12-14 20:49:07.541365947 +0100
+++ /var/tmp/diff_new_pack.QmIQZD/_new  2018-12-14 20:49:07.541365947 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -48,7 +48,6 @@
 Requires:   python-six >= 1.5
 Requires:   python-snowballstemmer >= 1.1
 Requires:   python-sphinx_rtd_theme
-Requires:   python-sphinxcontrib
 Requires:   python-sphinxcontrib-websupport
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
@@ -181,6 +180,7 @@
 %python_clone -a %{buildroot}%{_bindir}/sphinx-build
 %python_clone -a %{buildroot}%{_bindir}/sphinx-quickstart
 
+%python_expand mkdir -p %{buildroot}%{$python_sitelib}/sphinxcontrib
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %post
@@ -201,6 +201,7 @@
 %exclude %{python_sitelib}/sphinx/texinputs/
 %endif
 %{python_sitelib}/Sphinx-%{version}-py*.egg-info
+%dir %{python_sitelib}/sphinxcontrib
 
 # Requirements are not available on SLES
 %if %{with latex}




commit python-Sphinx for openSUSE:Factory

2018-07-21 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2018-07-21 10:09:18

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Sat Jul 21 10:09:18 2018 rev:51 rq:624272 version:1.7.6

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx-doc.changes  
2018-06-02 11:50:25.211803183 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx-doc.changes 
2018-07-21 10:09:23.987181989 +0200
@@ -1,0 +2,43 @@
+Wed Jul 18 15:28:39 UTC 2018 - mimi...@gmail.com
+
+- update to 1.7.6
+- run Sphinx testsuite in package
+ * LaTeX \sphinxupquote{} breaks in Russian
+ * sphinx.testing uses deprecated pytest API; Node.get_marker(name)
+ * crashed when recommonmark.AutoStrictify is enabled
+ * latex: crashed with docutils package provided by Debian/Ubuntu
+ * latex: a label for table is vanished if table does not have a caption
+ * crashed with numbered toctree
+ * C, render empty argument lists for macros.
+ * C++, fix lookup of full template specializations with no template arguments.
+ * C++, fix assertion on missing references in global scope when using 
intersphinx.
+ * autodoc: crashed by Form Feed Character
+ * autodoc: loses the first staticmethod parameter for old styled classes
+ * quickstart: Typing Ctrl-U clears the whole of line
+ * html: “relations” sidebar is not shown by default
+ * latex: curly braces in index entries are not handled correctly
+ * epub: Wrong internal href fragment links
+ * apidoc: Interface of sphinx.apidoc:main() has changed
+ * PDF builds of French projects have issues with XeTeX
+ * napoleon raises RuntimeError with python 3.7
+ * sphinx-build: Interface of sphinx:main() has changed
+ * sphinx-build: sphinx.cmd.build.main() refers sys.argv
+instead of given argument
+ * autosummary: warning is emitted when the first line of docstring ends
+with literal notation
+ * autosummary: warnings of autosummary indicates wrong location (refs: #5146)
+ * autodoc: crashed on inspecting dict like object which does not support 
sorting
+ * autodoc: Enum argument missing if it shares value with another
+ * py domain: rtype field could not handle “None” as a type
+ * LaTeX: indexing of terms containing @, !, or " fails
+ * html: crashes if copying static files are failed
+ * autodoc: Fix formatting type annotations for tuples with more than two 
arguments
+ * i18n: crashed by auto-symbol footnote references
+ * autosummary: module summary has been broken when it starts with heading
+
+---
+Tue Jul 17 08:15:33 UTC 2018 - dmuel...@suse.com
+
+- update to 1.7.5
+
+---
--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2018-06-02 11:50:25.239802155 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2018-07-21 10:09:26.203181478 +0200
@@ -1,0 +2,72 @@
+Wed Jul 18 15:28:39 UTC 2018 - mimi...@gmail.com
+
+- update to 1.7.6
+- fix Requires based on results of Shinx testsuite
+ * LaTeX \sphinxupquote{} breaks in Russian
+ * sphinx.testing uses deprecated pytest API; Node.get_marker(name)
+ * crashed when recommonmark.AutoStrictify is enabled
+ * latex: crashed with docutils package provided by Debian/Ubuntu
+ * latex: a label for table is vanished if table does not have a caption
+ * crashed with numbered toctree
+ * C, render empty argument lists for macros.
+ * C++, fix lookup of full template specializations with no template arguments.
+ * C++, fix assertion on missing references in global scope when using 
intersphinx.
+ * autodoc: crashed by Form Feed Character
+ * autodoc: loses the first staticmethod parameter for old styled classes
+ * quickstart: Typing Ctrl-U clears the whole of line
+ * html: “relations” sidebar is not shown by default
+ * latex: curly braces in index entries are not handled correctly
+ * epub: Wrong internal href fragment links
+ * apidoc: Interface of sphinx.apidoc:main() has changed
+ * PDF builds of French projects have issues with XeTeX
+ * napoleon raises RuntimeError with python 3.7
+ * sphinx-build: Interface of sphinx:main() has changed
+ * sphinx-build: sphinx.cmd.build.main() refers sys.argv
+instead of given argument
+ * autosummary: warning is emitted when the first line of docstring ends
+with literal notation
+ * autosummary: warnings of autosummary indicates wrong location (refs: #5146)
+ * autodoc: crashed on inspecting dict like object which does not support 
sorting
+ * autodoc: Enum argument missing if it shares value with another
+ * py domain: rtype field could not handle “None” as a type
+ * LaTeX: indexing of terms containing @, !, or " f

commit python-Sphinx for openSUSE:Factory

2018-06-02 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2018-06-02 11:50:14

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Sat Jun  2 11:50:14 2018 rev:50 rq:612216 version:1.7.4

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx-doc.changes  
2018-02-27 16:56:19.963565211 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx-doc.changes 
2018-06-02 11:50:25.211803183 +0200
@@ -1,0 +2,6 @@
+Wed May 23 12:17:03 UTC 2018 - mimi...@gmail.com
+
+- update to 1.7.4
+- ver long list of changes - please check www.sphinx-doc.org for details
+ 
+---
--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2018-03-12 12:08:07.711181209 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2018-06-02 11:50:25.239802155 +0200
@@ -1,0 +2,6 @@
+Wed May 23 12:14:49 UTC 2018 - mimi...@gmail.com
+
+- update to 1.7.4
+- very long list of changes - please see 
http://www.sphinx-doc.org/en/master/changes.html#release-1-7-4-released-apr-25-2018
+
+---

Old:

  Sphinx-1.6.5.tar.gz

New:

  Sphinx-1.7.4.tar.gz



Other differences:
--
++ python-Sphinx-doc.spec ++
--- /var/tmp/diff_new_pack.E9x8KB/_old  2018-06-02 11:50:25.951776042 +0200
+++ /var/tmp/diff_new_pack.E9x8KB/_new  2018-06-02 11:50:25.955775895 +0200
@@ -16,32 +16,29 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %if 0%{?suse_version} != 1315
 %bcond_without latex
 %else
 %bcond_with latex
 %endif
-
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-Sphinx-doc
-Version:1.6.5
+Version:1.7.4
 Release:0
-Url:http://sphinx-doc.org
 Summary:Documentation for python-Sphinx
 License:BSD-2-Clause
 Group:  Documentation/Other
+URL:http://sphinx-doc.org
 Source: 
https://files.pythonhosted.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
 Patch1: disable-test.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 BuildRequires:  python3-Sphinx
+Recommends: %{name}-html = %{version}
+BuildArch:  noarch
 %if %{with latex}
 BuildRequires:  python3-Sphinx-latex
 %endif
-BuildRequires:  python-rpm-macros
-Recommends: %{name}-html = %{version}
-BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -106,8 +103,8 @@
 
 mkdir build.doc
 
-%__python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo
-%__python3 setup.py build_sphinx -b man
+python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo
+python3 setup.py build_sphinx -b man
 
 mv build/sphinx/{html,man} build.doc/
 
@@ -128,29 +125,29 @@
 %python_clone %{buildroot}%{_mandir}/man1/sphinx-quickstart.1
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc AUTHORS LICENSE EXAMPLES
+%license LICENSE
+%doc AUTHORS EXAMPLES
 
 %files %{python_files man}
-%defattr(-,root,root,-)
-%doc AUTHORS LICENSE
-%{_mandir}/man1/sphinx-all-%{python_bin_suffix}.1%ext_man
-%{_mandir}/man1/sphinx-apidoc-%{python_bin_suffix}.1%ext_man
-%{_mandir}/man1/sphinx-build-%{python_bin_suffix}.1%ext_man
-%{_mandir}/man1/sphinx-quickstart-%{python_bin_suffix}.1%ext_man
+%license LICENSE
+%doc AUTHORS
+%{_mandir}/man1/sphinx-all-%{python_bin_suffix}.1%{?ext_man}
+%{_mandir}/man1/sphinx-apidoc-%{python_bin_suffix}.1%{?ext_man}
+%{_mandir}/man1/sphinx-build-%{python_bin_suffix}.1%{?ext_man}
+%{_mandir}/man1/sphinx-quickstart-%{python_bin_suffix}.1%{?ext_man}
 
 %files -n %{name}-html
-%defattr(-,root,root,-)
-%doc AUTHORS LICENSE
+%license LICENSE
+%doc AUTHORS
 %dir %{_docdir}/python-Sphinx/
 %{_docdir}/python-Sphinx/html/
 
 %files -n %{name}-man-common
-%defattr(-,root,root,-)
-%doc AUTHORS LICENSE
-%{_mandir}/man1/sphinx-all.1%ext_man
-%{_mandir}/man1/sphinx-apidoc.1%ext_man
-%{_mandir}/man1/sphinx-build.1%ext_man
-%{_mandir}/man1/sphinx-quickstart.1%ext_man
+%license LICENSE
+%doc AUTHORS
+%{_mandir}/man1/sphinx-all.1%{?ext_man}
+%{_mandir}/man1/sphinx-apidoc.1%{?ext_man}
+%{_mandir}/man1/sphinx-build.1%{?ext_man}
+%{_mandir}/man1/sphinx-quickstart.1%{?ext_man}
 
 %changelog

++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.E9x8KB/_old  2018-06-02 11:50:25.983774868 +0200
+++ /var/tmp/diff_new_pack.E9x8KB/_new  2018-06-02 11:50:25.987774722 +0200
@@ -16,28 +16,28 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define oldpython pyth

commit python-Sphinx for openSUSE:Factory

2018-03-12 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2018-03-12 12:08:04

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Mon Mar 12 12:08:04 2018 rev:49 rq:584287 version:1.6.5

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2018-03-08 10:55:41.353247169 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2018-03-12 12:08:07.711181209 +0100
@@ -1,0 +2,5 @@
+Thu Mar  8 10:22:47 UTC 2018 - apla...@suse.com
+
+- Allows Recommends and Suggest in Fedora
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.iIwqK7/_old  2018-03-12 12:08:11.171057194 +0100
+++ /var/tmp/diff_new_pack.iIwqK7/_new  2018-03-12 12:08:11.179056907 +0100
@@ -50,7 +50,7 @@
 Requires:   python-sphinx_rtd_theme
 Requires:   python-sphinxcontrib
 Requires:   python-sphinxcontrib-websupport
-%if 0%{?suse_version} >= 1000
+%if 0%{?suse_version} >= 1000 || 0%{?fedora_version} >= 24
 Recommends: python-SQLAlchemy >= 0.9
 Recommends: python-Whoosh >= 2.0
 Recommends: %{name}-doc-man




commit python-Sphinx for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2018-03-08 10:55:37

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Thu Mar  8 10:55:37 2018 rev:48 rq:583367 version:1.6.5

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2018-03-01 12:03:33.199260422 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2018-03-08 10:55:41.353247169 +0100
@@ -1,0 +2,6 @@
+Tue Mar  6 11:55:15 UTC 2018 - dmuel...@suse.com
+
+- go back to a working sphinx version for now (1.6.5)
+  * newer versions are not able to build openstack clients
+
+---

Old:

  Sphinx-1.7.1.tar.gz

New:

  Sphinx-1.6.5.tar.gz



Other differences:
--
++ python-Sphinx-doc.spec ++
--- /var/tmp/diff_new_pack.UbF4FM/_old  2018-03-08 10:55:42.549204117 +0100
+++ /var/tmp/diff_new_pack.UbF4FM/_new  2018-03-08 10:55:42.553203973 +0100
@@ -24,7 +24,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-Sphinx-doc
-Version:1.7.1
+Version:1.6.5
 Release:0
 Url:http://sphinx-doc.org
 Summary:Documentation for python-Sphinx

++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.UbF4FM/_old  2018-03-08 10:55:42.569203398 +0100
+++ /var/tmp/diff_new_pack.UbF4FM/_new  2018-03-08 10:55:42.573203254 +0100
@@ -25,7 +25,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-Sphinx
-Version:1.7.1
+Version:1.6.5
 Release:0
 Url:http://sphinx-doc.org
 Summary:Python documentation generator

++ Sphinx-1.7.1.tar.gz -> Sphinx-1.6.5.tar.gz ++
 129260 lines of diff (skipped)




commit python-Sphinx for openSUSE:Factory

2018-03-01 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2018-03-01 12:03:28

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Thu Mar  1 12:03:28 2018 rev:47 rq:580665 version:1.7.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2018-02-27 16:56:20.523544978 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2018-03-01 12:03:33.199260422 +0100
@@ -1,0 +2,5 @@
+Tue Feb 27 14:09:37 UTC 2018 - apla...@suse.com
+
+- Recommends only on SUSE 
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.AQm3iu/_old  2018-03-01 12:03:34.087228570 +0100
+++ /var/tmp/diff_new_pack.AQm3iu/_new  2018-03-01 12:03:34.087228570 +0100
@@ -50,9 +50,11 @@
 Requires:   python-sphinx_rtd_theme
 Requires:   python-sphinxcontrib
 Requires:   python-sphinxcontrib-websupport
+%if 0%{?suse_version} >= 1000
 Recommends: python-SQLAlchemy >= 0.9
 Recommends: python-Whoosh >= 2.0
 Recommends: %{name}-doc-man
+%endif
 %ifpython2
 Requires:   python-enum34
 Requires:   python-typing




commit python-Sphinx for openSUSE:Factory

2018-02-27 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2018-02-27 16:56:17

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Tue Feb 27 16:56:17 2018 rev:46 rq:580046 version:1.7.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx-doc.changes  
2017-11-01 11:08:41.851835144 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx-doc.changes 
2018-02-27 16:56:19.963565211 +0100
@@ -1,0 +2,106 @@
+Sat Feb 24 18:31:35 UTC 2018 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.7.1:
+  * Deprecated
++ #4623: "sphinx.build_main()" is deprecated. Use
+   "sphinx.cmd.build.build_main()" instead.
++ autosummary: The interface of
+  "sphinx.ext.autosummary.get_documenter()" has been changed
+  (Since 1.7.0)
++ #4664: "sphinx.ext.intersphinx.debug()" is deprecated. Use
+   "sphinx.ext.intersphinx.inspect_main()" instead.
+  * Bugs fixed
++ #4608: epub: Invalid meta tag is generated
++ #4260: autodoc: keyword only argument separator is not
+   disappeared if it is appeared at top of the argument list
++ #4622: epub: :confval:`epub_scheme` does not effect to
+   content.opf
++ #4627: graphviz: Fit graphviz images to page
++ #4617: quickstart: PROJECT_DIR argument is required
++ #4623: sphinx.build_main no longer exists in 1.7.0
++ #4615: The argument of "sphinx.build" has been changed in 1.7.0
++ autosummary: The interface of
+  "sphinx.ext.autosummary.get_documenter()" has been changed
++ #4630: Have order on msgids in sphinx.pot deterministic
++ #4563: autosummary: Incorrect end of line punctuation detection
++ #4577: Enumerated sublists with explicit start with wrong number
++ #4641: A external link in TOC cannot contain "?" with ":glob:"
+   option
++ C++, add missing parsing of explicit casts and typeid in
+  expression parsing.
++ C++, add missing parsing of "this" in expression parsing.
++ #4655: Fix incomplete localization strings in Polish
++ #4653: Fix error reporting for parameterless ImportErrors
++ #4664: Reading objects.inv fails again
++ #4662: "any" refs with "term" targets crash when an ambiguity is
+   encountered
+
+- changes to version 1.7.0:
+  * long changelog, see 
https://github.com/sphinx-doc/sphinx/blob/master/CHANGES
+
+- changes from version 1.6.7:
+  * Bugs fixed
++ #1922: html search: Upper characters problem in French
++ #4412: Updated jQuery version from 3.1.0 to 3.2.1
++ #4438: math: math with labels with whitespace cause html error
++ #2437: make full reference for classes, aliased with "alias of"
++ #4434: pure numbers as link targets produce warning
++ #4477: Build fails after building specific files
++ #4449: apidoc: include "empty" packages that contain modules
++ #3917: citation labels are tranformed to ellipsis
++ #4501: graphviz: epub3 validation error caused if graph is not
+   clickable
++ #4514: graphviz: workaround for wrong map ID which graphviz
+   generates
++ #4525: autosectionlabel does not support parallel build
++ #3953: Do not raise warning when there is a working intersphinx
+   inventory
++ #4487: math: ValueError is raised on parallel build. Thanks to
+   jschueller.
++ #2372: autosummary: invalid signatures are shown for type
+   annotated functions
++ #3942: html: table is not aligned to center even if ":align:
+   center"
+
+- changes from version 1.6.6:
+  * Features added
++ #4181: autodoc: Sort dictionary keys when possible
++ "VerbatimHighlightColor" is a new :ref:`LaTeX 'sphinxsetup'
+  ` key (refs: #4285)
++ Easier customizability of LaTeX macros involved in rendering of
+  code-blocks
++ Show traceback if conf.py raises an exception (refs: #4369)
++ Add :confval:`smartquotes` to disable smart quotes through
+  "conf.py" (refs: #3967)
++ Add :confval:`smartquotes_action` and
+  :confval:`smartquotes_excludes` (refs: #4142, #4357)
+  * Bugs fixed
++ #4334: sphinx-apidoc: Don't generate references to non-existing
+   files in TOC
++ #4206: latex: reST label between paragraphs loses paragraph
+   break
++ #4231: html: Apply fixFirefoxAnchorBug only under Firefox
++ #4221: napoleon depends on autodoc, but users need to load it
+   manually
++ #2298: automodule fails to document a class attribute
++ #4099: C++: properly link class reference to class from inside
+   constructor
++ #4267: PDF build broken by Unicode U+2116 NUMERO SIGN character
++ #4249: PDF output: Pygments error highlighting increase

commit python-Sphinx for openSUSE:Factory

2017-11-01 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2017-11-01 11:08:42

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Wed Nov  1 11:08:42 2017 rev:45 rq:537523 version:1.6.5

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx-doc.changes  
2017-10-07 17:47:29.803661953 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx-doc.changes 
2017-11-01 11:08:41.851835144 +0100
@@ -1,0 +2,37 @@
+Fri Oct 27 16:13:16 UTC 2017 - a...@gmx.de
+
+- update to version 1.6.5:
+  * Features added
++ #4107: Make searchtools.js compatible with pre-Sphinx1.5
+  templates
++ #4112: Don't override the smart_quotes setting if it was already
+  set
++ #4125: Display reference texts of original and translated
+  passages on i18n warning message
++ #4147: Include the exception when logging PO/MO file read/write
+  * Bugs fixed
++ #4085: Failed PDF build from image in parsed-literal using
+  ":align:" option
++ #4100: Remove debug print from autodoc extension
++ #3987: Changing theme from alabaster causes HTML build to fail
++ #4096: C++, don't crash when using the wrong role type. Thanks
+  to mitya57.
++ #4070, #4111: crashes when the warning message contains format
+  strings (again)
++ #4108: Search word highlighting breaks SVG images
++ #3692: Unable to build HTML if writing .buildinfo failed
++ #4152: HTML writer crashes if a field list is placed on top of
+  the document
++ #4063: Sphinx crashes when labeling directive ".. todolist::"
++ #4134: [doc] :file:`docutils.conf` is not documented explicitly
++ #4169: Chinese language doesn't trigger Chinese search
+  automatically
++ #1020: ext.todo todolist not linking to the page in pdflatex
++ #3965: New quickstart generates wrong SPHINXBUILD in Makefile
++ #3739: ":module:" option is ignored at content of pyobjects
++ #4149: Documentation: Help choosing :confval:`latex_engine`
++ #4090: [doc] :confval:`latex_additional_files` with extra LaTeX
+  macros should not use ".tex" extension
++ Failed to convert reST parser error to warning (refs: #4132)
+
+---
python-Sphinx.changes: same change

Old:

  Sphinx-1.6.4.tar.gz

New:

  Sphinx-1.6.5.tar.gz



Other differences:
--
++ python-Sphinx-doc.spec ++
--- /var/tmp/diff_new_pack.NEEQdK/_old  2017-11-01 11:08:42.775801393 +0100
+++ /var/tmp/diff_new_pack.NEEQdK/_new  2017-11-01 11:08:42.779801246 +0100
@@ -24,7 +24,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-Sphinx-doc
-Version:1.6.4
+Version:1.6.5
 Release:0
 Url:http://sphinx-doc.org
 Summary:Documentation for python-Sphinx

++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.NEEQdK/_old  2017-11-01 11:08:42.799800515 +0100
+++ /var/tmp/diff_new_pack.NEEQdK/_new  2017-11-01 11:08:42.803800370 +0100
@@ -25,7 +25,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-Sphinx
-Version:1.6.4
+Version:1.6.5
 Release:0
 Url:http://sphinx-doc.org
 Summary:Python documentation generator

++ Sphinx-1.6.4.tar.gz -> Sphinx-1.6.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-1.6.4/AUTHORS new/Sphinx-1.6.5/AUTHORS
--- old/Sphinx-1.6.4/AUTHORS2017-09-25 18:28:59.0 +0200
+++ new/Sphinx-1.6.5/AUTHORS2017-10-23 05:17:39.0 +0200
@@ -29,6 +29,7 @@
 * Kevin Dunn -- MathJax extension
 * Josip Dzolonga -- coverage builder
 * Buck Evan -- dummy builder
+* Matthew Fernandez -- todo extension fix
 * Hernan Grecco -- search improvements
 * Horst Gutmann -- internationalization support
 * Martin Hans -- autodoc improvements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-1.6.4/CHANGES new/Sphinx-1.6.5/CHANGES
--- old/Sphinx-1.6.4/CHANGES2017-09-26 02:45:04.0 +0200
+++ new/Sphinx-1.6.5/CHANGES2017-10-23 05:19:47.0 +0200
@@ -1,3 +1,37 @@
+Release 1.6.5 (released Oct 23, 2017)
+=
+
+Features added
+--
+
+* #4107: Make searchtools.js compatible with pre-Sphinx1.5 templates
+* #4112: Don't override the smart_quotes setting if it was already set
+* #4125: Display reference texts of original and translated passages on
+  i18n warning message
+* #4147:

commit python-Sphinx for openSUSE:Factory

2017-10-07 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2017-10-07 17:47:25

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Sat Oct  7 17:47:25 2017 rev:44 rq:530448 version:1.6.4

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx-doc.changes  
2017-09-27 16:52:35.286406302 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx-doc.changes 
2017-10-07 17:47:29.803661953 +0200
@@ -1,0 +2,34 @@
+Sat Sep 30 16:28:00 UTC 2017 - a...@gmx.de
+
+- update to version 1.6.4:
+  * Features added
++ #3926: Add "autodoc_warningiserror" to suppress the behavior of
+  "-W" option during importing target modules on autodoc
+  * Bugs fixed
++ #3924: docname lost after dynamically parsing RST in extension
++ #3946: Typo in sphinx.sty (this was a bug with no effect in
+  default context)
++ :pep: and :rfc: does not supports "default-role" directive
+  (refs: #3960)
++ #3960: default_role = 'guilabel' not functioning
++ Missing "texinputs_win/Makefile" to be used in latexpdf builder
+  on windows.
++ #4026: nature: Fix macOS Safari scrollbar color
++ #3877: Fix for C++ multiline signatures.
++ #4006: Fix crash on parallel build
++ #3969: private instance attributes causes AttributeError
++ #4041: C++, remove extra name linking in function pointers.
++ #4038: C, add missing documentation of "member" role.
++ #4044: An empty multicolumn cell causes extra row height in PDF
+  output
++ #4049: Fix typo in output of sphinx-build -h
++ #4062: hashlib.sha1() must take bytes, not unicode on Python 3
++ Avoid indent after index entries in latex (refs: #4066)
++ #4070: crashes when the warning message contains format strings
++ #4067: Return non-zero exit status when make subprocess fails
++ #4055: graphviz: the :align: option does not work for SVG output
++ #4055: graphviz: the :align: center option does not work for
+  latex output
++ #4051: "warn()" function for HTML theme outputs 'None' string
+
+---
python-Sphinx.changes: same change

Old:

  Sphinx-1.6.3.tar.gz

New:

  Sphinx-1.6.4.tar.gz



Other differences:
--
++ python-Sphinx-doc.spec ++
--- /var/tmp/diff_new_pack.SzAN4x/_old  2017-10-07 17:47:33.787486832 +0200
+++ /var/tmp/diff_new_pack.SzAN4x/_new  2017-10-07 17:47:33.791486656 +0200
@@ -24,7 +24,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-Sphinx-doc
-Version:1.6.3
+Version:1.6.4
 Release:0
 Url:http://sphinx-doc.org
 Summary:Documentation for python-Sphinx

++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.SzAN4x/_old  2017-10-07 17:47:33.815485601 +0200
+++ /var/tmp/diff_new_pack.SzAN4x/_new  2017-10-07 17:47:33.815485601 +0200
@@ -25,7 +25,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-Sphinx
-Version:1.6.3
+Version:1.6.4
 Release:0
 Url:http://sphinx-doc.org
 Summary:Python documentation generator

++ Sphinx-1.6.3.tar.gz -> Sphinx-1.6.4.tar.gz ++
 1735 lines of diff (skipped)




commit python-Sphinx for openSUSE:Factory

2017-09-27 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2017-09-27 16:52:32

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Wed Sep 27 16:52:32 2017 rev:43 rq:527168 version:1.6.3

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx-doc.changes  
2017-08-29 11:39:10.401806182 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx-doc.changes 
2017-09-27 16:52:35.286406302 +0200
@@ -1,0 +2,5 @@
+Mon Sep 11 17:07:40 UTC 2017 - jeng...@inai.de
+
+- Trim package descriptions for size.
+
+---
--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2017-09-07 22:09:26.734844515 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2017-09-27 16:52:36.286265641 +0200
@@ -1,0 +2,11 @@
+Mon Sep 18 22:03:24 UTC 2017 - toddrme2...@gmail.com
+
+- Move sphinxcontrib namespace into seperate package to avoid 
+  dependency loop with sphinxcontrib-websupport.
+
+---
+Mon Sep 11 17:07:40 UTC 2017 - jeng...@inai.de
+
+- Trim package descriptions for size.
+
+---

Old:

  __init__.py



Other differences:
--
++ python-Sphinx-doc.spec ++
--- /var/tmp/diff_new_pack.ALio3y/_old  2017-09-27 16:52:37.838047336 +0200
+++ /var/tmp/diff_new_pack.ALio3y/_new  2017-09-27 16:52:37.838047336 +0200
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %if 0%{?suse_version} != 1315
 %bcond_without latex
 %else
@@ -44,40 +45,31 @@
 %python_subpackages
 
 %description
-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
-for the new Python documentation, and has excellent facilities for Python
-project documentation, but C/C++ is supported as well, and more languages are
-planned.
-
-Sphinx uses reStructuredText as its markup language, and many of its strengths
-come from the power and straightforwardness of reStructuredText and its parsing
-and translating suite, the Docutils.
+Sphinx is a tool that facilitates creating documentation for Python
+projects (or other documents consisting of multiple reStructuredText
+sources). It was originally created for the Python documentation, and
+supports Python project documentation well, but C/C++ is likewise
+supported.
+
+Sphinx uses reStructuredText as its markup language. Sphinx draws from
+the parsing and translating suite, the Docutils.
 
-This package contained the documentation for Sphinx.
+This package contains the documentation for Sphinx.
 
 %package man
 Summary:Man files for python-Sphinx
 Group:  Documentation/Man
-Requires:   python-Sphinx = %{version}
 Requires:   %{name}-man-common = %{version}
+Requires:   python-Sphinx = %{version}
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
 
 %description man
-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
-for the new Python documentation, and has excellent facilities for Python
-project documentation, but C/C++ is supported as well, and more languages are
-planned.
-
-Sphinx uses reStructuredText as its markup language, and many of its strengths
-come from the power and straightforwardness of reStructuredText and its parsing
-and translating suite, the Docutils.
+Sphinx is a tool that facilitates creating documentation for Python
+projects (or other documents consisting of multiple reStructuredText
+sources).
 
-This package contained the manual pages for the Sphinx executables.
+This package contains the manual pages for the Sphinx executables.
 
 %package -n %{name}-html
 Summary:HTML Documentation for python-Sphinx
@@ -85,18 +77,11 @@
 Provides:   %{python_module Sphinx-doc-html = %{version}}
 
 %description -n %{name}-html
-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
-for the new Python documentation, and has excellent facilities for Python
-project documentation, but C/C++ is supported as well, and more languages are
-planned.

commit python-Sphinx for openSUSE:Factory

2017-09-07 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2017-09-07 22:09:25

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Thu Sep  7 22:09:25 2017 rev:42 rq:520218 version:1.6.3

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2017-08-29 11:39:10.565783144 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2017-09-07 22:09:26.734844515 +0200
@@ -1,0 +2,7 @@
+Thu Aug 31 22:47:36 UTC 2017 - toddrme2...@gmail.com
+
+- Create a base sphinxcontrib namespace package to guarantee all
+  the "python(2|3)-sphinxcontrib-foo" packages can be imported
+  correctly.
+
+---

New:

  __init__.py



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.KmNSXh/_old  2017-09-07 22:09:28.630577310 +0200
+++ /var/tmp/diff_new_pack.KmNSXh/_new  2017-09-07 22:09:28.634576746 +0200
@@ -32,6 +32,7 @@
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
https://files.pythonhosted.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
+Source10:   
https://raw.githubusercontent.com/sphinx-doc/sphinxcontrib-websupport/1.0.1/sphinxcontrib/__init__.py
 Patch1: disable-test.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  %{python_module devel}
@@ -186,6 +187,13 @@
 %install
 %python_install
 
+# Set up the sphinxcontrib namespace package
+%{python_expand mkdir -p %{buildroot}%{$python_sitelib}/sphinxcontrib/
+cp %{SOURCE10} %{buildroot}%{$python_sitelib}/sphinxcontrib/
+$python -m compileall -d %{$python_sitelib} 
%{buildroot}%{$python_sitelib}/sphinxcontrib/
+$python -O -m compileall -d %{$python_sitelib} 
%{buildroot}%{$python_sitelib}/sphinxcontrib/
+}
+
 %python_clone -a %{buildroot}%{_bindir}/sphinx-apidoc
 %python_clone -a %{buildroot}%{_bindir}/sphinx-autogen
 %python_clone -a %{buildroot}%{_bindir}/sphinx-build
@@ -211,6 +219,10 @@
 %exclude %{python_sitelib}/sphinx/texinputs/
 %endif
 %{python_sitelib}/Sphinx-%{version}-py*.egg-info
+%dir %{python_sitelib}/sphinxcontrib/
+%{python_sitelib}/sphinxcontrib/__init__.py*
+%pycache_only %dir %{python_sitelib}/sphinxcontrib/__pycache__/
+%pycache_only %{python_sitelib}/sphinxcontrib/__pycache__/__init__*.py*
 
 # Requirements are not available on SLES
 %if %{with latex}

++ __init__.py ++
# -*- coding: utf-8 -*-
__import__('pkg_resources').declare_namespace(__name__)



commit python-Sphinx for openSUSE:Factory

2017-08-29 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2017-08-29 11:39:09

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Tue Aug 29 11:39:09 2017 rev:41 rq:518573 version:1.6.3

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx-doc.changes  
2017-08-06 11:27:59.896914753 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx-doc.changes 
2017-08-29 11:39:10.401806182 +0200
@@ -1,0 +2,5 @@
+Thu Aug 24 16:43:14 UTC 2017 - toddrme2...@gmail.com
+
+- Check that latex dependencies are installable
+
+---
--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2017-08-06 11:27:59.924910809 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2017-08-29 11:39:10.565783144 +0200
@@ -1,0 +2,5 @@
+Thu Aug 24 15:55:01 UTC 2017 - toddrme2...@gmail.com
+
+- Add new latex dependencies needed in openSUSE:Factory
+
+---



Other differences:
--
++ python-Sphinx-doc.spec ++
--- /var/tmp/diff_new_pack.7HHcdH/_old  2017-08-29 11:39:11.649630865 +0200
+++ /var/tmp/diff_new_pack.7HHcdH/_new  2017-08-29 11:39:11.661629179 +0200
@@ -15,6 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+%if 0%{?suse_version} != 1315
+%bcond_without latex
+%else
+%bcond_with latex
+%endif
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-Sphinx-doc
@@ -29,6 +34,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
 BuildRequires:  python3-Sphinx
+%if %{with latex}
+BuildRequires:  python3-Sphinx-latex
+%endif
 BuildRequires:  python-rpm-macros
 Recommends: %{name}-html = %{version}
 BuildArch:  noarch

++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.7HHcdH/_old  2017-08-29 11:39:11.769614007 +0200
+++ /var/tmp/diff_new_pack.7HHcdH/_new  2017-08-29 11:39:11.773613446 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package python-Sphinx-doc
+# spec file for package python-Sphinx
 #
 # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 
-%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} > 
1110 )
+%if 0%{?suse_version} != 1315
 %bcond_without latex
 %else
 %bcond_with latex
@@ -153,6 +153,11 @@
 Requires:   tex(utf8.def)
 Requires:   tex(utf8x.def)
 Requires:   tex(wrapfig.sty)
+%if 0%{?suse_version} > 1320
+Requires:   texlive-latexmk
+Requires:   texlive-makeindex
+Requires:   tex(varwidth.sty)
+%endif
 
 %descriptionlatex
 Sphinx is a tool that makes it easy to create intelligent and beautiful




commit python-Sphinx for openSUSE:Factory

2017-08-06 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2017-08-06 11:27:57

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Sun Aug  6 11:27:57 2017 rev:40 rq:512791 version:1.6.3

Changes:

New Changes file:

--- /dev/null   2017-07-20 07:30:00.335470106 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx-doc.changes 
2017-08-06 11:27:59.896914753 +0200
@@ -0,0 +1,835 @@
+---
+Mon Jul 24 19:11:52 UTC 2017 - toddrme2...@gmail.com
+
+- Split documentation into subpackage to avoid dependency loops.
+- Only require python3-typing for python3 < 3.5
+
+---
+Mon Jul  3 13:45:38 UTC 2017 - tbecht...@suse.com
+
+- update to 1.6.3:
+  * #3821: Failed to import sphinx.util.compat with docutils-0.14rc1
+  * #3829: sphinx-quickstart template is incomplete regarding use of alabaster
+  * #3772: 'str object' has no attribute 'filename'
+  * Emit wrong warnings if citation label includes hyphens (refs: #3565)
+  * #3858: Some warnings are not colored when using --color option
+  * #3775: Remove unwanted whitespace in default template
+  * #3835: sphinx.ext.imgmath fails to convert SVG images if project directory
+  name contains spaces
+  * #3850: Fix color handling in make mode's help command
+  * #3865: use of self.env.warn in sphinx extension fails
+  * #3824: production lists apply smart quotes transform since Sphinx 1.6.1
+  * latex: fix ``\sphinxbfcode`` swallows initial space of argument
+  * #3878: Quotes in auto-documented class attributes should be straight quotes
+  in PDF output
+  * #3881: LaTeX figure floated to next page sometimes leaves extra vertical
+  whitespace
+  * #3885: duplicated footnotes raises IndexError
+  * #3873: Failure of deprecation warning mechanism of
+  ``sphinx.util.compat.Directive``
+  * #3874: Bogus warnings for "citation not referenced" for cross-file 
citations
+  * #3860: Don't download images when builders not supported images
+  * #3860: Remote image URIs without filename break builders not supported 
remote
+  images
+  * #3833: command line messages are translated unintentionally with 
``language``
+  setting.
+  * #3840: make checking ``epub_uid`` strict
+  * #3851, #3706: Fix about box drawing characters for PDF output
+  * #3900: autosummary could not find methods
+  * #3902: Emit error if ``latex_documents`` contains non-unicode string in py2
+
+---
+Fri Jun 30 06:54:21 UTC 2017 - tbecht...@suse.com
+
+- python-sphinxcontrib-websupport is a Requires
+
+---
+Thu Jun 29 15:44:02 UTC 2017 - tbecht...@suse.com
+
+- Adjust Requires
+
+---
+Fri Jun 23 18:04:59 UTC 2017 - tbecht...@suse.com
+
+- update to 1.6.2:
+  * See http://www.sphinx-doc.org/en/stable/changes.html
+- Adjust Requires and BuildRequires
+- Add disable-test.patch to disable test which needs remote access.
+
+---
+Mon May  8 15:38:53 UTC 2017 - toddrme2...@gmail.com
+
+- Fix update-alternatives.
+
+---
+Fri May  5 14:55:31 UTC 2017 - toddrme2...@gmail.com
+
+- Fix old obsoletes/provides.
+
+---
+Mon Feb 20 14:18:17 UTC 2017 - jmate...@suse.com
+
+- update for singlespec
+- run tests for all python versions
+- include python-enum34 for test compatibility
+
+---
+Thu Feb 16 11:18:38 UTC 2017 - tbecht...@suse.com
+
+- update to 1.5.2:
+  * See http://www.sphinx-doc.org/en/stable/changes.html
+- Adjust Requires and BuildRequires
+
+---
+Mon Feb 29 16:07:44 UTC 2016 - mich...@stroeder.com
+
+- Removed obsolete fix_some_testcase_error_with_pygments-2.1.1.patch
+- update to version 1.3.6:
+  * #1873, #1876, #2278: Add ``page_source_suffix`` html context variable. 
This should be
+introduced with :confval:`source_parsers` feature. Thanks for Eric 
Holscher.
+  * #2265: Fix babel is used in spite of disabling it on ``latex_elements``
+  * #2295: Avoid mutating dictionary errors while enumerating members in 
autodoc
+with Python 3
+  * #2291: Fix pdflatex "Counter too large" error from footnotes inside tables 
of contents
+  * #2292: Fix some footnotes disappear from LaTeX output
+  * #2287: ``sphinx.transforms.Locale`` always uses rst parser. Sphinx i18n 
feat

commit python-Sphinx for openSUSE:Factory

2017-05-16 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2017-05-16 14:29:54

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Tue May 16 14:29:54 2017 rev:39 rq:493489 version:1.5.2

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2017-03-10 20:58:15.454965770 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2017-05-16 14:29:55.675492245 +0200
@@ -1,0 +2,17 @@
+Mon May  8 15:38:53 UTC 2017 - toddrme2...@gmail.com
+
+- Fix update-alternatives.
+
+---
+Fri May  5 14:55:31 UTC 2017 - toddrme2...@gmail.com
+
+- Fix old obsoletes/provides.
+
+---
+Mon Feb 20 14:18:17 UTC 2017 - jmate...@suse.com
+
+- update for singlespec
+- run tests for all python versions
+- include python-enum34 for test compatibility
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.sXYbMQ/_old  2017-05-16 14:29:56.515374256 +0200
+++ /var/tmp/diff_new_pack.sXYbMQ/_new  2017-05-16 14:29:56.523373133 +0200
@@ -16,6 +16,14 @@
 #
 
 
+%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} > 
1110 )
+%bcond_without latex
+%else
+%bcond_with latex
+%endif
+
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define oldpython python
 Name:   python-Sphinx
 Version:1.5.2
 Release:0
@@ -25,36 +33,41 @@
 Group:  Development/Languages/Python
 Source: 
https://pypi.io/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
-# Documentation requirements:
-BuildRequires:  python-Babel
-BuildRequires:  python-Jinja2 >= 2.3
-BuildRequires:  python-alabaster
-BuildRequires:  python-docutils >= 0.7
-BuildRequires:  python-imagesize
-BuildRequires:  python-mock
-BuildRequires:  python-requests >= 2.4
-BuildRequires:  python-six >= 1.5
-BuildRequires:  python-snowballstemmer
-BuildRequires:  python-sphinx_rtd_theme
-# Testsuite requirements:
-BuildRequires:  python-Pygments >= 2.1
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
+# SECTION documentation requirements
+BuildRequires:  %{python_module Babel >= 1.3}
+BuildRequires:  %{python_module Jinja2 >= 2.3}
+BuildRequires:  %{python_module Pygments >= 2.1}
+BuildRequires:  %{python_module alabaster >= 0.7}
+BuildRequires:  %{python_module docutils >= 0.11}
+BuildRequires:  %{python_module imagesize}
+BuildRequires:  %{python_module requests >= 2.4}
+BuildRequires:  %{python_module six >= 1.5}
+BuildRequires:  %{python_module snowballstemmer >= 1.1}
+BuildRequires:  %{python_module sphinx_rtd_theme}
+# ENDSECTION doc requirements
+# SECTION testsuite requirements
+BuildRequires:  %{python_module html5lib}
+BuildRequires:  %{python_module mock}
+BuildRequires:  %{python_module pytest}
+# ENDSECTION
+# for python 2 only:
 BuildRequires:  python-enum34
-BuildRequires:  python-html5lib
-BuildRequires:  python-pytest
-Requires(post): update-alternatives
-Requires(postun): update-alternatives
-Requires:   python-Babel
+Requires:   python-Babel >= 1.3
 Requires:   python-Jinja2 >= 2.3
 Requires:   python-Pygments >= 2.0
-Requires:   python-alabaster
+Requires:   python-alabaster >= 0.7
 Requires:   python-docutils >= 0.11
 Requires:   python-imagesize
 Requires:   python-requests >= 2.4
 Requires:   python-six >= 1.5
 Requires:   python-snowballstemmer >= 1.1
 Requires:   python-sphinx_rtd_theme
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 
 %if 0%{?suse_version}
 Recommends: python-rst2pdf
@@ -62,13 +75,13 @@
 # workaround for suboptimal CentOS-7 project config
 #!BuildIgnore: texinfo
 
-Provides:   python-sphinx = %{version}
-Obsoletes:  python-sphinx < %{version}
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
-BuildArch:  noarch
+%ifpython2
+Obsoletes:  %{oldpython}-sphinx < %{version}
+Provides:   %{oldpython}-sphinx = %{version}
 %endif
+BuildArch:  noarch
+
+%python_subpackages
 
 %description
 Sphinx is a tool that makes it easy to create intelligent and beautiful
@@ -82,12 +95,12 @@
 come from th

commit python-Sphinx for openSUSE:Factory

2017-03-10 Thread root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2017-03-10 20:58:14

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Fri Mar 10 20:58:14 2017 rev:38 rq:458460 version:1.5.2

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2016-03-07 13:26:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2017-03-10 20:58:15.454965770 +0100
@@ -1,0 +2,7 @@
+Thu Feb 16 11:18:38 UTC 2017 - tbecht...@suse.com
+
+- update to 1.5.2:
+  * See http://www.sphinx-doc.org/en/stable/changes.html
+- Adjust Requires and BuildRequires
+
+---

Old:

  Sphinx-1.3.6.tar.gz

New:

  Sphinx-1.5.2.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.CdYz8z/_old  2017-03-10 20:58:16.262851281 +0100
+++ /var/tmp/diff_new_pack.CdYz8z/_new  2017-03-10 20:58:16.262851281 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Sphinx
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   python-Sphinx
-Version:1.3.6
+Version:1.5.2
 Release:0
 Url:http://sphinx-doc.org
 Summary:Python documentation generator
 License:BSD-2-Clause
 Group:  Development/Languages/Python
-Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
+Source: 
https://pypi.io/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
@@ -32,13 +32,17 @@
 BuildRequires:  python-Jinja2 >= 2.3
 BuildRequires:  python-alabaster
 BuildRequires:  python-docutils >= 0.7
+BuildRequires:  python-imagesize
 BuildRequires:  python-mock
-BuildRequires:  python-six >= 1.4
+BuildRequires:  python-requests >= 2.4
+BuildRequires:  python-six >= 1.5
 BuildRequires:  python-snowballstemmer
 BuildRequires:  python-sphinx_rtd_theme
 # Testsuite requirements:
 BuildRequires:  python-Pygments >= 2.1
-BuildRequires:  python-nose
+BuildRequires:  python-enum34
+BuildRequires:  python-html5lib
+BuildRequires:  python-pytest
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
 Requires:   python-Babel
@@ -46,8 +50,10 @@
 Requires:   python-Pygments >= 2.0
 Requires:   python-alabaster
 Requires:   python-docutils >= 0.11
-Requires:   python-six >= 1.4
-Requires:   python-snowballstemmer
+Requires:   python-imagesize
+Requires:   python-requests >= 2.4
+Requires:   python-six >= 1.5
+Requires:   python-snowballstemmer >= 1.1
 Requires:   python-sphinx_rtd_theme
 
 %if 0%{?suse_version}
@@ -201,7 +207,9 @@
 %find_lang sphinx
 
 %check
-PYTHONPATH=$PWD make test
+# linkcheck tests need network access (which is not available in OBS)
+rm tests/test_build_linkcheck.py
+PYTHONPATH=$PWD LANG=en_US.UTF-8 make test
 
 %post
 update-alternatives \

++ Sphinx-1.3.6.tar.gz -> Sphinx-1.5.2.tar.gz ++
 127553 lines of diff (skipped)




commit python-Sphinx for openSUSE:Factory

2016-03-07 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2016-03-07 13:26:03

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2016-02-22 08:56:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2016-03-07 13:26:12.0 +0100
@@ -1,0 +2,20 @@
+Mon Feb 29 16:07:44 UTC 2016 - mich...@stroeder.com
+
+- Removed obsolete fix_some_testcase_error_with_pygments-2.1.1.patch
+- update to version 1.3.6:
+  * #1873, #1876, #2278: Add ``page_source_suffix`` html context variable. 
This should be
+introduced with :confval:`source_parsers` feature. Thanks for Eric 
Holscher.
+  * #2265: Fix babel is used in spite of disabling it on ``latex_elements``
+  * #2295: Avoid mutating dictionary errors while enumerating members in 
autodoc
+with Python 3
+  * #2291: Fix pdflatex "Counter too large" error from footnotes inside tables 
of contents
+  * #2292: Fix some footnotes disappear from LaTeX output
+  * #2287: ``sphinx.transforms.Locale`` always uses rst parser. Sphinx i18n 
feature should
+support parsers that specified source_parsers.
+  * #2290: Fix ``sphinx.ext.mathbase`` use of amsfonts may break user choice 
of math fonts
+  * #2324: Print a hint how to increase the recursion limit when it is hit.
+  * #1565, #2229: Revert new warning; the new warning will be triggered from 
version 1.4 on.
+  * #2329: Refresh environment forcely if source directory has changed.
+  * #2019: Fix the domain objects in search result are not escaped
+
+---

Old:

  Sphinx-1.3.5.tar.gz
  fix_some_testcase_error_with_pygments-2.1.1.patch

New:

  Sphinx-1.3.6.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.vNbJIG/_old  2016-03-07 13:26:13.0 +0100
+++ /var/tmp/diff_new_pack.vNbJIG/_new  2016-03-07 13:26:13.0 +0100
@@ -17,16 +17,13 @@
 
 
 Name:   python-Sphinx
-Version:1.3.5
+Version:1.3.6
 Release:0
 Url:http://sphinx-doc.org
 Summary:Python documentation generator
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM fix_some_testcase_error_with_pygments-2.1.1.patch - fix 
tests with python-Pygments 2.1.1
-# See 
https://github.com/sphinx-doc/sphinx/commit/50f4862b069d58ade556aad90bd179206f10fdc1
-Patch0: fix_some_testcase_error_with_pygments-2.1.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
@@ -175,7 +172,6 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
-%patch0 -p1
 
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
 # Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to

++ Sphinx-1.3.5.tar.gz -> Sphinx-1.3.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-1.3.5/CHANGES new/Sphinx-1.3.6/CHANGES
--- old/Sphinx-1.3.5/CHANGES2016-01-24 04:56:27.0 +0100
+++ new/Sphinx-1.3.6/CHANGES2016-02-29 14:49:21.0 +0100
@@ -1,3 +1,29 @@
+Release 1.3.6 (released Feb 29, 2016)
+=
+
+Features added
+--
+
+* #1873, #1876, #2278: Add ``page_source_suffix`` html context variable. This 
should be
+  introduced with :confval:`source_parsers` feature. Thanks for Eric Holscher.
+
+
+Bugs fixed
+--
+
+* #2265: Fix babel is used in spite of disabling it on ``latex_elements``
+* #2295: Avoid mutating dictionary errors while enumerating members in autodoc
+  with Python 3
+* #2291: Fix pdflatex "Counter too large" error from footnotes inside tables 
of contents
+* #2292: Fix some footnotes disappear from LaTeX output
+* #2287: ``sphinx.transforms.Locale`` always uses rst parser. Sphinx i18n 
feature should
+  support parsers that specified source_parsers.
+* #2290: Fix ``sphinx.ext.mathbase`` use of amsfonts may break user choice of 
math fonts
+* #2324: Print a hint how to increase the recursion limit when it is hit.
+* #1565, #2229: Revert new warning; the new warning will be triggered from 
version 1.4 on.
+* #2329: Refresh environment forcely if source directory has changed.
+* #2019: Fix the domain objects in search result are not escaped
+
 Release 1.3.5 (released Jan 24, 2016)
 =
 
@@ -7,12 +33,13 @

commit python-Sphinx for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2016-02-22 08:56:48

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2016-01-30 11:31:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2016-02-22 08:56:49.0 +0100
@@ -1,0 +2,9 @@
+Wed Feb 17 09:10:17 UTC 2016 - toddrme2...@gmail.com
+
+- Add fix_some_testcase_error_with_pygments-2.1.1.patch
+  Fixes tests with python-Pygments 2.1.1.
+  Should be in next release.
+  See 
https://github.com/sphinx-doc/sphinx/commit/50f4862b069d58ade556aad90bd179206f10fdc1
+- Add additional latex requirements.
+
+---

New:

  fix_some_testcase_error_with_pygments-2.1.1.patch



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.rtBCyS/_old  2016-02-22 08:56:50.0 +0100
+++ /var/tmp/diff_new_pack.rtBCyS/_new  2016-02-22 08:56:50.0 +0100
@@ -24,6 +24,9 @@
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM fix_some_testcase_error_with_pygments-2.1.1.patch - fix 
tests with python-Pygments 2.1.1
+# See 
https://github.com/sphinx-doc/sphinx/commit/50f4862b069d58ade556aad90bd179206f10fdc1
+Patch0: fix_some_testcase_error_with_pygments-2.1.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
@@ -99,26 +102,24 @@
 Requires:   texlive-latex
 Requires:   texlive-metafont
 Requires:   texlive-pdftex
-Requires:   tex(article.cls)
-Requires:   tex(pdftex.def)
-Requires:   tex(utf8.def)
-Requires:   tex(utf8x.def)
 Requires:   tex(8r.enc)
-Requires:   tex(english.ldf)
-Requires:   tex(pdftex.map)
 Requires:   tex(alltt.sty)
 Requires:   tex(amsfonts.sty)
 Requires:   tex(amsmath.sty)
 Requires:   tex(amssymb.sty)
 Requires:   tex(amsthm.sty)
 Requires:   tex(array.sty)
+Requires:   tex(article.cls)
 Requires:   tex(atbegshi.sty)
 Requires:   tex(babel.sty)
 Requires:   tex(bm.sty)
+Requires:   tex(capt-of.sty)
 Requires:   tex(cmap.sty)
 Requires:   tex(color.sty)
 Requires:   tex(colortbl.sty)
 Requires:   tex(dvipdfmx.def)
+Requires:   tex(english.ldf)
+Requires:   tex(eqparbox.sty)
 Requires:   tex(fancybox.sty)
 Requires:   tex(fancyhdr.sty)
 Requires:   tex(fancyvrb.sty)
@@ -136,21 +137,27 @@
 Requires:   tex(longtable.sty)
 Requires:   tex(makeidx.sty)
 Requires:   tex(multirow.sty)
+Requires:   tex(needspace.sty)
+Requires:   tex(newfloat.sty)
 Requires:   tex(palatino.sty)
 Requires:   tex(parskip.sty)
+Requires:   tex(pcrr.tfm)
+Requires:   tex(pdftex.def)
+Requires:   tex(pdftex.map)
+Requires:   tex(phvr.tfm)
+Requires:   tex(pplr.tfm)
 Requires:   tex(preview.sty)
+Requires:   tex(ptmr.tfm)
+Requires:   tex(pzcmi.tfm)
 Requires:   tex(tabulary.sty)
 Requires:   tex(textcomp.sty)
 Requires:   tex(threeparttable.sty)
 Requires:   tex(times.sty)
 Requires:   tex(titlesec.sty)
 Requires:   tex(upquote.sty)
+Requires:   tex(utf8.def)
+Requires:   tex(utf8x.def)
 Requires:   tex(wrapfig.sty)
-Requires:   tex(pcrr.tfm)
-Requires:   tex(phvr.tfm)
-Requires:   tex(pplr.tfm)
-Requires:   tex(ptmr.tfm)
-Requires:   tex(pzcmi.tfm)
 
 %descriptionlatex
 Sphinx is a tool that makes it easy to create intelligent and beautiful
@@ -168,6 +175,8 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
+%patch0 -p1
+
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
 # Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
 # allow for update-alternatives later on:

++ fix_some_testcase_error_with_pygments-2.1.1.patch ++
>From 50f4862b069d58ade556aad90bd179206f10fdc1 Mon Sep 17 00:00:00 2001
From: Takeshi KOMIYA 
Date: Mon, 15 Feb 2016 11:46:30 +0900
Subject: [PATCH] Fix some testcase get error with pygments-2.1.1

---
 tests/test_build_html.py | 15 +--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/tests/test_build_html.py b/tests/test_build_html.py
index b97d9d5..c11ad68 100644
--- a/tests/test_build_html.py
+++ b/tests/test_build_html.py
@@ -344,12 +344,23 @@ def check_xpath(etree, fname, path, check, be_found=True):
 # o

commit python-Sphinx for openSUSE:Factory

2016-01-30 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2016-01-30 11:31:03

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2016-01-20 09:53:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2016-01-30 11:31:05.0 +0100
@@ -1,0 +2,25 @@
+Mon Jan 25 10:56:43 UTC 2016 - mich...@stroeder.com
+
+- requires python-pygments => 2.1
+- update to version 1.3.5:
+  * Fix line numbers was not shown on warnings in LaTeX and texinfo
+builders
+  * Fix filenames were not shown on warnings of citations
+  * Fix line numbers was not shown on warnings in LaTeX and texinfo
+builders
+  * Fix line numbers was not shown on warnings of indecies
+  * #2026: Fix LaTeX builder rais error if parsed-literal includes
+ links
+  * #2243: Ignore strange docstring types for classes, do not crash
+  * #2247: Fix #2205 breaks make html for definition list with
+ classifiers that contains regular-expression like string
+  * #1565: Show warning if Pygments throws an ErrorToken
+  * #2211: Fix paragraphs in table cell doesn't work in Latex output
+  * #2253: ":pyobject:" option of "literalinclude" directive can't
+ detect indented body block when the block starts with blank or
+ comment lines.
+  * Fix TOC is not shown when no ":maxdepth:" for toctrees (ref: #771)
+  * Fix warning message for ":numref:" if target is in orphaned doc
+(ref: #2244)
+
+---

Old:

  Sphinx-1.3.4.tar.gz

New:

  Sphinx-1.3.5.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.CXtMY9/_old  2016-01-30 11:31:06.0 +0100
+++ /var/tmp/diff_new_pack.CXtMY9/_new  2016-01-30 11:31:06.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-Sphinx
-Version:1.3.4
+Version:1.3.5
 Release:0
 Url:http://sphinx-doc.org
 Summary:Python documentation generator
@@ -37,7 +37,7 @@
 BuildRequires:  python-snowballstemmer
 BuildRequires:  python-sphinx_rtd_theme
 # Testsuite requirements:
-BuildRequires:  python-Pygments >= 2.0
+BuildRequires:  python-Pygments >= 2.1
 BuildRequires:  python-nose
 Requires(post): update-alternatives
 Requires(postun): update-alternatives

++ Sphinx-1.3.4.tar.gz -> Sphinx-1.3.5.tar.gz ++
 3202 lines of diff (skipped)




commit python-Sphinx for openSUSE:Factory

2016-01-20 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2016-01-20 09:53:56

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2015-12-21 12:03:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2016-01-20 09:53:57.0 +0100
@@ -1,0 +2,69 @@
+Tue Jan 12 16:35:16 UTC 2016 - mich...@stroeder.com
+
+- Update to 1.3.4
+
+Release 1.3.4 (released Jan 12, 2016)[51]
+  * #2134: Fix figure caption with reference causes latex build error
+  * #2094: Fix rubric with reference not working in Latex
+  * #2147: Fix litralinclude code in latex does not break in pages
+  * #1833: Fix email addresses is showed again if latex_show_urls is
+   not None
+  * #2176: sphinx.ext.graphviz: use  instead of  to embed
+   svg
+  * #967: Fix SVG inheritance diagram is not hyperlinked (clickable)
+  * #1237: Fix footnotes not working in definition list in LaTeX
+  * #2168: Fix raw directive does not work for text writer
+  * #2171: Fix cannot linkcheck url with unicode
+  * #2182: LaTeX: support image file names with more than 1 dots
+  * #2189: Fix previous sibling link for first file in subdirectory
+   uses last file, not intended previous from root toctree
+  * #2003: Fix decode error under python2 (only) when make linkcheck is
+   run
+  * #2186: Fix LaTeX output of mathbb in math
+  * #1480, #2188: LaTeX: Support math in section titles
+  * #2071: Fix same footnote in more than two section titles =>
+   LaTeX/PDF Bug
+  * #2040: Fix UnicodeDecodeError in sphinx-apidoc when author contains
+   non-ascii characters
+  * #2193: Fix shutil.SameFileError if source directory and destination
+   directory are same
+  * #2178: Fix unparseable C++ cross-reference when referencing a
+   function with :cpp:any:
+  * #2206: Fix Sphinx latex doc build failed due to a footnotes
+  * #2201: Fix wrong table caption for tables with over 30 rows
+  * #2213: Set  in the classic theme to fit with 
+  * #1815: Fix linkcheck does not raise an exception if warniserror set
+   to true and link is broken
+  * #2197: Fix slightly cryptic error message for missing index.rst
+   file
+  * #1894: Unlisted phony targets in quickstart Makefile
+  * #2125: Fix unifies behavior of collapsed fields (GroupedField and
+   TypedField)
+  * #1408: Check latex_logo validity before copying
+  * #771: Fix latex output doesn’t set tocdepth
+  * #1820: On Windows, console coloring is broken with colorama version
+   0.3.3. Now sphinx use colorama>=0.3.5 to avoid this problem.
+  * #2072: Fix footnotes in chapter-titles do not appear in PDF output
+  * #1580: Fix paragraphs in longtable don’t work in Latex output
+  * #1366: Fix centered image not centered in latex
+  * #1860: Fix man page using :samp: with braces - font doesn’t reset
+  * #1610: Sphinx crashes in japanese indexing in some systems
+  * Fix Sphinx crashes if mecab initialization failed
+  * #2160: Fix broken TOC of PDFs if section includes an image
+  * #2172: Fix dysfunctional admonition [53]py@lightbox in sphinx.sty.
+   Thanks to jfbu.
+  * #2198,#2205: make gettext generate broken msgid for definition
+   lists.
+  * #2062: Escape characters in doctests are treated incorrectly with
+   Python 2.
+  * #2225: Fix if the option does not begin with dash, linking is not
+   performed
+  * #2226: Fix math is not HTML-encoded when :nowrap: is given (jsmath,
+   mathjax)
+  * #1601, #2220: ‘any’ role breaks extended domains behavior. Affected
+   extensions doesn’t support resolve_any_xref and resolve_xref
+   returns problematic node instead of None. sphinxcontrib-httpdomain
+   is one of them.
+  * #2229: Fix no warning is given for unknown options
+
+---

Old:

  Sphinx-1.3.3.tar.gz

New:

  Sphinx-1.3.4.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.D5MOIg/_old  2016-01-20 09:53:59.0 +0100
+++ /var/tmp/diff_new_pack.D5MOIg/_new  2016-01-20 09:53:59.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-Sphinx
-Version:1.3.3
+Version:1.3.4
 Release:0
 Url:http://sphinx-doc.org
 Summary:Python documentation generator

++ Sphinx-1.3.3.tar.gz -> Sphinx-1.3.4.tar.gz ++
 3848 lines of diff (skipped)




commit python-Sphinx for openSUSE:Factory

2015-12-21 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2015-12-21 12:03:23

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2015-09-19 06:54:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2015-12-21 12:03:24.0 +0100
@@ -1,0 +2,96 @@
+Wed Dec  9 16:41:19 UTC 2015 - mich...@stroeder.com
+
+- Update to 1.3.3
+- Updated project url in .spec file
+- Aligned version in BuildRequires: python-Pygments >= 2.0 with
+  Requires line
+
+Release 1.3.3 (released Dec 2, 2015)
+
+
+Bugs fixed
+--
+
+* #2012: Fix exception occurred if ``numfig_format`` is invalid
+* #2142: Provide non-minified JS code in 
``sphinx/search/non-minified-js/*.js`` for
+  source distribution on PyPI.
+* #2148: Error while building devhelp target with non-ASCII document.
+
+
+Release 1.3.2 (released Nov 29, 2015)
+=
+
+Features added
+--
+
+* #1935: Make "numfig_format" overridable in latex_elements.
+
+Bugs fixed
+--
+
+* #1976: Avoid "2.0" version of Babel because it doesn't work with Windows 
environment.
+* Add a "default.css" stylesheet (which imports "classic.css") for 
compatibility.
+* #1788: graphviz extension raises exception when caption option is present.
+* #1789: ``:pyobject:`` option of ``literalinclude`` directive includes 
following
+  lines after class definitions
+* #1790: ``literalinclude`` strips empty lines at the head and tail
+* #1802: load plugin themes automatically when theme.conf use it as 'inherit'. 
Thanks to
+  Takayuki Hirai.
+* #1794: custom theme extended from alabaster or sphinx_rtd_theme can't find 
base theme.
+* #1834: compatibility for docutils-0.13: handle_io_errors keyword argument for
+  docutils.io.FileInput cause TypeError.
+* #1823: '.' as  for sphinx-apidoc cause an unfriendly error. Now 
'.'
+  is converted to absolute path automatically.
+* Fix a crash when setting up extensions which do not support metadata.
+* #1784: Provide non-minified JS code in ``sphinx/search/non-minified-js/*.js``
+* #1822, #1892: Fix regression for #1061. autosummary can't generate doc for 
imported
+  members since sphinx-1.3b3. Thanks to Eric Larson.
+* #1793, #1819: "see also" misses a linebreak in text output. Thanks to 
Takayuki Hirai.
+* #1780, #1866: "make text" shows "class" keyword twice. Thanks to Takayuki
+  Hirai.
+* #1871: Fix for LaTeX output of tables with one column and multirows.
+* Work around the lack of the HTMLParserError exception in Python 3.5.
+* #1949: Use ``safe_getattr`` in the coverage builder to avoid aborting with
+  descriptors that have custom behavior.
+* #1915: Do not generate smart quotes in doc field type annotations.
+* #1796: On py3, automated .mo building caused UnicodeDecodeError.
+* #1923: Use babel features only if the babel latex element is nonempty.
+* #1942: Fix a KeyError in websupport.
+* #1903: Fix strange id generation for glossary terms.
+* #1796, On py3, automated .mo building cause UnicodeDecodeError
+* Fix: ``make text`` will crush if a definition list item has more than 1 
classifiers as:
+* #1796: On py3, automated .mo building cause UnicodeDecodeError
+* ``make text`` will crush if a definition list item has more than 1 
classifiers as:
+* Fixed #1855: make gettext generates broken po file for definition lists with 
classifier.
+  ``term : classifier1 : classifier2``.
+* #1855: make gettext generates broken po file for definition lists with 
classifier.
+* #1869: Fix problems when dealing with files containing non-ASCII characters. 
Thanks to
+  Marvin Schmidt.
+* #1798: Fix building LaTeX with references in titles.
+* #1725: On py2 environment, doctest with using non-ASCII characters causes
+  ``'ascii' codec can't decode byte`` exception.
+* #1540: Fix RuntimeError with circular referenced toctree
+* #1983: i18n translation feature breaks references which uses section name.
+* #1990: Use caption of toctree to title of \tableofcontents in LaTeX
+* #1987: Fix ampersand is ignored in ``:menuselection:`` and ``:guilabel:`` on 
LaTeX builder
+* #1994: More supporting non-standard parser (like recommonmark parser) for 
Translation and
+  WebSupport feature. Now node.rawsource is fall backed to node.astext() 
during docutils
+  transforming.
+* On Py2 environment, conf.py that is generated by sphinx-quickstart should 
have u prefixed
+  config value for 'version' and 'release'.
+* #2102: On Windows + Py3, using ``|today|`` and non-ASCII date format will 
raise
+  UnicodeEncodeError.
+* #1974: UnboundLocalError: local variable 'domain' ref

commit python-Sphinx for openSUSE:Factory

2015-09-18 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2015-09-19 06:54:17

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2015-08-07 00:21:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2015-09-19 06:54:18.0 +0200
@@ -1,0 +2,11 @@
+Wed Sep 16 13:16:01 UTC 2015 - toddrme2...@gmail.com
+
+- Don't buildrequires latex-related stuff.
+
+---
+Fri Sep  4 13:27:51 UTC 2015 - toddrme2...@gmail.com
+
+- Split latex-related stuff into its own subpackage so we can 
+  depend on the necessary latex components.
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.OlHZWI/_old  2015-09-19 06:54:19.0 +0200
+++ /var/tmp/diff_new_pack.OlHZWI/_new  2015-09-19 06:54:19.0 +0200
@@ -49,6 +49,7 @@
 Requires:   python-six >= 1.4
 Requires:   python-snowballstemmer
 Requires:   python-sphinx_rtd_theme
+
 %if 0%{?suse_version}
 Recommends: python-rst2pdf
 %endif
@@ -92,6 +93,79 @@
 come from the power and straightforwardness of reStructuredText and its parsing
 and translating suite, the Docutils.
 
+%package latex
+Summary:Sphinx packages for LaTeX
+Group:  Productivity/Publishing/TeX/Base
+Requires:   texlive-latex
+Requires:   texlive-metafont
+Requires:   texlive-pdftex
+Requires:   tex(article.cls)
+Requires:   tex(pdftex.def)
+Requires:   tex(utf8.def)
+Requires:   tex(utf8x.def)
+Requires:   tex(8r.enc)
+Requires:   tex(english.ldf)
+Requires:   tex(pdftex.map)
+Requires:   tex(alltt.sty)
+Requires:   tex(amsfonts.sty)
+Requires:   tex(amsmath.sty)
+Requires:   tex(amssymb.sty)
+Requires:   tex(amsthm.sty)
+Requires:   tex(array.sty)
+Requires:   tex(atbegshi.sty)
+Requires:   tex(babel.sty)
+Requires:   tex(bm.sty)
+Requires:   tex(cmap.sty)
+Requires:   tex(color.sty)
+Requires:   tex(colortbl.sty)
+Requires:   tex(dvipdfmx.def)
+Requires:   tex(fancybox.sty)
+Requires:   tex(fancyhdr.sty)
+Requires:   tex(fancyvrb.sty)
+Requires:   tex(float.sty)
+Requires:   tex(fncychap.sty)
+Requires:   tex(fontenc.sty)
+Requires:   tex(footnote.sty)
+Requires:   tex(framed.sty)
+Requires:   tex(graphics.sty)
+Requires:   tex(graphicx.sty)
+Requires:   tex(hypcap.sty)
+Requires:   tex(hyperref.sty)
+Requires:   tex(ifthen.sty)
+Requires:   tex(inputenc.sty)
+Requires:   tex(longtable.sty)
+Requires:   tex(makeidx.sty)
+Requires:   tex(multirow.sty)
+Requires:   tex(palatino.sty)
+Requires:   tex(parskip.sty)
+Requires:   tex(preview.sty)
+Requires:   tex(tabulary.sty)
+Requires:   tex(textcomp.sty)
+Requires:   tex(threeparttable.sty)
+Requires:   tex(times.sty)
+Requires:   tex(titlesec.sty)
+Requires:   tex(upquote.sty)
+Requires:   tex(wrapfig.sty)
+Requires:   tex(pcrr.tfm)
+Requires:   tex(phvr.tfm)
+Requires:   tex(pplr.tfm)
+Requires:   tex(ptmr.tfm)
+Requires:   tex(pzcmi.tfm)
+
+%descriptionlatex
+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
+for the new Python documentation, and has excellent facilities for Python
+project documentation, but C/C++ is supported as well, and more languages are
+planned.
+
+Sphinx uses reStructuredText as its markup language, and many of its strengths
+come from the power and straightforwardness of reStructuredText and its parsing
+and translating suite, the Docutils.
+
+This package contains the LaTeX components for %{name}.
+
 %prep
 %setup -q -n Sphinx-%{version}
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
@@ -160,6 +234,9 @@
 %{_mandir}/man1/sphinx-quickstart.1.gz
 %{_mandir}/man1/sphinx-quickstart-%{py_ver}.1.gz
 %{python_sitelib}/sphinx/
+%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} > 
1110 )
+%exclude %{python_sitelib}/sphinx/texinputs/
+%endif
 %{python_sitelib}/Sphinx-%{version}-py%{py_ver}.egg-info
 %ghost %{_sysconfdir}/alternatives/sphinx-apidoc
 %ghost %{_sysconfdir}/alternatives/sphinx-autogen
@@ -174,4 +251,12 @@
 %defattr(-,root,root,-)
 %doc EXAMPLES build/sphinx/html
 
+# Requi

commit python-Sphinx for openSUSE:Factory

2015-08-06 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2015-08-07 00:21:27

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2015-07-18 14:39:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2015-08-07 00:21:28.0 +0200
@@ -1,0 +2,11 @@
+Wed Jul 29 13:18:28 UTC 2015 - h...@urpla.net
+
+- Be explicit about six version requirements 
+
+---
+Mon Jul 27 09:03:41 UTC 2015 - seife+...@b1-systems.com
+
+- fix build on CentOS/RHEL by conditionalizing Recommends: tag
+- add #!BuildIgnore: texinfo to work around CentOS-7 project config
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.4xoVzN/_old  2015-08-07 00:21:29.0 +0200
+++ /var/tmp/diff_new_pack.4xoVzN/_new  2015-08-07 00:21:29.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Sphinx
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -33,7 +33,7 @@
 BuildRequires:  python-alabaster
 BuildRequires:  python-docutils >= 0.7
 BuildRequires:  python-mock
-BuildRequires:  python-six
+BuildRequires:  python-six >= 1.4
 BuildRequires:  python-snowballstemmer
 BuildRequires:  python-sphinx_rtd_theme
 # Testsuite requirements:
@@ -46,10 +46,15 @@
 Requires:   python-Pygments >= 2.0
 Requires:   python-alabaster
 Requires:   python-docutils >= 0.11
-Requires:   python-six
+Requires:   python-six >= 1.4
 Requires:   python-snowballstemmer
 Requires:   python-sphinx_rtd_theme
+%if 0%{?suse_version}
 Recommends: python-rst2pdf
+%endif
+# workaround for suboptimal CentOS-7 project config
+#!BuildIgnore: texinfo
+
 Provides:   python-sphinx = %{version}
 Obsoletes:  python-sphinx < %{version}
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110




commit python-Sphinx for openSUSE:Factory

2015-07-18 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2015-07-18 14:38:58

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2014-09-10 17:02:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2015-07-18 14:39:00.0 +0200
@@ -1,0 +2,183 @@
+Mon Jun 29 14:07:26 UTC 2015 - toddrme2...@gmail.com
+
+- Fix directory for man update-alternatives
+- Suggests are poorly-supported in openSUSE so use Recommends
+
+---
+Mon Apr 13 17:17:57 UTC 2015 - alarr...@suse.com
+
+- Added python-six as a requirement, not only as build requirement
+
+---
+Thu Apr  9 02:29:40 UTC 2015 - ter...@gmail.com
+
+- Update to 1.3.1
+  + Bugs fixed
+* see http://sphinx-doc.org/changes.html#release-1-3-1-released-mar-17-2015
+  for complete list of fixed bugs
+
+- additional dependencies required by 1.3.1
+  + python-Babel
+  + python-alabaster
+  + python-snowballstemmer
+  + python-sphinx_rtdtheme
+  + python-mock
+  + python-six
+
+- Update to 1.3
+  + Incompatible changes
+* Roles ref, term and menusel now don’t generate emphasis nodes
+  anymore. If you want to keep italic style, adapt your stylesheet. 
+* Role numref uses %s as special character to indicate position of
+  figure numbers instead # symbol. 
+* Dependency requirement updates: docutils 0.11, Pygments 2.0
+* The gettext_enables config value has been renamed to
+  gettext_additional_targets.
+* #1735: Use https://doc.python.org/ instead of http protocol. It was
+  used for sphinx.ext.intersphinx and some documentation.
+* update bundled ez_setup.py for setuptools-7.0 that requires Python
+  2.6 or later.
+* Dropped support for Python 2.5, 3.1 and 3.2.
+* Dropped support for docutils versions up to 0.9.
+* Removed the sphinx.ext.oldcmarkup extension.
+* The deprecated config values exclude_trees, exclude_dirnames and
+  unused_docs have been removed. 
+* A new node, sphinx.addnodes.literal_strong, has been added, for text
+  that should appear literally (i.e. no smart quotes) in strong
+  font. Custom writers will have to be adapted to handle this node. 
+* PR#269, #1476: replace  tag by . User customized
+  stylesheets should be updated If the css contain some styles for tt>
+  tag. Thanks to Takeshi Komiya.
+* #1543: templates_path is automatically added to exclude_patterns to
+  avoid reading autosummary rst templates in the templates directory.
+* Custom domains should implement the new Domain.resolve_any_xref
+  method to make the any role work properly.
+* gettext builder: gettext doesn’t emit uuid information to generated
+  pot files by default. Please set True to gettext_uuid to emit uuid
+  information. Additionally, if the python-levenshtein 3rd-party package is
+  installed, it will improve the calculation time.
+* gettext builder: disable extracting/apply ‘index’ node by
+  default. Please set ‘index’ to gettext_enables to enable extracting index
+  entries.
+* PR#307: Add frame to code-block in LaTeX. Thanks to Takeshi Komiya.
+  + Features added
+* Add convenience directives and roles to the C++ domain: directive
+  cpp:var as alias for cpp:member, role :cpp:var as alias for :cpp:member,
+  and role any for cross-reference to any C++ declaraction. #1577, #1744
+* The source_suffix config value can now be a list of multiple suffixes.
+* Add the ability to specify source parsers by source suffix with the
+  source_parsers config value.
+* #1675: A new builder, AppleHelpBuilder, has been added that builds
+  Apple Help Books.
+* #1346: Add new default theme;
+Add ‘alabaster’ theme.
+Add ‘sphinx_rtd_theme’ theme.
+The ‘default’ html theme has been renamed to ‘classic’. ‘default’
+is still available, however it will emit notice a recommendation that
+using new ‘alabaster’ theme.
+* Added highlight_options configuration value.
+* The language config value is now available in the HTML templates.
+* The env-updated event can now return a value, which is interpreted as
+  an iterable of additional docnames that need to be rewritten.
+* #772: Support for scoped and unscoped enums in C++. Enumerators in
+  unscoped enums are injected into the parent scope in addition to the enum
+  scope.
+* Add todo_include_todos config option to quickstart conf file, handled
+ 

commit python-Sphinx for openSUSE:Factory

2014-09-10 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2014-09-10 17:02:06

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2014-03-11 20:33:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2014-09-10 17:02:34.0 +0200
@@ -1,0 +2,44 @@
+Tue Sep  9 16:14:01 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 1.2.3:
+  + Features added
+* #1518: `sphinx-apidoc` command now have a `--version` option to show 
version
+  information and exit
+* New locales: Hebrew, European Portuguese, Vietnamese.
+  + Bugs fixed
+* #636: Keep straight single quotes in literal blocks in the LaTeX build.
+* #1419: Generated i18n sphinx.js files are missing message catalog entries
+  from '.js_t' and '.html'. The issue was introduced from Sphinx-1.1
+* #1363: Fix i18n: missing python domain's cross-references with 
currentmodule
+  directive or currentclass directive.
+* #1444: autosummary does not create the description from attributes 
docstring.
+* #1457: In python3 environment, make linkcheck cause "Can't convert 
'bytes'
+  object to str implicitly" error when link target url has a hash part.
+  Thanks to Jorge_C.
+* #1467: Exception on Python3 if nonexistent method is specified by 
automethod
+* #1441: autosummary can't handle nested classes correctly.
+* #1499: With non-callable `setup` in a conf.py, now sphinx-build emits
+  user-friendly error message.
+* #1502: In autodoc, fix display of parameter defaults containing 
backslashes.
+* #1226: autodoc, autosummary: importing setup.py by automodule will invoke
+  setup process and execute `sys.exit()`. Now sphinx avoids SystemExit
+  exception and emits warnings without unexpected termination.
+* #1503: py:function directive generate incorrectly signature when 
specifying
+  a default parameter with an empty list `[]`. Thanks to Geert Jansen.
+* #1508: Non-ASCII filename raise exception on make singlehtml, latex, man,
+  texinfo and changes.
+* #1531: On Python3 environment, docutils.conf with 'source_link=true' in 
the
+  general section cause type error.
+* PR#270, #1533: Non-ASCII docstring cause UnicodeDecodeError when uses 
with
+  inheritance-diagram directive. Thanks to WAKAYAMA shirou.
+* PR#281, PR#282, #1509: TODO extension not compatible with websupport. 
Thanks
+  to Takeshi Komiya.
+* #1477: gettext does not extract nodes.line in a table or list.
+* #1544: `make text` generate wrong table when it has empty table cells.
+* #1522: Footnotes from table get displayed twice in LaTeX. This problem 
has
+  been appeared from Sphinx-1.2.1 by #949.
+* #508: Sphinx every time exit with zero when is invoked from setup.py 
command.
+  ex. `python setup.py build_sphinx -b doctest` return zero even if doctest
+  failed.
+  
+---

Old:

  Sphinx-1.2.2.tar.gz

New:

  Sphinx-1.2.3.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.iK8aeQ/_old  2014-09-10 17:02:35.0 +0200
+++ /var/tmp/diff_new_pack.iK8aeQ/_new  2014-09-10 17:02:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-Sphinx
-Version:1.2.2
+Version:1.2.3
 Release:0
 Url:http://sphinx.pocoo.org
 Summary:Python documentation generator
@@ -82,6 +82,8 @@
 # Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
 # allow for update-alternatives later on:
 sed -i 's/\(sphinx-.*\) =/\1-%{py_ver} =/' setup.py
+# Fix wrong end-of-line encoding
+sed -i 's/\r$//' sphinx/themes/basic/static/jquery.js
 
 %build
 python setup.py build

++ Sphinx-1.2.2.tar.gz -> Sphinx-1.2.3.tar.gz ++
 63230 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2014-03-11 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2014-03-11 20:33:13

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2013-11-18 10:55:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2014-03-11 20:33:14.0 +0100
@@ -1,0 +2,34 @@
+Thu Mar  6 12:50:16 UTC 2014 - mci...@suse.cz
+
+- Update to 1.2.2:
+  - PR#211: When checking for existence of the html_logo file, check the full
+relative path and not the basename.
+  - PR#212: Fix traceback with autodoc and __init__ methods without docstring.
+  - PR#213: Fix a missing import in the setup command.
+  - #1357: Option names documented by option are now again allowed to not start
+with a dash or slash, and referencing them will work correctly.
+  - #1358: Fix handling of image paths outside of the source directory when
+using the “wildcard” style reference.
+  - #1374: Fix for autosummary generating overly-long summaries if first line
+doesn’t end with a period.
+  - #1383: Fix Python 2.5 compatibility of sphinx-apidoc.
+  - #1391: Actually prevent using “pngmath” and “mathjax” extensions at the
+same time in sphinx-quickstart.
+  - #1386: Fix bug preventing more than one theme being added by the entry
+point mechanism.
+  - #1370: Ignore “toctree” nodes in text writer, instead of raising.
+  - #1364: Fix ‘make gettext’ fails when the ‘.. todolist::’ directive is
+present.
+  - #1367: Fix a change of PR#96 that break
+sphinx.util.docfields.Field.make_field interface/behavior for item argument
+usage.
+
+---
+Mon Feb 10 15:08:45 UTC 2014 - speili...@suse.com
+
+- Update to version 1.2.1
+  + See CHANGES
+- Fix update-alternatives usage
+- Removed sphinx-setup_command_unicode.patch (upstream)
+
+---

Old:

  Sphinx-1.2b3.tar.gz
  sphinx-setup_command_unicode.patch

New:

  Sphinx-1.2.2.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.hawlZL/_old  2014-03-11 20:33:15.0 +0100
+++ /var/tmp/diff_new_pack.hawlZL/_new  2014-03-11 20:33:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Sphinx
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,13 @@
 
 
 Name:   python-Sphinx
-Version:1.2b3
+Version:1.2.2
 Release:0
 Url:http://sphinx.pocoo.org
 Summary:Python documentation generator
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM speili...@suse.com -- Backport of 
https://bitbucket.org/birkenfeld/sphinx/pull-request/193/
-Patch0: sphinx-setup_command_unicode.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
@@ -80,7 +78,6 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
-%patch0 -p1
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
 # Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
 # allow for update-alternatives later on:
@@ -93,32 +90,22 @@
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
 for B in apidoc autogen build quickstart ; do
-  ln -s %{_bindir}/sphinx-$B-%{py_ver} %{buildroot}%{_bindir}/sphinx-$B
+  touch %{buildroot}%{_sysconfdir}/alternatives/sphinx-$B
+  ln -sf %{_sysconfdir}/alternatives/sphinx-$B 
%{buildroot}/%{_bindir}/sphinx-$B
 done
 install -d %{buildroot}%{_mandir}/man1/
 for M in all apidoc build quickstart ; do
   install -m 644 build/sphinx/man/sphinx-$M.1 
%{buildroot}%{_mandir}/man1/sphinx-$M-%{py_ver}.1
-  ln -s %{_mandir}/man1/sphinx-$M-%{py_ver}.1 
%{buildroot}%{_mandir}/man1/sphinx-$M.1
+  touch %{buildroot}%{_sysconfdir}/alternatives/sphinx-$M.1.gz
+  ln -sf %{_sysconfdir}/alternatives/sphinx-$M.1.gz 
%{buildroot}%{_mandir}/man1/sphinx-$M.1.gz
 done
 %find_lang sphinx
 
 %check
 PYTHONPATH=$PWD make test
 
-%pre
-# Since /usr/bin/sphinx-* became ghosted to be used with update-alternatives, 
we have
-# to get rid of the ol

commit python-Sphinx for openSUSE:Factory

2013-11-18 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-11-18 10:55:58

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2013-11-14 08:43:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2013-11-18 10:55:59.0 +0100
@@ -1,0 +2,10 @@
+Mon Nov 18 09:05:53 UTC 2013 - speili...@suse.com
+
+- Fix %preun update-alternatives, used wrong master
+
+---
+Fri Nov 15 12:17:12 UTC 2013 - speili...@suse.com
+
+- Only ghost /etc/alternatives on 12.3 or newer
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.jxPtUH/_old  2013-11-18 10:56:00.0 +0100
+++ /var/tmp/diff_new_pack.jxPtUH/_new  2013-11-18 10:56:00.0 +0100
@@ -132,38 +132,40 @@
 
 %preun
 if [ $1 -eq 0 ] ; then
-update-alternatives --remove sphinx-build 
%{_bindir}/sphinx-apidoc-%{py_ver}
+update-alternatives --remove sphinx-apidoc 
%{_bindir}/sphinx-apidoc-%{py_ver}
 fi
 
 %files -f sphinx.lang
 %defattr(-,root,root,-)
 %doc AUTHORS CHANGES LICENSE README.rst
 %ghost %{_bindir}/sphinx-apidoc
-%ghost %{_sysconfdir}/alternatives/sphinx-apidoc
 %{_bindir}/sphinx-apidoc-%{py_ver}
 %ghost %{_bindir}/sphinx-autogen
-%ghost %{_sysconfdir}/alternatives/sphinx-autogen
 %{_bindir}/sphinx-autogen-%{py_ver}
 %ghost %{_bindir}/sphinx-build
-%ghost %{_sysconfdir}/alternatives/sphinx-build
 %{_bindir}/sphinx-build-%{py_ver}
 %ghost %{_bindir}/sphinx-quickstart
-%ghost %{_sysconfdir}/alternatives/sphinx-quickstart
 %{_bindir}/sphinx-quickstart-%{py_ver}
 %ghost %{_mandir}/man1/sphinx-all.1.gz
-%ghost %{_sysconfdir}/alternatives/sphinx-all.1.gz
 %{_mandir}/man1/sphinx-all-%{py_ver}.1.gz
 %ghost %{_mandir}/man1/sphinx-apidoc.1.gz
-%ghost %{_sysconfdir}/alternatives/sphinx-apidoc.1.gz
 %{_mandir}/man1/sphinx-apidoc-%{py_ver}.1.gz
 %ghost %{_mandir}/man1/sphinx-build.1.gz
-%ghost %{_sysconfdir}/alternatives/sphinx-build.1.gz
 %{_mandir}/man1/sphinx-build-%{py_ver}.1.gz
 %ghost %{_mandir}/man1/sphinx-quickstart.1.gz
-%ghost %{_sysconfdir}/alternatives/sphinx-quickstart.1.gz
 %{_mandir}/man1/sphinx-quickstart-%{py_ver}.1.gz
 %{python_sitelib}/sphinx/
 %{python_sitelib}/Sphinx-%{version}-py%{py_ver}.egg-info
+%if 0%{?suse_version} >= 1230
+%ghost %{_sysconfdir}/alternatives/sphinx-apidoc
+%ghost %{_sysconfdir}/alternatives/sphinx-autogen
+%ghost %{_sysconfdir}/alternatives/sphinx-build
+%ghost %{_sysconfdir}/alternatives/sphinx-quickstart
+%ghost %{_sysconfdir}/alternatives/sphinx-all.1.gz
+%ghost %{_sysconfdir}/alternatives/sphinx-apidoc.1.gz
+%ghost %{_sysconfdir}/alternatives/sphinx-build.1.gz
+%ghost %{_sysconfdir}/alternatives/sphinx-quickstart.1.gz
+%endif
 
 %files doc
 %defattr(-,root,root,-)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2013-11-13 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-11-14 08:43:32

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2013-11-07 08:43:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2013-11-14 08:43:33.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov 13 14:54:09 UTC 2013 - speili...@suse.com
+
+- Add sphinx-setup_command_unicode.patch: Backport of 
+  https://bitbucket.org/birkenfeld/sphinx/pull-request/193/
+
+---

New:

  sphinx-setup_command_unicode.patch



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.CaDqOa/_old  2013-11-14 08:43:34.0 +0100
+++ /var/tmp/diff_new_pack.CaDqOa/_new  2013-11-14 08:43:34.0 +0100
@@ -24,6 +24,8 @@
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM speili...@suse.com -- Backport of 
https://bitbucket.org/birkenfeld/sphinx/pull-request/193/
+Patch0: sphinx-setup_command_unicode.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
@@ -78,6 +80,7 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
+%patch0 -p1
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
 # Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
 # allow for update-alternatives later on:

++ sphinx-setup_command_unicode.patch ++
diff -r 86e59496553b sphinx/setup_command.py
--- a/sphinx/setup_command.py   Tue Nov 12 15:17:09 2013 +
+++ b/sphinx/setup_command.py   Wed Nov 13 15:41:12 2013 +0100
@@ -14,6 +14,7 @@
 
 import sys
 import os
+import types
 from StringIO import StringIO
 from distutils.cmd import Command
 
@@ -98,6 +99,19 @@
 return root
 return None
 
+# Overriding distutils' Command._ensure_stringlike which doesn't support
+# unicode, causing finalize_options to fail if invoked again. Workaround
+# for http://bugs.python.org/issue19570
+def _ensure_stringlike(self, option, what, default=None):
+val = getattr(self, option)
+if val is None:
+setattr(self, option, default)
+return default
+elif not isinstance(val, types.StringTypes):
+raise DistutilsOptionError("'%s' must be a %s (got `%s`)"
+   % (option, what, val))
+return val
+
 def finalize_options(self):
 if self.source_dir is None:
 self.source_dir = self._guess_source_dir()
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2013-11-06 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-11-07 08:43:50

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2013-10-25 11:32:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2013-11-07 08:43:51.0 +0100
@@ -1,0 +2,21 @@
+Wed Nov  6 08:10:01 UTC 2013 - speili...@suse.com
+
+- Updateo version 1.2b3:
+  + The Sphinx error log files will now include a list of the loaded extensions
+for help in debugging.
+  + PR#154: Remove "sphinx" prefix from LaTeX class name except 'sphinxmanual'
+and 'sphinxhowto'. Now you can use your custom document class without
+'sphinx' prefix. Thanks to Erik B.
+  + #1265: Fix i18n: crash when translating a section name that is pointed to 
from
+a named target.
+  + A wrong condition broke the search feature on first page that is usually
+index.rst.  This issue was introduced in 1.2b1.
+  + #703: When Sphinx can't decode filenames with non-ASCII characters, Sphinx 
now
+catches UnicodeError and will continue if possible instead of raising the
+exception.
+- Changes from version 1.2b2 and prior:
+  + See CHANGES file
+- Own /etc/alternatives/sphinx-* by ghosting (update-alternatives)
+- Dropped sphinx-docutils-0.10.patch (merged upstream)
+  
+---
@@ -53 +74 @@
-  * PR#40: Fix ``safe_repr`` function to decode bytestrings with non-ASCII
+  * PR#40: Fix safe_repr function to decode bytestrings with non-ASCII
@@ -55 +76 @@
-  * PR#37: Allow configuring sphinx-apidoc via ``SPHINX_APIDOC_OPTIONS``.
+  * PR#37: Allow configuring sphinx-apidoc via SPHINX_APIDOC_OPTIONS.
@@ -65,2 +86,2 @@
-  * #864: Fix crash with some settings of :confval:`modindex_common_prefix`.
-  * #862: Fix handling of ``-D`` and ``-A`` options on Python 3.
+  * #864: Fix crash with some settings of :confval:modindex_common_prefix.
+  * #862: Fix handling of -D and -A options on Python 3.
@@ -76 +97 @@
-  * #831: Provide ``--project`` flag in setup_command as advertised.
+  * #831: Provide --project flag in setup_command as advertised.
@@ -82 +103 @@
-  * #873: Fix assertion errors with empty ``only`` directives.
+  * #873: Fix assertion errors with empty only directives.
@@ -95 +116 @@
-  * #805: Make the ``Sphinx.add_index_to_domain`` method work correctly.
+  * #805: Make the Sphinx.add_index_to_domain method work correctly.
@@ -123 +144 @@
-  * #599: Import PIL as ``from PIL import Image``.
+  * #599: Import PIL as from PIL import Image.
@@ -144 +165 @@
-  * #571: Implement ``~`` cross-reference prefix for the C domain.
+  * #571: Implement ~ cross-reference prefix for the C domain.
@@ -148 +169 @@
-  * Fix traceback with ``only`` directives preceded by targets.
+  * Fix traceback with only directives preceded by targets.
@@ -150 +171 @@
-  * Fix JavaScript domain links to objects with ``$`` in their name.
+  * Fix JavaScript domain links to objects with $ in their name.

Old:

  Sphinx-1.1.3.tar.gz
  sphinx-docutils-0.10.patch

New:

  Sphinx-1.2b3.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.64FDbU/_old  2013-11-07 08:44:01.0 +0100
+++ /var/tmp/diff_new_pack.64FDbU/_new  2013-11-07 08:44:01.0 +0100
@@ -17,28 +17,27 @@
 
 
 Name:   python-Sphinx
-Version:1.1.3
+Version:1.2b3
 Release:0
 Url:http://sphinx.pocoo.org
 Summary:Python documentation generator
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
-Patch0: sphinx-docutils-0.10.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 # Documentation requirements:
-BuildRequires:  python-Jinja2
-BuildRequires:  python-docutils
+BuildRequires:  python-Jinja2 >= 2.3
+BuildRequires:  python-docutils >= 0.7
 # Testsuite requirements:
-BuildRequires:  python-Pygments
+BuildRequires:  python-Pygments >= 1.2
 BuildRequires:  python-nose
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
-Requires:   python-Jinja2
-Requires:   python-Pygments
-Requires:   python-docutils
+Requires:   python-Jinja2 >= 2.3
+Requires:   python-Pygments >= 1.2
+Requires:   python-docutils >= 0.7
 Suggests:   python-rst2pdf
 Provides:   python-sphinx = %{version}
 Obsoletes:  python-sphinx < %{v

commit python-Sphinx for openSUSE:Factory

2013-10-25 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-10-25 11:32:50

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2013-09-27 18:02:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2013-10-25 11:32:51.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 24 11:14:54 UTC 2013 - speili...@suse.com
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.rEeupM/_old  2013-10-25 11:32:52.0 +0200
+++ /var/tmp/diff_new_pack.rEeupM/_new  2013-10-25 11:32:52.0 +0200
@@ -27,7 +27,7 @@
 Patch0: sphinx-docutils-0.10.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
-BuildRequires:  python-distribute
+BuildRequires:  python-setuptools
 # Documentation requirements:
 BuildRequires:  python-Jinja2
 BuildRequires:  python-docutils

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2013-09-27 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-09-27 18:02:39

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2013-07-11 20:13:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2013-09-27 18:02:40.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 18 09:15:10 UTC 2013 - speili...@suse.com
+
+- Drop runtime req on python-distribute
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.taNlIa/_old  2013-09-27 18:02:40.0 +0200
+++ /var/tmp/diff_new_pack.taNlIa/_new  2013-09-27 18:02:40.0 +0200
@@ -38,7 +38,6 @@
 Requires(postun): update-alternatives
 Requires:   python-Jinja2
 Requires:   python-Pygments
-Requires:   python-distribute
 Requires:   python-docutils
 Suggests:   python-rst2pdf
 Provides:   python-sphinx = %{version}
@@ -154,7 +153,7 @@
 %{_mandir}/man1/sphinx-build-%{py_ver}.1.gz
 %ghost %{_mandir}/man1/sphinx-quickstart.1.gz
 %{_mandir}/man1/sphinx-quickstart-%{py_ver}.1.gz
-%{python_sitelib}/sphinx
+%{python_sitelib}/sphinx/
 %{python_sitelib}/Sphinx-%{version}-py%{py_ver}.egg-info
 
 %files doc

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2013-07-11 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-07-11 20:13:36

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2013-05-16 16:18:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2013-07-11 20:13:36.0 +0200
@@ -1,0 +2,6 @@
+Tue Jul  9 14:16:18 UTC 2013 - dmuel...@suse.com
+
+- add sphinx-docutils-0.10.patch:
+  * add support for docutils 0.10
+
+---

New:

  sphinx-docutils-0.10.patch



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.6f3Ov3/_old  2013-07-11 20:13:37.0 +0200
+++ /var/tmp/diff_new_pack.6f3Ov3/_new  2013-07-11 20:13:37.0 +0200
@@ -24,6 +24,7 @@
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
+Patch0: sphinx-docutils-0.10.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
@@ -79,6 +80,7 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
+%patch0 -p1
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
 # Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
 # allow for update-alternatives later on:

++ sphinx-docutils-0.10.patch ++
diff -up Sphinx-1.1.3/sphinx/writers/manpage.py.bak 
Sphinx-1.1.3/sphinx/writers/manpage.py
--- Sphinx-1.1.3/sphinx/writers/manpage.py.bak  2011-11-01 00:38:44.0 
-0700
+++ Sphinx-1.1.3/sphinx/writers/manpage.py  2012-08-21 12:38:33.380808202 
-0700
@@ -72,6 +72,11 @@ class ManualPageTranslator(BaseTranslato
 # since self.append_header() is never called, need to do this here
 self.body.append(MACRO_DEF)
 
+# Overwrite admonition label translations with our own
+for label, translation in admonitionlabels.items():
+self.language.labels[label] = self.deunicode(translation)
+
+
 # overwritten -- added quotes around all .TH arguments
 def header(self):
 tmpl = (".TH \"%(title_upper)s\" \"%(manual_section)s\""
@@ -193,12 +198,6 @@ class ManualPageTranslator(BaseTranslato
 def depart_seealso(self, node):
 self.depart_admonition(node)
 
-# overwritten -- use our own label translations
-def visit_admonition(self, node, name=None):
-if name:
-self.body.append('.IP %s\n' %
- self.deunicode(admonitionlabels.get(name, name)))
-
 def visit_productionlist(self, node):
 self.ensure_eol()
 names = []
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2013-06-19 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-06-19 16:23:38

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:


Old:

  python3-Sphinx-docs.patch
  python3-Sphinx.changes
  python3-Sphinx.spec



Other differences:
--
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2013-05-16 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-05-16 16:18:50

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2013-05-13 15:28:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2013-05-16 16:18:51.0 +0200
@@ -1,0 +2,5 @@
+Thu May 16 10:33:17 UTC 2013 - speili...@suse.com
+
+- Fix update-alternatives and support upgrade from previous versions
+
+---
--- /work/SRC/openSUSE:Factory/python-Sphinx/python3-Sphinx.changes 
2013-05-13 15:28:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python3-Sphinx.changes
2013-05-16 16:18:51.0 +0200
@@ -1,0 +2,5 @@
+Thu May 16 10:33:34 UTC 2013 - speili...@suse.com
+
+- Fix update-alternatives and support upgrade from previous versions
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.RIycS8/_old  2013-05-16 16:18:51.0 +0200
+++ /var/tmp/diff_new_pack.RIycS8/_new  2013-05-16 16:18:51.0 +0200
@@ -80,6 +80,9 @@
 %prep
 %setup -q -n Sphinx-%{version}
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
+# Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
+# allow for update-alternatives later on:
+sed -i 's/\(sphinx-.*\) =/\1-%{py_ver} =/' setup.py
 
 %build
 python setup.py build
@@ -89,22 +92,34 @@
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 for B in apidoc autogen build quickstart ; do
-  mv %{buildroot}%{_bindir}/sphinx-$B 
%{buildroot}%{_bindir}/sphinx-$B-%{py_ver}
-  touch %{buildroot}%{_bindir}/sphinx-$B
+  ln -s %{_bindir}/sphinx-$B-%{py_ver} %{buildroot}%{_bindir}/sphinx-$B
 done
 install -d %{buildroot}%{_mandir}/man1/
 for M in all apidoc build quickstart ; do
   install -m 644 build/sphinx/man/sphinx-$M.1 
%{buildroot}%{_mandir}/man1/sphinx-$M-%{py_ver}.1
-  touch %{buildroot}%{_mandir}/man1/sphinx-$M.1
+  ln -s %{_mandir}/man1/sphinx-$M-%{py_ver}.1 
%{buildroot}%{_mandir}/man1/sphinx-$M.1
 done
 %find_lang sphinx
 
 %check
 nosetests
 
+%pre
+# Since /usr/bin/sphinx-* became ghosted to be used with update-alternatives, 
we have
+# to get rid of the old binary resulting from the 
non-update-alternativies-ified package:
+[[ ! -L %{_bindir}/sphinx-apidoc ]] && rm -f %{_bindir}/sphinx-apidoc
+[[ ! -L %{_bindir}/sphinx-build ]] && rm -f %{_bindir}/sphinx-build
+[[ ! -L %{_bindir}/sphinx-autogen ]] && rm -f %{_bindir}/sphinx-autogen
+[[ ! -L %{_bindir}/sphinx-quickstart ]] && rm -f %{_bindir}/sphinx-quickstart
+[[ ! -L %{_mandir}/man1/sphinx-all.1.gz ]] && rm -f 
%{_mandir}/man1/sphinx-all.1.gz
+[[ ! -L %{_mandir}/man1/sphinx-apidoc.1.gz ]] && rm -f 
%{_mandir}/man1/sphinx-apidoc.1.gz
+[[ ! -L %{_mandir}/man1/sphinx-build.1.gz ]] && rm -f 
%{_mandir}/man1/sphinx-build.1.gz
+[[ ! -L %{_mandir}/man1/sphinx-quickstart.1.gz ]] && rm -f 
%{_mandir}/man1/sphinx-quickstart.1.gz
+exit 0
+
 %post
 update-alternatives \
---install %{_bindir}/sphinx-apidoc sphinx-apidoc 
%{_bindir}/sphinx-apidoc-%{py_ver} 10 \
+--install %{_bindir}/sphinx-apidoc sphinx-apidoc 
%{_bindir}/sphinx-apidoc-%{py_ver} 20 \
 --slave %{_bindir}/sphinx-build sphinx-build 
%{_bindir}/sphinx-build-%{py_ver} \
 --slave %{_bindir}/sphinx-autogen sphinx-autogen 
%{_bindir}/sphinx-autogen-%{py_ver} \
 --slave %{_bindir}/sphinx-quickstart sphinx-quickstart 
%{_bindir}/sphinx-quickstart-%{py_ver} \
@@ -113,7 +128,7 @@
 --slave %{_mandir}/man1/sphinx-build.1.gz sphinx-build.1 
%{_mandir}/sphinx-build-%{py_ver}.1.gz \
 --slave %{_mandir}/man1/sphinx-quickstart.1.gz sphinx-quickstart.1 
%{_mandir}/sphinx-quickstart-%{py_ver}.1.gz \
 
-%postun
+%preun
 if [ $1 -eq 0 ] ; then
   update-alternatives --remove sphinx-build %{_bindir}/sphinx-apidoc-%{py_ver}
 fi

++ python3-Sphinx.spec ++
--- /var/tmp/diff_new_pack.RIycS8/_old  2013-05-16 16:18:51.0 +0200
+++ /var/tmp/diff_new_pack.RIycS8/_new  2013-05-16 16:18:51.0 +0200
@@ -77,6 +77,8 @@
 %setup -q -n Sphinx-%{version}
 %patch0
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
+# Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
+# allow for update-alternatives later on:
 sed -i "s|\(sphinx-.*\) =|\1-%{py3_ver} =|" setup.py # Add Python version 
suffix to binaries 
 sed -i "s|'\(sphinx-[a-z]*\)'|'\1-%{py3_ver}'|" doc/conf.

commit python-Sphinx for openSUSE:Factory

2013-05-13 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2013-05-13 15:28:25

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2012-11-28 14:34:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2013-05-13 15:28:26.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 30 14:38:24 UTC 2013 - speili...@suse.com
+
+- Apply update-alternatives for binaries and man-pages
+
+---
--- /work/SRC/openSUSE:Factory/python-Sphinx/python3-Sphinx.changes 
2012-11-28 14:34:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python3-Sphinx.changes
2013-05-13 15:28:26.0 +0200
@@ -1,0 +2,11 @@
+Tue May  7 08:16:04 UTC 2013 - highwaystar...@gmail.com
+
+- fix building under openSUSE 12.1, 12.2: 
+ BuildRequires: python3-2to3 should be explicitly stated
+
+---
+Tue Apr 30 14:38:39 UTC 2013 - speili...@suse.com
+
+- Apply update-alternatives for binaries and man-pages
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.HO57lo/_old  2013-05-13 15:28:27.0 +0200
+++ /var/tmp/diff_new_pack.HO57lo/_new  2013-05-13 15:28:27.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Sphinx
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,14 +25,16 @@
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  fdupes
-BuildRequires:  python-Jinja2
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
+# Documentation requirements:
+BuildRequires:  python-Jinja2
 BuildRequires:  python-docutils
-# Testsuite build requirements:
+# Testsuite requirements:
 BuildRequires:  python-Pygments
 BuildRequires:  python-nose
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 Requires:   python-Jinja2
 Requires:   python-Pygments
 Requires:   python-distribute
@@ -86,19 +88,57 @@
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+for B in apidoc autogen build quickstart ; do
+  mv %{buildroot}%{_bindir}/sphinx-$B 
%{buildroot}%{_bindir}/sphinx-$B-%{py_ver}
+  touch %{buildroot}%{_bindir}/sphinx-$B
+done
 install -d %{buildroot}%{_mandir}/man1/
-install -m 644 build/sphinx/man/sphinx-*.1 %{buildroot}%{_mandir}/man1/
+for M in all apidoc build quickstart ; do
+  install -m 644 build/sphinx/man/sphinx-$M.1 
%{buildroot}%{_mandir}/man1/sphinx-$M-%{py_ver}.1
+  touch %{buildroot}%{_mandir}/man1/sphinx-$M.1
+done
 %find_lang sphinx
 
 %check
 nosetests
 
+%post
+update-alternatives \
+--install %{_bindir}/sphinx-apidoc sphinx-apidoc 
%{_bindir}/sphinx-apidoc-%{py_ver} 10 \
+--slave %{_bindir}/sphinx-build sphinx-build 
%{_bindir}/sphinx-build-%{py_ver} \
+--slave %{_bindir}/sphinx-autogen sphinx-autogen 
%{_bindir}/sphinx-autogen-%{py_ver} \
+--slave %{_bindir}/sphinx-quickstart sphinx-quickstart 
%{_bindir}/sphinx-quickstart-%{py_ver} \
+--slave %{_mandir}/man1/sphinx-all.1.gz sphinx-all.1 
%{_mandir}/sphinx-all-%{py_ver}.1.gz \
+--slave %{_mandir}/man1/sphinx-apidoc.1.gz sphinx-apidoc.1 
%{_mandir}/sphinx-apidoc-%{py_ver}.1.gz \
+--slave %{_mandir}/man1/sphinx-build.1.gz sphinx-build.1 
%{_mandir}/sphinx-build-%{py_ver}.1.gz \
+--slave %{_mandir}/man1/sphinx-quickstart.1.gz sphinx-quickstart.1 
%{_mandir}/sphinx-quickstart-%{py_ver}.1.gz \
+
+%postun
+if [ $1 -eq 0 ] ; then
+  update-alternatives --remove sphinx-build %{_bindir}/sphinx-apidoc-%{py_ver}
+fi
+
 %files -f sphinx.lang
 %defattr(-,root,root,-)
-%doc AUTHORS CHANGES LICENSE README TODO
-%{_bindir}/sphinx-*
-%{_mandir}/man1/sphinx-*
-%{python_sitelib}/*
+%doc AUTHORS CHANGES LICENSE README
+%ghost %attr(0755,root,root) %{_bindir}/sphinx-apidoc
+%{_bindir}/sphinx-apidoc-%{py_ver}
+%ghost %attr(0755,root,root)  %{_bindir}/sphinx-autogen
+%{_bindir}/sphinx-autogen-%{py_ver}
+%ghost %attr(0755,root,root)  %{_bindir}/sphinx-build
+%{_bindir}/sphinx-build-%{py_ver}
+%ghost %attr(0755,root,root)  %{_bindir}/sphinx-quickstart
+%{

commit python-Sphinx for openSUSE:Factory

2012-11-28 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2012-11-28 14:34:46

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx", Maintainer is "cth...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2012-11-18 21:38:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2012-11-28 14:34:47.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 20 11:42:44 UTC 2012 - sasc...@suse.de
+
+- Run testsuite
+- Build and install man-pages
+
+---
--- /work/SRC/openSUSE:Factory/python-Sphinx/python3-Sphinx.changes 
2012-11-13 09:43:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python3-Sphinx.changes
2012-11-28 14:34:47.0 +0100
@@ -1,0 +2,7 @@
+Tue Nov 20 17:24:58 UTC 2012 - sasc...@suse.de
+
+- Build and install man-pages
+- Name Python3 binaries consistently:
+  + Fix in setup.py to have correct egg-info data
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.YHVJAs/_old  2012-11-28 14:34:48.0 +0100
+++ /var/tmp/diff_new_pack.YHVJAs/_new  2012-11-28 14:34:48.0 +0100
@@ -30,6 +30,9 @@
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
 BuildRequires:  python-docutils
+# Testsuite build requirements:
+BuildRequires:  python-Pygments
+BuildRequires:  python-nose
 Requires:   python-Jinja2
 Requires:   python-Pygments
 Requires:   python-distribute
@@ -78,20 +81,27 @@
 
 %build
 python setup.py build
-cd doc && make html && rm _build/html/.buildinfo
+python setup.py build_sphinx && rm build/sphinx/html/.buildinfo
+python setup.py build_sphinx -b man
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+install -d %{buildroot}%{_mandir}/man1/
+install -m 644 build/sphinx/man/sphinx-*.1 %{buildroot}%{_mandir}/man1/
 %find_lang sphinx
 
+%check
+nosetests
+
 %files -f sphinx.lang
 %defattr(-,root,root,-)
 %doc AUTHORS CHANGES LICENSE README TODO
 %{_bindir}/sphinx-*
+%{_mandir}/man1/sphinx-*
 %{python_sitelib}/*
 
 %files doc
 %defattr(-,root,root,-)
-%doc EXAMPLES doc/_build/html
+%doc EXAMPLES build/sphinx/html
 
 %changelog

++ python3-Sphinx.spec ++
--- /var/tmp/diff_new_pack.YHVJAs/_old  2012-11-28 14:34:48.0 +0100
+++ /var/tmp/diff_new_pack.YHVJAs/_new  2012-11-28 14:34:48.0 +0100
@@ -31,6 +31,9 @@
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute
 BuildRequires:  python3-docutils
+# Testsuite build requirements:
+BuildRequires:  python3-Pygments
+BuildRequires:  python3-nose
 Requires:   python3-Jinja2
 Requires:   python3-Pygments
 Requires:   python3-distribute
@@ -72,30 +75,36 @@
 %setup -q -n Sphinx-%{version}
 %patch0
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
+sed -i "s|\(sphinx-.*\) =|\1-%{py3_ver} =|" setup.py # Add Python version 
suffix to binaries 
+sed -i "s|'\(sphinx-[a-z]*\)'|'\1-%{py3_ver}'|" doc/conf.py # Do the same for 
man-pages
 
 %build
 2to3 . -w --nobackups
 python3 setup.py build
-sed -i 's/python/python3/g' doc/Makefile
-cd doc && make html && rm _build/html/.buildinfo
+python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo # Build HTML 
documentation
+python3 setup.py build_sphinx -b man # Build man-pages
 
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
-for i in %{buildroot}%{_bindir}/*; do
-  mv "$i" "${i}-python%{py3_ver}"
-done
+install -d %{buildroot}%{_mandir}/man1/
+install -m 644 build/sphinx/man/*.1 %{buildroot}%{_mandir}/man1/
 %fdupes %{buildroot}%{_prefix}
 %find_lang sphinx
 
+#TODO: Fix
+#%%check
+#nosetests-%{py3_ver}
+
 %files -f sphinx.lang
 %defattr(-,root,root,-)
 %doc AUTHORS CHANGES LICENSE README TODO
-%{_bindir}/sphinx-*-python%{py3_ver}
+%{_bindir}/sphinx-*-%{py3_ver}
+%{_mandir}/man1/sphinx-*-%{py3_ver}.1.gz
 %{python3_sitelib}/sphinx/
 %{python3_sitelib}/Sphinx-%{version}-py%{py3_ver}.egg-info
 
 %files doc
 %defattr(-,root,root,-)
-%doc EXAMPLES doc/_build/html
+%doc EXAMPLES build/sphinx/html
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2012-11-18 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2012-11-18 21:38:25

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx", Maintainer is "cth...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2012-11-13 09:43:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2012-11-18 21:38:25.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 15 05:29:16 UTC 2012 - sasc...@suse.de
+
+- Revert last "locale" change, it was a false positive 
+
+---



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.9JbFd6/_old  2012-11-18 21:38:27.0 +0100
+++ /var/tmp/diff_new_pack.9JbFd6/_new  2012-11-18 21:38:27.0 +0100
@@ -89,7 +89,6 @@
 %doc AUTHORS CHANGES LICENSE README TODO
 %{_bindir}/sphinx-*
 %{python_sitelib}/*
-%exclude %{python_sitelib}/sphinx/locale/
 
 %files doc
 %defattr(-,root,root,-)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2012-11-13 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2012-11-13 09:43:15

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx", Maintainer is "cth...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2012-05-29 11:44:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2012-11-13 09:43:18.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov  6 00:24:32 UTC 2012 - sasc...@suse.de
+
+- Remove obsolete SUSE version checks
+- Don't package locale files twice
+
+---
python3-Sphinx.changes: same change



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.xUQRtU/_old  2012-11-13 09:43:19.0 +0100
+++ /var/tmp/diff_new_pack.xUQRtU/_new  2012-11-13 09:43:19.0 +0100
@@ -25,6 +25,7 @@
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  fdupes
 BuildRequires:  python-Jinja2
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
@@ -33,19 +34,14 @@
 Requires:   python-Pygments
 Requires:   python-distribute
 Requires:   python-docutils
-%if 0%{?suse_version}
 Suggests:   python-rst2pdf
-%py_requires
-%if 0%{?suse_version} > 1010
-BuildRequires:  fdupes
-%endif
-%if 0%{?suse_version} > 1110
-BuildArch:  noarch
-%endif
-%endif
 Provides:   python-sphinx = %{version}
 Obsoletes:  python-sphinx < %{version}
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
+BuildArch:  noarch
+%endif
 
 %description
 Sphinx is a tool that makes it easy to create intelligent and beautiful
@@ -78,20 +74,14 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
-sed -i '1d' sphinx/pycode/pgen2/token.py # Remove she-bang line
+sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
 
 %build
 python setup.py build
-cd doc && make html
-rm _build/html/.buildinfo
-mv _build/html ..
-rm -rf _*
+cd doc && make html && rm _build/html/.buildinfo
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
-%if 0%{?suse_version} > 1010
-%fdupes %{buildroot}%{_prefix}
-%endif
 %find_lang sphinx
 
 %files -f sphinx.lang
@@ -99,9 +89,10 @@
 %doc AUTHORS CHANGES LICENSE README TODO
 %{_bindir}/sphinx-*
 %{python_sitelib}/*
+%exclude %{python_sitelib}/sphinx/locale/
 
 %files doc
 %defattr(-,root,root,-)
-%doc EXAMPLES html
+%doc EXAMPLES doc/_build/html
 
 %changelog

++ python3-Sphinx.spec ++
--- /var/tmp/diff_new_pack.xUQRtU/_old  2012-11-13 09:43:19.0 +0100
+++ /var/tmp/diff_new_pack.xUQRtU/_new  2012-11-13 09:43:19.0 +0100
@@ -25,35 +25,19 @@
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
 Patch0:python3-Sphinx-docs.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  fdupes
+BuildRequires:  python3-2to3
 BuildRequires:  python3-Jinja2
 BuildRequires:  python3-devel
-BuildRequires: python3-2to3
 BuildRequires:  python3-distribute
 BuildRequires:  python3-docutils
 Requires:   python3-Jinja2
 Requires:   python3-Pygments
 Requires:   python3-distribute
 Requires:   python3-docutils
-%if 0%{?suse_version}
 Suggests:   python3-rst2pdf
-%if 0%{?suse_version} > 1010
-BuildRequires:  fdupes
-%endif
-%endif
-
-%if 0%{?suse_version} && 0%{?suse_version} <= 1140
-%{!?python3_sitelib: %global python3_sitelib %(python3 -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
-%{!?py3_ver: %global py3_ver %(python3 -c "import sys; 
version=str(sys.version_info[0]) + '.' + str(sys.version_info[1]); 
print(version)" 2>/dev/null || echo PYTHON-NOT-FOUND)}
-%endif
-Requires:   python(abi) = %{py3_ver}
-%if 0%{?suse_version} && 0%{?suse_version} > 1140
-BuildRequires:  python3-base
-%endif
-
-%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
-BuildArchitectures: noarch
-%endif
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 Sphinx is a tool that makes it easy to create intelligent and beautiful
@@ -87,25 +71,20 @@
 %prep
 %setup -q -n Sphinx-%{versio

commit python-Sphinx for openSUSE:Factory

2011-11-25 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2011-11-25 11:13:24

Comparing /work/SRC/openSUSE:Factory/python-Sphinx (Old)
 and  /work/SRC/openSUSE:Factory/.python-Sphinx.new (New)


Package is "python-Sphinx", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2011-09-26 10:13:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2011-11-25 10:13:52.0 +0100
@@ -1,0 +2,13 @@
+Thu Nov 10 11:05:21 UTC 2011 - sasc...@suse.de
+
+- Update to version 1.1.2:
+  * #809: Include custom fixers in the source distribution.
+- Changes from version 1.1.1:
+  * #791: Fix QtHelp, DevHelp and HtmlHelp index entry links.
+  * #792: Include "sphinx-apidoc" in the source distribution.
+  * #797: Don't crash on a misformatted glossary.
+  * #801: Make intersphinx work properly without SSL support.
+  * #805: Make the ``Sphinx.add_index_to_domain`` method work correctly.
+  * #780: Fix Python 2.5 compatibility.
+
+---

Old:

  Sphinx-1.0.7.tar.gz

New:

  Sphinx-1.1.2.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.A84cob/_old  2011-11-25 10:13:53.0 +0100
+++ /var/tmp/diff_new_pack.A84cob/_new  2011-11-25 10:13:53.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   python-Sphinx
-Version:1.0.7
+Version:1.1.2
 Release:0
 Url:http://sphinx.pocoo.org
 Summary:Python documentation generator

++ Sphinx-1.0.7.tar.gz -> Sphinx-1.1.2.tar.gz ++
 53130 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2011-09-26 Thread h_root

Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory
checked in at Mon Sep 26 10:13:31 CEST 2011.




--- python-Sphinx/python-Sphinx.changes 2011-08-31 16:02:19.0 +0200
+++ /mounts/work_src_done/STABLE/python-Sphinx/python-Sphinx.changes
2011-09-22 12:59:45.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 22 10:58:02 UTC 2011 - sasc...@suse.de
+
+- Require python-docutils instead of docutils
+- Change license to BSD-2-Clause (SPDX style, according to LICENSE)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.IIZWgI/_old  2011-09-26 10:13:23.0 +0200
+++ /var/tmp/diff_new_pack.IIZWgI/_new  2011-09-26 10:13:23.0 +0200
@@ -19,18 +19,18 @@
 
 Name:   python-Sphinx
 Version:1.0.7
-Release:5
+Release:0
 Url:http://sphinx.pocoo.org
 Summary:Python documentation generator
-License:BSD
+License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  docutils
+BuildRequires:  python-docutils
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
 BuildRequires:  python-Jinja2
-Requires:   docutils
+Requires:   python-docutils
 Requires:   python-Jinja2
 Requires:   python-Pygments
 Requires:   python-distribute
@@ -61,8 +61,6 @@
 and translating suite, the Docutils.
 
 %packagedoc
-
-
 Summary:Documentation for %{name}
 Group:  Documentation/Other
 Requires:   %{name} = %{version}
@@ -97,9 +95,6 @@
 %endif
 %find_lang sphinx
 
-%clean
-rm -rf %{buildroot}
-
 %files -f sphinx.lang
 %defattr(-,root,root,-)
 %doc AUTHORS CHANGES LICENSE README TODO






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2011-09-01 Thread h_root

Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory
checked in at Thu Sep 1 17:27:25 CEST 2011.




--- python-Sphinx/python-Sphinx.changes 2011-07-12 11:59:17.0 +0200
+++ python-Sphinx/python-Sphinx.changes 2011-08-31 16:02:19.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug 31 13:59:59 UTC 2011 - sasc...@suse.de
+
+- Corrected buildrequires/requires:
+  * python-jinja2 is now python-Jinja2
+  * python-pygments is now python-Pygments
+
+---

calling whatdependson for head-i586




Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.Pkrpil/_old  2011-09-01 17:26:56.0 +0200
+++ /var/tmp/diff_new_pack.Pkrpil/_new  2011-09-01 17:26:56.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   python-Sphinx
 Version:1.0.7
-Release:3
+Release:5
 Url:http://sphinx.pocoo.org
 Summary:Python documentation generator
 License:BSD
@@ -29,10 +29,10 @@
 BuildRequires:  docutils
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
-BuildRequires:  python-jinja2
+BuildRequires:  python-Jinja2
 Requires:   docutils
-Requires:   python-jinja2
-Requires:   python-pygments
+Requires:   python-Jinja2
+Requires:   python-Pygments
 Requires:   python-distribute
 %if 0%{?suse_version}
 Suggests:   python-rst2pdf






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2011-07-12 Thread h_root

Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory
checked in at Tue Jul 12 13:44:53 CEST 2011.




--- python-Sphinx/python-Sphinx.changes 2011-07-03 13:34:39.0 +0200
+++ python-Sphinx/python-Sphinx.changes 2011-07-12 11:59:17.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul 12 09:59:25 UTC 2011 - mci...@suse.cz
+
+- add python-distribute to Requires, it is needed to run sphinx-build
+
+---

calling whatdependson for head-i586




Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.PSgr2t/_old  2011-07-12 13:44:20.0 +0200
+++ /var/tmp/diff_new_pack.PSgr2t/_new  2011-07-12 13:44:20.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   python-Sphinx
 Version:1.0.7
-Release:1
+Release:3
 Url:http://sphinx.pocoo.org
 Summary:Python documentation generator
 License:BSD
@@ -33,6 +33,7 @@
 Requires:   docutils
 Requires:   python-jinja2
 Requires:   python-pygments
+Requires:   python-distribute
 %if 0%{?suse_version}
 Suggests:   python-rst2pdf
 %py_requires
@@ -61,6 +62,7 @@
 
 %packagedoc
 
+
 Summary:Documentation for %{name}
 Group:  Documentation/Other
 Requires:   %{name} = %{version}






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-Sphinx for openSUSE:Factory

2011-07-04 Thread h_root

Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory
checked in at Mon Jul 4 12:44:33 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/python-Sphinx/python-Sphinx.changes
2011-07-03 13:34:39.0 +0200
@@ -0,0 +1,99 @@
+---
+Sun Jul  3 11:31:27 UTC 2011 - sasc...@gmx.de
+
+- Renamed to 'python-Sphinx', obsoletes 'python-sphinx'
+- Update to version 1.0.7:
+  * #347: Fix wrong generation of directives of static methods in
+autosummary.
+  * #599: Import PIL as ``from PIL import Image``.
+  * #558: Fix longtables with captions in LaTeX output.
+  * Make token references work as hyperlinks again in LaTeX output.
+  * #572: Show warnings by default when reference labels cannot be
+found.
+  * #536: Include line number when complaining about missing reference
+targets in nitpicky mode.
+  * #590: Fix inline display of graphviz diagrams in LaTeX output.
+  * #589: Build using app.build() in setup command.
+  * Fix a bug in the inheritance diagram exception that caused base
+classes to be skipped if one of them is a builtin.
+  * Fix general index links for C++ domain objects.
+  * #332: Make admonition boundaries in LaTeX output visible.
+  * #573: Fix KeyErrors occurring on rebuild after removing a file.
+  * Fix a traceback when removing files with globbed toctrees.
+  * If an autodoc object cannot be imported, always re-read the
+document containing the directive on next build.
+  * If an autodoc object cannot be imported, show the full traceback
+of the import error.
+  * Fix a bug where the removal of download files and images wasn't
+noticed.
+  * #571: Implement ``~`` cross-reference prefix for the C domain.
+  * Fix regression of LaTeX output with the fix of #556.
+  * #568: Fix lookup of class attribute documentation on descriptors
+so that comment documentation now works.
+  * Fix traceback with ``only`` directives preceded by targets.
+  * Fix tracebacks occurring for duplicate C++ domain objects.
+  * Fix JavaScript domain links to objects with ``$`` in their name.
+- Spec file cleanup:
+  * Use fdupes and %find_lang
+  * Removed authors from description
+  * Make doc package on require %{version}, not %{release}
+
+---
+Wed Jan 12 09:36:17 UTC 2011 - sasc...@suse.de
+
+- Spec file cleanup
+  * correct doc package group, no dupes
+  * added rpmlintrc file
+- Update to 1.0.6
+  * #581: Fix traceback in Python domain for empty cross-reference
+targets.
+  * #283: Fix literal block display issues on Chrome browsers.
+  * #383, #148: Support sorting a limited range of accented
+characters in the general index and the glossary.
+  * #570: Try decoding -D and -A command-line arguments with
+the locale's preferred encoding.
+  * #528: Observe locale_dirs when looking for the JS
+translations file.
+  * #574: Add special code for better support of Japanese documents
+in the LaTeX builder.
+  * Regression of #77: If there is only one parameter given with
+:param: markup, the bullet list is now suppressed again.
+  * #556: Fix missing paragraph breaks in LaTeX output in certain
+situations.
+  * #567: Emit the autodoc-process-docstring event even for objects
+without a docstring so that it can add content.
+  * #565: In the LaTeX builder, not only literal blocks require
+different table handling, but also quite a few other list-like
+block elements.
+  * #515: Fix tracebacks in the viewcode extension for Python objects
+that do not have a valid signature.
+  * Fix strange reportings of line numbers for warnings generated
+from autodoc-included docstrings, due to different behavior
+depending on docutils version.
+  * Several fixes to the C++ domain.
+
+---
+Mon Jan  3 12:04:29 UTC 2011 - n...@opensuse.org
+
+- Update to 1.0.5
+
+---
+Wed Sep  8 12:35:13 UTC 2010 - n...@opensuse.org
+
+- Update to 1.0.3
+
+---
+Mon Apr 26 14:34:11 UTC 2010 - n...@opensuse.org
+
+- Update to 0.6.5
+
+---
+Tue Aug 11 10:53:47 CEST 2009 - cfarr...@suse.de
+
+- Update to 0.6.2 and split docs into separate package 
+
+---
+Fri Jun  5 21:54:31 CEST 2009 - po...@suse.de
+
+- initial package (0.6.1)
+

calling whatdependson for head-i586


New:

  python-Sphinx.changes
  python-Sphinx.spec
  Sphinx-1.0.7.tar.gz



Other differences:
--
++ python-Sphinx.spec ++
#
# spec file for package p