All of lore.kernel.org
 help / color / mirror / Atom feed
* kernel-doc unbuildable with sphinx 1.7
@ 2018-03-02 14:10 Jiri Slaby
  2018-03-02 14:34 ` Jonathan Corbet
  0 siblings, 1 reply; 5+ messages in thread
From: Jiri Slaby @ 2018-03-02 14:10 UTC (permalink / raw)
  To: Jani Nikula; +Cc: corbet, linux-doc

Hi,

in openSUSE, sphinx was updated to 1.7.1 and kernel-doc cannot be built
since that time:
Running Sphinx v1.7.1

Extension error:
Could not import extension kerneldoc (exception: cannot import name
'Directive')

It is because sphinx.util.compat.* was removed from sphinx in 1.7 since
it was deprecated for a long time:
"sphinx.util.compat.%s is deprecated and will be removed "
               "in Sphinx 1.7, please use docutils' instead."


Could you fix that up? python is not my favourite interpreter so fixing
it myself is not feasible on my side.

thanks,
-- 
js
suse labs
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: kernel-doc unbuildable with sphinx 1.7
  2018-03-02 14:10 kernel-doc unbuildable with sphinx 1.7 Jiri Slaby
@ 2018-03-02 14:34 ` Jonathan Corbet
  2018-03-02 14:40   ` Jiri Slaby
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Corbet @ 2018-03-02 14:34 UTC (permalink / raw)
  To: Jiri Slaby; +Cc: Jani Nikula, linux-doc, Takashi Iwai

On Fri, 2 Mar 2018 15:10:14 +0100
Jiri Slaby <jslaby@suse.cz> wrote:

> in openSUSE, sphinx was updated to 1.7.1 and kernel-doc cannot be built
> since that time:
> Running Sphinx v1.7.1
> 
> Extension error:
> Could not import extension kerneldoc (exception: cannot import name
> 'Directive')
> 
> It is because sphinx.util.compat.* was removed from sphinx in 1.7 since
> it was deprecated for a long time:
> "sphinx.util.compat.%s is deprecated and will be removed "
>                "in Sphinx 1.7, please use docutils' instead."
> 
> 
> Could you fix that up? python is not my favourite interpreter so fixing
> it myself is not feasible on my side.

I got a patch from Takashi this very morning for that problem; I guess
I'll have to fast-track it Linusward.

Thanks,

jon
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: kernel-doc unbuildable with sphinx 1.7
  2018-03-02 14:34 ` Jonathan Corbet
@ 2018-03-02 14:40   ` Jiri Slaby
  2018-03-02 14:44     ` Takashi Iwai
  0 siblings, 1 reply; 5+ messages in thread
From: Jiri Slaby @ 2018-03-02 14:40 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: Jani Nikula, linux-doc, Takashi Iwai

On 03/02/2018, 03:34 PM, Jonathan Corbet wrote:
> I got a patch from Takashi this very morning for that problem; I guess
> I'll have to fast-track it Linusward.

Oh, thanks!

P.S.: Takashi, could you push it to our master & stable branches?

-- 
js
suse labs
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: kernel-doc unbuildable with sphinx 1.7
  2018-03-02 14:40   ` Jiri Slaby
@ 2018-03-02 14:44     ` Takashi Iwai
  2018-03-02 14:52       ` Jonathan Corbet
  0 siblings, 1 reply; 5+ messages in thread
From: Takashi Iwai @ 2018-03-02 14:44 UTC (permalink / raw)
  To: Jiri Slaby; +Cc: Jonathan Corbet, Jani Nikula, linux-doc

On Fri, 02 Mar 2018 15:40:37 +0100,
Jiri Slaby wrote:
> 
> On 03/02/2018, 03:34 PM, Jonathan Corbet wrote:
> > I got a patch from Takashi this very morning for that problem; I guess
> > I'll have to fast-track it Linusward.
> 
> Oh, thanks!
> 
> P.S.: Takashi, could you push it to our master & stable branches?

Sure, just waited for the feedback from Jon :)


Takashi
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: kernel-doc unbuildable with sphinx 1.7
  2018-03-02 14:44     ` Takashi Iwai
@ 2018-03-02 14:52       ` Jonathan Corbet
  0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Corbet @ 2018-03-02 14:52 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Jiri Slaby, Jani Nikula, linux-doc

On Fri, 02 Mar 2018 15:44:45 +0100
Takashi Iwai <tiwai@suse.de> wrote:

> Sure, just waited for the feedback from Jon :)

I want to try it with both old and new Sphinx, of course, but will have a
hard time doing it today - on the road all day.  But it looks reasonable
at a first glance; I'll try to get it into -rc4 (and -stable, I guess) if
I can.

Thanks,

jon
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-03-02 14:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-02 14:10 kernel-doc unbuildable with sphinx 1.7 Jiri Slaby
2018-03-02 14:34 ` Jonathan Corbet
2018-03-02 14:40   ` Jiri Slaby
2018-03-02 14:44     ` Takashi Iwai
2018-03-02 14:52       ` Jonathan Corbet

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.