Re: [PATCH 1/3] doc-rst:c-domain: fix sphinx version incompatibility

2016-09-07 Thread Markus Heiser
Am 06.09.2016 um 17:55 schrieb Mauro Carvalho Chehab : ... >> Sphinx has some more of these tuples with fixed length (remember >> conf.py, the latex_documents settings) where IMHO hash/value pairs >> (dicts) are more suitable. > > Well, the LaTeX stuff at conf.py seems to have a new field on vers

Re: [PATCH 1/3] doc-rst:c-domain: fix sphinx version incompatibility

2016-09-06 Thread Mauro Carvalho Chehab
Em Tue, 6 Sep 2016 17:10:53 +0200 Markus Heiser escreveu: > Am 06.09.2016 um 15:34 schrieb Jani Nikula : > > > On Tue, 06 Sep 2016, Jonathan Corbet wrote: > >> On Wed, 31 Aug 2016 17:29:30 +0200 > >> Markus Heiser wrote: > >> > >>> +if major >= 1 and minor < 4: > >>> +

Re: [PATCH 1/3] doc-rst:c-domain: fix sphinx version incompatibility

2016-09-06 Thread Markus Heiser
Am 06.09.2016 um 15:34 schrieb Jani Nikula : > On Tue, 06 Sep 2016, Jonathan Corbet wrote: >> On Wed, 31 Aug 2016 17:29:30 +0200 >> Markus Heiser wrote: >> >>> +if major >= 1 and minor < 4: >>> +# indexnode's tuple changed in 1.4 >>> +# >>> https://

Re: [PATCH 1/3] doc-rst:c-domain: fix sphinx version incompatibility

2016-09-06 Thread Jani Nikula
On Tue, 06 Sep 2016, Jonathan Corbet wrote: > On Wed, 31 Aug 2016 17:29:30 +0200 > Markus Heiser wrote: > >> +if major >= 1 and minor < 4: >> +# indexnode's tuple changed in 1.4 >> +# >> https://github.com/sphinx-doc/sphinx/commit/e6a5a3a92e938fcd75866

Re: [PATCH 1/3] doc-rst:c-domain: fix sphinx version incompatibility

2016-09-06 Thread Jonathan Corbet
On Tue, 6 Sep 2016 14:24:11 +0200 Markus Heiser wrote: > Should I send a new patch .. or could you fix it? Please just regenerate the series and I'll apply it. Thanks, jon -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majord...@vger.kernel.

Re: [PATCH 1/3] doc-rst:c-domain: fix sphinx version incompatibility

2016-09-06 Thread Markus Heiser
Am 06.09.2016 um 14:19 schrieb Jonathan Corbet : > On Wed, 31 Aug 2016 17:29:30 +0200 > Markus Heiser wrote: > >> +if major >= 1 and minor < 4: >> +# indexnode's tuple changed in 1.4 >> +# >> https://github.com/sphinx-doc/sphinx/commit/e6a5a3a92e938f

Re: [PATCH 1/3] doc-rst:c-domain: fix sphinx version incompatibility

2016-09-06 Thread Jonathan Corbet
On Wed, 31 Aug 2016 17:29:30 +0200 Markus Heiser wrote: > +if major >= 1 and minor < 4: > +# indexnode's tuple changed in 1.4 > +# > https://github.com/sphinx-doc/sphinx/commit/e6a5a3a92e938fcd75866b4227db9e0524d58f7c > +self.indexnode[

[PATCH 1/3] doc-rst:c-domain: fix sphinx version incompatibility

2016-08-31 Thread Markus Heiser
From: Markus Heiser The self.indexnode's tuple has changed in sphinx version 1.4, from a former 4 element tuple to a 5 element tuple. https://github.com/sphinx-doc/sphinx/commit/e6a5a3a92e938fcd75866b4227db9e0524d58f7c Signed-off-by: Markus Heiser --- Documentation/sphinx/cdomain.py | 14