From mboxrd@z Thu Jan 1 00:00:00 1970 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 C276F28689B; Sat, 20 Sep 2025 09:40:34 +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=1758361234; cv=none; b=QtxWGejVkwaiVbj1RKZLW4v6TZ2zOPDLpBWq22m6w6u084uFQMxgkacByomNeG4/h1oL7ZzO/pFL6HkBnDtrKH4oJjrxP2TurnevLugirxbd2/jPnPnhFtjnlJDVV0unsJkbDrZN8LXLCLEIyz31F55OlaM9PeJ6lhnolfmGd78= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758361234; c=relaxed/simple; bh=V3i0EJlJy0Ol7ItqJxFm4AqKCM48LgFSOdW0M2CfvxM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=m+GLvT6aEsdg/YX4iZIuOcIggdFJEXWCiTflh/HPglvUKP8KAECtkE17HuLJ6mIxOkJv9j3+7Gj+4wQMg1ngV0IoPRyZSETMrgZ2kzES9nLfnTdm2sccOL4UDtDMeV7pLqz/zebVpsXCdfsEpbNg9dsVpnkL4FBN3dZxJ98FXTY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MCDoAt2T; 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="MCDoAt2T" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5646DC4CEF1; Sat, 20 Sep 2025 09:40:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1758361234; bh=V3i0EJlJy0Ol7ItqJxFm4AqKCM48LgFSOdW0M2CfvxM=; h=From:To:Cc:Subject:Date:From; b=MCDoAt2TriGgEq9Z7vxnreVGN3Hp9IjCF+jMncemX5zDY5Q0JImv8Sy2bWql2Ciqu VrilAY8+kih8klNJVJORHQrpgDU04BhI74/KnRI1C0T9DjZoGp0wcN8GaO/p7c2AM/ UoCQ5C7Dv01eFbwrlNYARS4WpRBjM1+OOmrF8EEBVyrulmFeayrenuvq6QHKrnPfCM k+MBOMLWsm5cnSatUgMK96UdqDGAc2ntdoBV0v9HsJAhkgsgbbvSAtNU49WS3Tk+a8 EvCiWS3xAuVg/HJtR9FnanrdjL1yWsnIv2wbmGqtXE5uRewMUDlXXny3/crAKAfCot qR657MuFj/X9A== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1uzu52-00000004Z2p-1Fuu; Sat, 20 Sep 2025 11:40:32 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet Subject: [PATCH v2 0/3] A couple of patches for sphinx-build-wrapper Date: Sat, 20 Sep 2025 11:40:23 +0200 Message-ID: X-Mailer: git-send-email 2.51.0 Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Hi Jon, This small series is against docs/build-script branch. The first patch addresses the lack of a check after running sphinx-build to see if it returned some error code. The second patch is a partial revert: we wneded including sphinx-build-wrapper twice due to a badly-solved rebase from my side. The third patch is a bonus cleanup: it get rids with load_config.py, replacing it by a single line at conf.py, simplifying even further docs Makefile and docs build system. Mauro Carvalho Chehab (3): tools/docs: sphinx-build-wrapper: handle sphinx-build errors scripts: remove sphinx-build-wrapper from scripts/ docs: conf.py: get rid of load_config.py Documentation/Makefile | 8 +- Documentation/conf.py | 15 +- Documentation/sphinx/load_config.py | 60 --- scripts/sphinx-build-wrapper | 719 ---------------------------- tools/docs/sphinx-build-wrapper | 18 +- 5 files changed, 16 insertions(+), 804 deletions(-) delete mode 100644 Documentation/sphinx/load_config.py delete mode 100755 scripts/sphinx-build-wrapper -- 2.51.0