From: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
To: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
Akira Yokosawa <akiyks@gmail.com>,
Randy Dunlap <rdunlap@infradead.org>,
Jani Nikula <jani.nikula@linux.intel.com>
Subject: Re: [PATCH v3 0/8] Collect documentation-related tools under /tools/docs
Date: Fri, 24 Oct 2025 23:33:20 -0300 [thread overview]
Message-ID: <20251024233320.3346a24d@sal.lan> (raw)
In-Reply-To: <20251024200834.20644-1-corbet@lwn.net>
Em Fri, 24 Oct 2025 14:08:21 -0600
Jonathan Corbet <corbet@lwn.net> escreveu:
> Our documentation-related tools are spread out over various directories;
> several are buried in the scripts/ dumping ground. That makes them harder
> to discover and harder to maintain.
>
> Recent work has started accumulating our documentation-related tools in
> /tools/docs. This series completes that task, moving the rest of our
> various utilities there, hopefully fixing up all of the relevant references
> in the process.
>
> At the end, rather than move the old, Perl kernel-doc, I simply removed it.
LGTM.
For the entire series:
Reviewed-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
>
> The big elephant lurking in this small room is the home for Python modules;
> I left them under scripts/lib, but that is an even less appropriate place
> than it was before. I would propose either tools/python or lib/python;
> thoughts on that matter welcome.
Agreed that it should be moved out of scripts/lib. Besides that,
I don't care much about its location. My personal preference would
be (with no particular order):
- tools/python_lib
- tools/lib_python
- tools/lib_py
- tools/lib
(lib/python works for me as well)
Or, if we don't aim to share code with docs and non-docs python
code, we can use:
- tools/docs/lib
>
> Changes in v3:
> - Now with more caffeine! Properly based on docs-next.
>
> Changes in v2:
> - Rebase on top of all of Mauro's changes (the most painful rebase I've
> ever done, I think).
> - Land everything in /tools/docs/ rather than /tools/doc/
>
> v2: https://lore.kernel.org/lkml/20251023161027.697135-1-corbet@lwn.net/
> v1: https://lore.kernel.org/lkml/20250813213218.198582-1-corbet@lwn.net/
>
>
> Jonathan Corbet (8):
> docs: Move the "features" tools to tools/docs
> docs: move checktransupdate.py to tools/docs
> docs: move scripts/documentation-file-ref-check to tools/docs
> docs: move get_abi.py to tools/docs
> docs: move test_doc_build.py to tools/docs
> docs: move kernel-doc to tools/docs
> docs: move find-unused-docs.sh to tools/docs
> docs: remove kernel-doc.pl
>
> Documentation/Kconfig | 2 +-
> Documentation/Makefile | 6 +-
> Documentation/conf.py | 2 +-
> Documentation/doc-guide/checktransupdate.rst | 6 +-
> Documentation/doc-guide/contributing.rst | 2 +-
> Documentation/doc-guide/kernel-doc.rst | 6 +-
> Documentation/doc-guide/sphinx.rst | 2 +-
> Documentation/kbuild/kbuild.rst | 2 +-
> Documentation/process/coding-style.rst | 2 +-
> Documentation/sphinx/kernel_abi.py | 2 +-
> Documentation/sphinx/kernel_feat.py | 4 +-
> .../it_IT/doc-guide/kernel-doc.rst | 8 +-
> .../sp_SP/process/coding-style.rst | 2 +-
> .../zh_CN/doc-guide/checktransupdate.rst | 6 +-
> .../zh_CN/doc-guide/contributing.rst | 2 +-
> .../zh_CN/doc-guide/kernel-doc.rst | 10 +-
> Documentation/translations/zh_CN/how-to.rst | 2 +-
> .../translations/zh_CN/kbuild/kbuild.rst | 2 +-
> .../zh_CN/process/coding-style.rst | 2 +-
> .../zh_TW/process/coding-style.rst | 2 +-
> MAINTAINERS | 5 -
> Makefile | 2 +-
> drivers/gpu/drm/i915/Makefile | 2 +-
> scripts/kernel-doc | 1 -
> scripts/kernel-doc.pl | 2439 -----------------
> {scripts => tools/docs}/checktransupdate.py | 8 +-
> .../docs}/documentation-file-ref-check | 2 +-
> .../docs}/features-refresh.sh | 0
> {scripts => tools/docs}/find-unused-docs.sh | 8 +-
> {scripts => tools/docs}/get_abi.py | 0
> {scripts => tools/docs}/get_feat.pl | 2 +-
> .../kernel-doc.py => tools/docs/kernel-doc | 0
> .../features => tools/docs}/list-arch.sh | 2 +-
> tools/docs/sphinx-pre-install | 2 +-
> {scripts => tools/docs}/test_doc_build.py | 0
> 35 files changed, 50 insertions(+), 2495 deletions(-)
> delete mode 120000 scripts/kernel-doc
> delete mode 100755 scripts/kernel-doc.pl
> rename {scripts => tools/docs}/checktransupdate.py (97%)
> rename {scripts => tools/docs}/documentation-file-ref-check (99%)
> rename {Documentation/features/scripts => tools/docs}/features-refresh.sh (100%)
> rename {scripts => tools/docs}/find-unused-docs.sh (79%)
> rename {scripts => tools/docs}/get_abi.py (100%)
> rename {scripts => tools/docs}/get_feat.pl (99%)
> rename scripts/kernel-doc.py => tools/docs/kernel-doc (100%)
> rename {Documentation/features => tools/docs}/list-arch.sh (83%)
> rename {scripts => tools/docs}/test_doc_build.py (100%)
>
next prev parent reply other threads:[~2025-10-25 2:33 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-24 20:08 [PATCH v3 0/8] Collect documentation-related tools under /tools/docs Jonathan Corbet
2025-10-24 20:08 ` [PATCH v3 1/8] docs: Move the "features" tools to tools/docs Jonathan Corbet
2025-10-24 20:08 ` [PATCH v3 2/8] docs: move checktransupdate.py " Jonathan Corbet
2025-10-24 20:08 ` [PATCH v3 3/8] docs: move scripts/documentation-file-ref-check " Jonathan Corbet
2025-10-24 20:08 ` [PATCH v3 4/8] docs: move get_abi.py " Jonathan Corbet
2025-10-24 20:08 ` [PATCH v3 5/8] docs: move test_doc_build.py " Jonathan Corbet
2025-10-24 20:08 ` [PATCH v3 6/8] docs: move kernel-doc " Jonathan Corbet
2025-10-25 7:14 ` kernel test robot
2025-10-24 20:08 ` [PATCH v3 7/8] docs: move find-unused-docs.sh " Jonathan Corbet
2025-10-24 20:08 ` [PATCH v3 8/8] docs: remove kernel-doc.pl Jonathan Corbet
2025-10-25 2:33 ` Mauro Carvalho Chehab [this message]
2025-10-25 15:14 ` [PATCH v3 0/8] Collect documentation-related tools under /tools/docs Akira Yokosawa
2025-10-26 10:34 ` Mauro Carvalho Chehab
2025-10-26 21:53 ` Randy Dunlap
2025-11-07 10:30 ` Mauro Carvalho Chehab
2025-10-27 1:59 ` Akira Yokosawa
2025-10-27 17:04 ` Jonathan Corbet
2025-10-28 23:15 ` Jonathan Corbet
2025-11-07 10:27 ` Mauro Carvalho Chehab
2025-11-07 10:34 ` Mauro Carvalho Chehab
2025-10-26 21:44 ` Randy Dunlap
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251024233320.3346a24d@sal.lan \
--to=mchehab+huawei@kernel.org \
--cc=akiyks@gmail.com \
--cc=corbet@lwn.net \
--cc=jani.nikula@linux.intel.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rdunlap@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).