From patchwork Fri Nov 6 10:36:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 10350 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 35AA8BE082 for ; Fri, 6 Nov 2020 10:37:29 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id F379562D1D; Fri, 6 Nov 2020 11:37:28 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="bh8m/iZ+"; 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 7EA6762D28 for ; Fri, 6 Nov 2020 11:37:27 +0100 (CET) Received: from pyrite.rasen.tech (unknown [IPv6:2400:4051:61:600:2c71:1b79:d06d:5032]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B861EA19; Fri, 6 Nov 2020 11:37:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1604659047; bh=Bs4yO6X0IIhU5ld19bfZTf0XvgI6ozyMRbwm7gKj4NE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bh8m/iZ++c+YyU7uJTgH+8Td2Y+mX8phLwYKqKqK82/PnEzx7x6nxX+09BVxn+aq0 yk9yhfGDbdBnwCjShSuymc6aN5T8rO4FzOv+9kBQpXxPlOuTK6qGi0qhRwklNxAwBm bYYuMQ7wHPdZ4j8ApcGecA2QMMrqTRGi8DG1z/NU= From: Paul Elder To: libcamera-devel@lists.libcamera.org Date: Fri, 6 Nov 2020 19:36:32 +0900 Message-Id: <20201106103707.49660-3-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20201106103707.49660-1-paul.elder@ideasonboard.com> References: <20201106103707.49660-1-paul.elder@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4 02/37] README, meson: Add dependency on ply and jinja2 for IPA interface generation 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" Specify in the readme and meson file that we depend on python3-ply and python3-jinja2 for generating the IPA interface. Signed-off-by: Paul Elder Reviewed-by: Laurent Pinchart Reviewed-by: Niklas Söderlund Reviewed-by: Kieran Bingham --- Changes in v4: - consolidate python3-ply requirement into libcamera core deps in README.rst - add ply to py_modules - add jinja2 to the readme and py_modules - moved earlier, to right after importing mojo New in v3 --- README.rst | 2 +- utils/ipc/meson.build | 3 +++ utils/meson.build | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 utils/ipc/meson.build diff --git a/README.rst b/README.rst index f8519b44..5c4b6989 100644 --- a/README.rst +++ b/README.rst @@ -58,7 +58,7 @@ Meson Build system: [required] pip3 install --user --upgrade meson for the libcamera core: [required] - python3-yaml + python3-yaml python3-ply python3-jinja2 for IPA module signing: [required] libgnutls28-dev openssl diff --git a/utils/ipc/meson.build b/utils/ipc/meson.build new file mode 100644 index 00000000..59f097f0 --- /dev/null +++ b/utils/ipc/meson.build @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: CC0-1.0 + +py_modules += ['jinja2', 'ply'] diff --git a/utils/meson.build b/utils/meson.build index 7f2b9b4d..8e28ada7 100644 --- a/utils/meson.build +++ b/utils/meson.build @@ -1,5 +1,6 @@ # SPDX-License-Identifier: CC0-1.0 +subdir('ipc') subdir('ipu3') subdir('tracepoints')