From nobody Tue Oct 7 14:59:15 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D775B2E6136; Wed, 9 Jul 2025 13:52:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752069141; cv=none; b=OcygWRLbWXpRfV1AAbKOPCVkgFDBbAWH16BAXzt180eWlcuQ2DQmjDmIJsGtkbWgMYiqFc/Zv4kfVlDlxD1xAZqKHUiP0EVV1lomI9d3xinD4k+LELAjA1UOQ+YcS6ZVdNIB86m3XSqyt6T5mhJiEIfqRstSkPiNyakWB5wfcRo= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752069141; c=relaxed/simple; bh=N7BK29GwfAOZ3YwW51dAhPYfYECxSH+jGCCV1ivhuZU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fMF/yh/jG0oxYc22Y4aIscZLqdtjvIPSRO7vWNk3Q9GPBbrGKZ/O30PLrWaur1UWepZc0hutVPaY94LoOX0pQQTweY5srnr+qlr7BtxmyXqT0sk728Uuvuz8dB6RuOZgFzAhZdRu9F4YBcn4cecexEjsg0On4NnoqSqDxQrJdEs= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=i+tgUInd; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="i+tgUInd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A3457C113D0; Wed, 9 Jul 2025 13:52:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1752069141; bh=N7BK29GwfAOZ3YwW51dAhPYfYECxSH+jGCCV1ivhuZU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=i+tgUInddmqT6/Nzaoal965lcYUEqITGSERg1bjN6Feoy2hbRvGpS6rNLdvAexkqr pJCNSj91+HpWfaIB7nzjiYgK4zUiOuYBpVXcOqsWrHulmWXbEYqh68WfyA/L94Eqjv /0dnG2f4E2bxUEeQkcAwGzgNYG7rD8QThWIzyNS9O+AfOeA4EAHjbu4aX+pf0IN/0f TsZ0FMK4cO3wguOcaAtc3z7x44tzobR6IZVcj8GcVInfUj1B7FYRkKNRIlVI9cBwet ZDqlr0rq2Dmw5Fwsy9nKedY1Sfg3vyzGlxIZ8+Z6LVkVK8xPENDqfekHtaZNyn3f87 0uKzecDuut8gA== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1uZVDd-00000000ECX-1O7f; Wed, 09 Jul 2025 15:52:17 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Mauro Carvalho Chehab , "Akira Yokosawa" , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org Subject: [PATCH v2 09/39] scripts: sphinx-pre-install: fix opensuse Leap hint for PyYAML Date: Wed, 9 Jul 2025 15:51:41 +0200 Message-ID: <3ac82fcdf6ea61267615bf85058913ebcdc49238.1752067814.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" On Leap, the name of the package is python311-PyYAML. Signed-off-by: Mauro Carvalho Chehab --- scripts/sphinx-pre-install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sphinx-pre-install.py b/scripts/sphinx-pre-install.py index eca42d90ed01..65438c198674 100755 --- a/scripts/sphinx-pre-install.py +++ b/scripts/sphinx-pre-install.py @@ -569,7 +569,7 @@ class SphinxDependencyChecker: progs.update({ "python-sphinx": "python311-Sphinx", "virtualenv": "python311-virtualenv", - "yaml": "python311-pyyaml", + "yaml": "python311-PyYAML", }) =20 # FIXME: add support for installing CJK fonts --=20 2.49.0