Re: [PATCH v19 5/5] dts: add API doc generation

2024-09-17 Thread Juraj Linkeš
On 16. 9. 2024 14:48, Thomas Monjalon wrote: 16/09/2024 10:51, Juraj Linkeš: On 12. 9. 2024 22:09, Thomas Monjalon wrote: 21/08/2024 17:02, Juraj Linkeš: +req_deps = _get_dependencies(_DTS_DEP_FILE_PATH) +req_deps.pop('python') + +for req_dep, dep_data in (req_deps | _EXTRA_DEPS

Re: [PATCH v19 5/5] dts: add API doc generation

2024-09-16 Thread Thomas Monjalon
16/09/2024 10:51, Juraj Linkeš: > On 12. 9. 2024 22:09, Thomas Monjalon wrote: > > 21/08/2024 17:02, Juraj Linkeš: > >> +req_deps = _get_dependencies(_DTS_DEP_FILE_PATH) > >> +req_deps.pop('python') > >> + > >> +for req_dep, dep_data in (req_deps | _EXTRA_DEPS).items(): > > > > Please

Re: [PATCH v19 5/5] dts: add API doc generation

2024-09-16 Thread Juraj Linkeš
On 12. 9. 2024 22:09, Thomas Monjalon wrote: 21/08/2024 17:02, Juraj Linkeš: +if 'dts' in src: +os.environ['DTS_BUILD'] = "y" That's more precisely "DTS doc build". I think the variable name DTS_BUILD may be confusing. Ack, I'll rename the variable. [...] --- /dev/null +++ b/build

Re: [PATCH v19 5/5] dts: add API doc generation

2024-09-12 Thread Thomas Monjalon
21/08/2024 17:02, Juraj Linkeš: > +if 'dts' in src: > +os.environ['DTS_BUILD'] = "y" That's more precisely "DTS doc build". I think the variable name DTS_BUILD may be confusing. [...] > --- /dev/null > +++ b/buildtools/get-dts-runtime-deps.py > @@ -0,0 +1,95 @@ > +#!/usr/bin/env python3 > +#

Re: [PATCH v19 5/5] dts: add API doc generation

2024-09-02 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

Re: [PATCH v19 5/5] dts: add API doc generation

2024-08-21 Thread Dean Marx
On Wed, Aug 21, 2024 at 11:03 AM Juraj Linkeš wrote: > The tool used to generate DTS API docs is Sphinx, which is already in > use in DPDK. The same configuration is used to preserve style with one > DTS-specific configuration (so that the DPDK docs are unchanged) that > modifies how the sidebar

[PATCH v19 5/5] dts: add API doc generation

2024-08-21 Thread Juraj Linkeš
The tool used to generate DTS API docs is Sphinx, which is already in use in DPDK. The same configuration is used to preserve style with one DTS-specific configuration (so that the DPDK docs are unchanged) that modifies how the sidebar displays the content. There's other Sphinx configuration relate