Re: [PATCH v3] doc: build manpages as well as html output

2023-08-30 Thread Thomas Monjalon
30/08/2023 12:20, Bruce Richardson: > On Wed, Aug 30, 2023 at 11:47:00AM +0200, Thomas Monjalon wrote: > > 29/08/2023 12:10, Bruce Richardson: > > > On Tue, Aug 29, 2023 at 11:28:01AM +0200, Thomas Monjalon wrote: > > > > 3/08/2023, Bruce Richardson: > > > > > +meson.add_install_script(mandb) >

Re: [PATCH v3] doc: build manpages as well as html output

2023-08-30 Thread Bruce Richardson
On Wed, Aug 30, 2023 at 11:47:00AM +0200, Thomas Monjalon wrote: > 29/08/2023 12:10, Bruce Richardson: > > On Tue, Aug 29, 2023 at 11:28:01AM +0200, Thomas Monjalon wrote: > > > 3/08/2023, Bruce Richardson: > > > > +meson.add_install_script(mandb) > > > > > > When is it executed exactly? Will

Re: [PATCH v3] doc: build manpages as well as html output

2023-08-30 Thread Thomas Monjalon
29/08/2023 12:10, Bruce Richardson: > On Tue, Aug 29, 2023 at 11:28:01AM +0200, Thomas Monjalon wrote: > > 3/08/2023, Bruce Richardson: > > > +meson.add_install_script(mandb) > > > > When is it executed exactly? > > Will it update the database in case we install in a staging directory, > > whe

Re: [PATCH v3] doc: build manpages as well as html output

2023-08-29 Thread Bruce Richardson
On Tue, Aug 29, 2023 at 11:28:01AM +0200, Thomas Monjalon wrote: > 3/08/2023, Bruce Richardson: > > +#set up common doxygen configuration > > A space is missing here > Ack > > +man_cdata.set('FULL_PATH_NAMES', 'NO') > > Why it has to be disabled? Maybe add a comment? > Sure, will add comment.

Re: [PATCH v3] doc: build manpages as well as html output

2023-08-29 Thread Thomas Monjalon
3/08/2023, Bruce Richardson: > +#set up common doxygen configuration A space is missing here > +man_cdata.set('FULL_PATH_NAMES', 'NO') Why it has to be disabled? Maybe add a comment? > +meson.add_install_script(mandb) When is it executed exactly? Will it update the database in case we inst

Re: [PATCH v3] doc: build manpages as well as html output

2023-08-04 Thread David Marchand
On Thu, Aug 3, 2023 at 6:44 PM Bruce Richardson wrote: > > Doxygen can produce manpage output as well as html output for the DPDK > APIs. However, we need to do this as a separate task as the manpage > output needs to be placed in a different location post-install to the > html output (/usr/local/

[PATCH v3] doc: build manpages as well as html output

2023-08-03 Thread Bruce Richardson
Doxygen can produce manpage output as well as html output for the DPDK APIs. However, we need to do this as a separate task as the manpage output needs to be placed in a different location post-install to the html output (/usr/local/share/man vs /usr/local/share/doc/). Changes required are: * Add