From patchwork Thu Sep 11 23:05:14 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 24340 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 399B8BDB13 for ; Thu, 11 Sep 2025 23:05:42 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id BDEE169371; Fri, 12 Sep 2025 01:05:41 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="EYedg0QP"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3362362C3B for ; Fri, 12 Sep 2025 01:05:40 +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 3298343F0 for ; Fri, 12 Sep 2025 01:04:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1757631865; bh=xhFGlmy5m5UPs2aNDh5DYhJ8VkJpBFgOjs1Gq/FgM0c=; h=From:To:Subject:Date:From; b=EYedg0QP5S6vP046q1f+dR05S5PsErDqDHyUDiF4V4/AhvNmNYxxBfWTw52qZK8xf fdlRtc7Kr2idHXXI2w48vGZ3ArTi8+8hfw08si5Cg+XwEcAFB/MYrpMgCjTac9Z+9d x58wQ4oPHJse1o7wNHPBhtZjyaDROB8quPUfdZK4= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [libcamera-ci] [PATCH] Add sphinx-book-theme package to container images Date: Fri, 12 Sep 2025 02:05:14 +0300 Message-ID: <20250911230514.26202-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.49.1 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" libcamera will soon switch to sphinx-book-theme for documentation. Add the corresponding package to container images. Signed-off-by: Laurent Pinchart --- .gitlab-ci/setup-container.sh | 5 +++++ gitlab-ci.yml | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) base-commit: d58b30ed21a5663c5c6fd19da158de01b186831e diff --git a/.gitlab-ci/setup-container.sh b/.gitlab-ci/setup-container.sh index 7029919c509c..444b870a09d0 100755 --- a/.gitlab-ci/setup-container.sh +++ b/.gitlab-ci/setup-container.sh @@ -111,6 +111,7 @@ PKGS_VIRTME_RUNTIME=( PKGS_PIP_MIN_VERSIONS=( 'meson meson 1.2.0 remove' 'python3-pygments pygments 2.10.0 keep' + 'python3-sphinx-book-theme python3-sphinx-book-theme 0.1.7 remove' 'python3-sphinxcontrib.doxylink sphinxcontrib-doxylink 1.6.1 remove' ) @@ -125,6 +126,8 @@ case $FDO_DISTRIBUTION_VERSION in PKGS_LIBCAMERA_RUNTIME+=( g++-9 ) ;; 'bookworm') + # Sphinx theme for the documentation. + PKGS_LIBCAMERA_RUNTIME+=( python3-sphinx-book-theme ) # libclang-rt-dev for the clang ASan runtime. PKGS_LIBCAMERA_RUNTIME_MULTIARCH+=( libclang-rt-dev ) # For cam and lc-compliance @@ -134,6 +137,8 @@ case $FDO_DISTRIBUTION_VERSION in 'trixie') # gcc 13 to expand compilation testing coverage. PKGS_LIBCAMERA_RUNTIME+=( g++-13 ) + # Sphinx theme for the documentation. + PKGS_LIBCAMERA_RUNTIME+=( python3-sphinx-book-theme ) # libclang-rt-dev for the clang ASan runtime. PKGS_LIBCAMERA_RUNTIME_MULTIARCH+=( libclang-rt-dev ) ;; diff --git a/gitlab-ci.yml b/gitlab-ci.yml index 57607dbfe7e4..c8ec345f14d2 100644 --- a/gitlab-ci.yml +++ b/gitlab-ci.yml @@ -59,17 +59,17 @@ include: .libcamera-ci.debian:11: variables: FDO_DISTRIBUTION_VERSION: 'bullseye' - FDO_DISTRIBUTION_TAG: '2025-07-27.1' + FDO_DISTRIBUTION_TAG: '2025-09-08.0' .libcamera-ci.debian:12: variables: FDO_DISTRIBUTION_VERSION: 'bookworm' - FDO_DISTRIBUTION_TAG: '2025-07-27.1' + FDO_DISTRIBUTION_TAG: '2025-09-08.0' .libcamera-ci.debian:13: variables: FDO_DISTRIBUTION_VERSION: 'trixie' - FDO_DISTRIBUTION_TAG: '2025-07-27.1' + FDO_DISTRIBUTION_TAG: '2025-09-08.0' .container-debian: extends: