From patchwork Fri Jan 30 16:02:50 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 26058 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 4DC8CC3226 for ; Fri, 30 Jan 2026 16:03:02 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id D294161FD2; Fri, 30 Jan 2026 17:02:59 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="r5NcM5T9"; 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 5C3AE61FC6 for ; Fri, 30 Jan 2026 17:02:57 +0100 (CET) Received: from pb-laptop.local (185.221.142.123.nat.pool.zt.hu [185.221.142.123]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id BA6687FA for ; Fri, 30 Jan 2026 17:02:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1769788938; bh=JxtA1yPkR9zYQ4tCrWLVsm1VubV1szbBK3wrx0N/Fc8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=r5NcM5T9N7FUHnCVG/j4IwMT2CSwBTUBGrZhikEPYZdipsNuf/cnCkvbvHLTNp4Sg S9j69XAgQFdZUxagtxmICVNqPHYcUxILNu0oF6tVEwlg7UhUaE4nRIL33Tci7MLFDH hZUhUpAMzAxYwBrXfRBHoGqWBdpG8Auz3DRnYtFg= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= To: libcamera-devel@lists.libcamera.org Subject: [libcamera-ci] [RFC PATCH v2 1/5] Install `fpm` in the debian 13 container Date: Fri, 30 Jan 2026 17:02:50 +0100 Message-ID: <20260130160254.1770742-2-barnabas.pocze@ideasonboard.com> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260130160254.1770742-1-barnabas.pocze@ideasonboard.com> References: <20260130160254.1770742-1-barnabas.pocze@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" `fpm` will be used to easily build debian packages. Signed-off-by: Barnabás Pőcze --- .gitlab-ci/setup-container.sh | 6 ++++++ gitlab-ci.yml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -- 2.52.0 diff --git a/.gitlab-ci/setup-container.sh b/.gitlab-ci/setup-container.sh index 3506271..c9bae0e 100755 --- a/.gitlab-ci/setup-container.sh +++ b/.gitlab-ci/setup-container.sh @@ -138,6 +138,8 @@ case $FDO_DISTRIBUTION_VERSION in PKGS_LIBCAMERA_RUNTIME+=( g++-13 ) # Sphinx theme for the documentation. PKGS_LIBCAMERA_RUNTIME+=( python3-sphinx-book-theme ) + # For creating debian packages with `fpm` (https://github.com/jordansissel/fpm). + PKGS_LIBCAMERA_RUNTIME+=( ruby ) # libclang-rt-dev for the clang ASan runtime. PKGS_LIBCAMERA_RUNTIME_MULTIARCH+=( libclang-rt-19-dev ) # For the Android camera HAL and the virtual pipeline handler. @@ -277,6 +279,10 @@ Version: ${version} Cflags: -I\${includedir} EOF fi + + if [[ $FDO_DISTRIBUTION_VERSION == 'trixie' ]] ; then + gem install fpm + fi } cbuild_cleanup_pkgs() { diff --git a/gitlab-ci.yml b/gitlab-ci.yml index 3f80cb8..6cc2026 100644 --- a/gitlab-ci.yml +++ b/gitlab-ci.yml @@ -70,7 +70,7 @@ include: .libcamera-ci.debian:13: variables: FDO_DISTRIBUTION_VERSION: 'trixie' - FDO_DISTRIBUTION_TAG: '2026-01-23.0' + FDO_DISTRIBUTION_TAG: '2026-01-29.0' .container-debian: extends: