From patchwork Wed Sep 17 20:17:36 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 24383 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 1716AC328C for ; Wed, 17 Sep 2025 20:18:29 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 4E6D86937A; Wed, 17 Sep 2025 22:18:28 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="NQIw4F/O"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 24E9F6937A for ; Wed, 17 Sep 2025 22:18:20 +0200 (CEST) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with UTF8SMTPSA id 0C02C14A6 for ; Wed, 17 Sep 2025 22:17:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1758140221; bh=vqDUgyvGHMXSrd77KXbTClHlOwxl9QEdRtlCANlnfwg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=NQIw4F/OQSVB6YfdMugBhyhsFdMTNSQoMwlgr04Y0unJVwB39m6NbvsBQseE2pNdE nca3Ridz60RQL9wohQJNHa7bTlOGb02c6jBH89/JNGlUyeis766c3J/5irx1He+f84 ysoC9gcLwpo9Ga1h+GjltEkeltQVtzt+tT1AUadE= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH v3 05/10] Documentation: Add api-html/ and internal-api-html/ to docs sources Date: Wed, 17 Sep 2025 23:17:36 +0300 Message-ID: <20250917201742.16406-6-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.49.1 In-Reply-To: <20250917201742.16406-1-laurent.pinchart@ideasonboard.com> References: <20250917201742.16406-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The api-html/index.rst and internal-api-html/index.rst files are missing from docs_sources. Changes to those files therefore don't trigger a documentation rebuild. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Stefan Klug Reviewed-by: Barnabás Pőcze --- Documentation/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/meson.build b/Documentation/meson.build index f73407432fff..8cf7775902f3 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -150,6 +150,7 @@ if sphinx.found() sphinx_conf_dir = fs.parent(sphinx_conf) docs_sources = [ + 'api-html/index.rst', 'camera-sensor-model.rst', 'code-of-conduct.rst', 'coding-style.rst', @@ -164,6 +165,7 @@ if sphinx.found() 'guides/pipeline-handler.rst', 'guides/tracing.rst', 'index.rst', + 'internal-api-html/index.rst', 'introduction.rst', 'lens_driver_requirements.rst', 'libcamera_architecture.rst',