Em Thu, 18 Jul 2019 19:56:57 +0200 Markus Heiser <markus.heiser@xxxxxxxxxxx> escreveu: > Am 18.07.19 um 19:46 schrieb Mauro Carvalho Chehab: > > Em Sat, 13 Jul 2019 00:41:25 -0300 > > Mauro Carvalho Chehab <mchehab+samsung@xxxxxxxxxx> escreveu: > > > >> Em Fri, 12 Jul 2019 19:27:05 -0300 > >> Mauro Carvalho Chehab <mchehab+samsung@xxxxxxxxxx> escreveu: > >> > >>> Em Fri, 12 Jul 2019 14:19:21 -0600 > >>> Jonathan Corbet <corbet@xxxxxxx> escreveu: > >>> > >>>> Can't you just make rst2pdf work instead? :) > >>> > >>> Well, we can try. > > Thanks a lot for your investigation on this. I also checked the rst2pdf sources > a while ago, for me it was crap with crap requirements [1] .. my tip: don't > waste to much time on it. > > [1] https://github.com/mchehab/rst2pdf/blob/master/requirements.txt#L31 > Yeah, a simple test shows that this upstream rst2pdf + latest reportlab has some issues. Running this: $ rst2pdf Documentation/process/license-rules.rst causes an error with reportlab-3.5.23. It has to be downgraded to version 3.4 in order to avoid this error: File "/devel/v4l/docs_temp/sphinx_2.0.1/lib/python3.7/site-packages/reportlab/platypus/doctemplate.py", line 651, in handle_pageEnd raise LayoutError(ident) reportlab.platypus.doctemplate.LayoutError: More than 10 pages generated without content - halting layout. Likely that a flowable is too large for any frame. Another solution would be to do this: diff --git a/Documentation/process/license-rules.rst b/Documentation/process/license-rules.rst index 2ef44ada3f11..19a480ebd69a 100644 --- a/Documentation/process/license-rules.rst +++ b/Documentation/process/license-rules.rst @@ -452,7 +452,10 @@ _`MODULE_LICENSE` module source is dual licensed under a GPL v2 variant and MIT license. Please do not use in new code. + ============================= ============================================= + + ============================= ============================================= "Dual MIT/GPL" The correct way of expressing that the module is dual licensed under a GPL v2 variant or MIT license choice. But it sucks needing to break long tables because reportlab's handling for big tables is broken. Thanks, Mauro