From patchwork Tue Sep 24 13:14:29 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 21347 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 A21A0C0F1B for ; Tue, 24 Sep 2024 13:14:35 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id AE0C963510; Tue, 24 Sep 2024 15:14:34 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="EjETCeXo"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id AFB1763502 for ; Tue, 24 Sep 2024 15:14:32 +0200 (CEST) Received: from Monstersaurus.tail69b4.ts.net (cpc89244-aztw30-2-0-cust6594.18-1.cable.virginm.net [86.31.185.195]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id BE1B8827; Tue, 24 Sep 2024 15:13:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1727183585; bh=kTsM2YIgSfxnrQMK1ajYvaQooHrro6JGOnaxhII84xs=; h=From:To:Cc:Subject:Date:From; b=EjETCeXoG52GOqDqXTLJleu7oeHfTeOEsaVtUop9ZQlC8tv05v//KSZAmBOzCZAjn 3PieFXjcSSM/nmsjPhoMTu/RybMYxtzPRMux+NxRGhNHWfT2kXLEcNtEb+ePUlJA8I XsMOn68HnpFri/M1/s2DvGjh3kahrI9JBmcvgApg= From: Kieran Bingham To: libcamera devel Cc: Kieran Bingham Subject: [PATCH] utils: abi-compat: Disable python build Date: Tue, 24 Sep 2024 14:14:29 +0100 Message-Id: <20240924131429.2848036-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.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" While building the core libcamera library for ABI compatibility checks, the pycamera python bindings may get built if the required dependencies are found. The ABI compatibility checks do not validate or verify the Python API - so remove this from the intermediate build steps. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- utils/abi-compat.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/abi-compat.sh b/utils/abi-compat.sh index c936ac05b37c..a7b2481572bd 100755 --- a/utils/abi-compat.sh +++ b/utils/abi-compat.sh @@ -161,6 +161,7 @@ create_abi_dump() { -Ddocumentation=disabled \ -Dcam=disabled \ -Dqcam=disabled \ + -Dpycamera=disabled \ -Dgstreamer=disabled \ -Dlc-compliance=disabled \ -Dtracing=disabled \