From: Weijie Yuan <wy@wyuan.org>
To: Dongliang Mu <dzm91@hust.edu.cn>
Cc: Chen Miao <chenmiao.ku@gmail.com>,
corbet@lwn.net, alexs@kernel.org, si.yanteng@linux.dev,
skhan@linuxfoundation.org, mchehab@kernel.org,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 5/6] docs/zh_CN: doc-guide: document macOS Sphinx setup
Date: Sun, 16 Aug 2026 13:07:16 +0800 [thread overview]
Message-ID: <aoFFhGeMzQNvt0i3@wyuan.org> (raw)
In-Reply-To: <e63fa3eb-7387-461e-9215-0974213a577e@hust.edu.cn>
On Sun, Aug 16, 2026 at 12:52:10PM +0800, Dongliang Mu wrote:
>
> On 8/15/26 5:44 AM, Chen Miao wrote:
> > Translate the macOS Sphinx dependency setup added to the English
> > documentation. Keep the translation in a separate patch so translation
> > status tooling can track the source change correctly.
> >
> > Signed-off-by: Chen Miao <chenmiao.ku@gmail.com>
> > Acked-by: Weijie Yuan <wy@wyuan.org>
> > ---
> > .../translations/zh_CN/doc-guide/sphinx.rst | 17 ++++++++++++++++-
> > 1 file changed, 16 insertions(+), 1 deletion(-)
> >
> > diff --git a/Documentation/translations/zh_CN/doc-guide/sphinx.rst b/Documentation/translations/zh_CN/doc-guide/sphinx.rst
> > index 3375c6f3a..e6d42d970 100644
> > --- a/Documentation/translations/zh_CN/doc-guide/sphinx.rst
> > +++ b/Documentation/translations/zh_CN/doc-guide/sphinx.rst
> > @@ -110,6 +110,22 @@ PDF和LaTeX构建
> > 使用Sphinx的系统打包,而不是Python虚拟环境。
> > +macOS 默认使用不区分文件名大小写的 APFS 卷,而内核源码树中存在仅大小写
> > +不同的文件。克隆源码前,请用 ``diskutil apfs list`` 找到 APFS 容器标识符,
> > +将下面的 ``diskX`` 替换为该标识符,并创建一个额外的大小写敏感卷::
> > +
> > + diskutil apfs addVolume diskX APFSX Linux
> > +
> > +在 macOS 上,该脚本使用 Homebrew 安装系统依赖,输出的 Homebrew 命令不需要
> > +``sudo``。PDF 工具链由 ``mactex-no-gui`` cask 提供,所需的 DejaVu 和 Noto CJK
> > +字体则通过 Homebrew font cask 安装;如果只构建 HTML 文档,请使用 ``--no-pdf``。
> > +安装 MacTeX 后,请重新启动终端,或运行
> > +``eval "$(/usr/libexec/path_helper)"`` 使命令行工具可见。macOS 用户建议使用
> > +默认的 Python 虚拟环境,因为 PyYAML 会从
> > +``Documentation/sphinx/requirements.txt`` 安装,而不是通过 Homebrew 安装。
> > +该脚本还会检查 GNU Make 4.0 或更高版本;如果 Homebrew 将其安装为
> > +``gmake``,请使用 ``gmake htmldocs``,而不是 ``make htmldocs``。
> > +
>
> Hi Chen Miao,
>
> The zh_CN only keeps the translations, therefore, you should first put this
> part into the english documenation.
>
> Of course, you can extend this patch into one with English and zh_CN
> changes.
The English Documentation for this is in [PATCH v4 2/6], so you mean
it's better to wait until the English part is merged, then we can apply
the Chinese translation part, I guess.
If so, let's add a 'Update xxx through...' in the commit message then.
But wait..:
+该脚本还会检查 GNU Make 4.0 或更高版本;如果 Homebrew 将其安装为
+``gmake``,请使用 ``gmake htmldocs``,而不是 ``make htmldocs``。
Now I find that this part above is not in the original patch for English
Docs, did you miss it on purpose? Sorry I didn't notice this in last
rerolls.
Thanks.
next prev parent reply other threads:[~2026-08-16 5:07 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-14 21:44 [PATCH v4 0/6] docs: sphinx-pre-install: improve dependency checks Chen Miao
2026-08-14 21:44 ` [PATCH v4 1/6] docs: kdoc: add GNU Make detection Chen Miao
2026-08-14 21:44 ` [PATCH v4 2/6] docs: sphinx-pre-install: add macOS Homebrew support Chen Miao
2026-08-14 21:44 ` [PATCH v4 3/6] docs: sphinx-pre-install: check GNU Make version Chen Miao
2026-08-14 21:44 ` [PATCH v4 4/6] docs: sphinx-build-wrapper: prefer gmake Chen Miao
2026-08-14 21:44 ` [PATCH v4 5/6] docs/zh_CN: doc-guide: document macOS Sphinx setup Chen Miao
2026-08-16 4:52 ` Dongliang Mu
2026-08-16 5:07 ` Weijie Yuan [this message]
2026-08-16 5:25 ` Dongliang Mu
2026-08-16 5:38 ` Weijie Yuan
2026-08-14 21:44 ` [PATCH v4 6/6] docs/zh_CN: how-to: document case-sensitive APFS setup Chen Miao
2026-08-16 4:54 ` Dongliang Mu
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=aoFFhGeMzQNvt0i3@wyuan.org \
--to=wy@wyuan.org \
--cc=alexs@kernel.org \
--cc=chenmiao.ku@gmail.com \
--cc=corbet@lwn.net \
--cc=dzm91@hust.edu.cn \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=si.yanteng@linux.dev \
--cc=skhan@linuxfoundation.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
all inboxes | Powered by JetHome®