From patchwork Tue May 17 14:33:13 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 15925 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 C2E01C326C for ; Tue, 17 May 2022 14:33:54 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3121965662; Tue, 17 May 2022 16:33:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1652798034; bh=nuViv9JC7+6/Yx1PMRRtFJVY+pz5y00/lrjlJxDVKPI=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=ryiAVgAkQw3CJQugo0u05xkfq6fwoCsqXoPSE0fDPJM235z08X4D05Msc37K4ZN+I u/j6iRILOCUMl9tT79GMq3n3AwqigKKSQ8mHHUIhGKBkUH4/4y7Y5np+ZfIhtxxzYF 9QZxZJCoAanpsMCvQywI0BLG+KJzslvIz/EccL5MQpLFSOg7YW2p+e9EIXVngR58Py h2vCBmYmZZYkP93GA6BB8BlMNX92qlF626sy3osELOOJ5rbNzxYPGlUjynqraOY2/I QBnOfNwG53yi7VWeeVRUy4+Gk/boStgZK6+PyfvhJ23o+vw5MJo/mVu1BjjpO59zQD C5+CXfTOdFhhA== 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 EC6036041D for ; Tue, 17 May 2022 16:33:51 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="LMgXURdl"; dkim-atps=neutral Received: from deskari.lan (91-156-85-209.elisa-laajakaista.fi [91.156.85.209]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 607046DC; Tue, 17 May 2022 16:33:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1652798031; bh=nuViv9JC7+6/Yx1PMRRtFJVY+pz5y00/lrjlJxDVKPI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LMgXURdlhr4TQbRr4TTeCASzohQglnPiaFB5ofKFNjvH8M6zPtIl+AQxPGjJwCBWO u1oOUWVamOc0lABntJxwX3M+qJVylGsajMxIdda4zmoXY4bdm3JqT1TdsL+XbYSV84 78FHY89YOkcvuy7HEiLUPRcS9CV207VV2y3X+/k0= To: libcamera-devel@lists.libcamera.org, David Plowman , Kieran Bingham , Laurent Pinchart , Jacopo Mondi Date: Tue, 17 May 2022 17:33:13 +0300 Message-Id: <20220517143325.71784-2-tomi.valkeinen@ideasonboard.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220517143325.71784-1-tomi.valkeinen@ideasonboard.com> References: <20220517143325.71784-1-tomi.valkeinen@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 01/13] py: meson: fix comment about stubs 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: , X-Patchwork-Original-From: Tomi Valkeinen via libcamera-devel From: Tomi Valkeinen Reply-To: Tomi Valkeinen Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" At least pyright seems to be able to use the stubs from the libcamera-stubs directory, so no need to copy the generated files. Adjust the comment accordingly. Signed-off-by: Tomi Valkeinen Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- src/py/libcamera/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/src/py/libcamera/meson.build b/src/py/libcamera/meson.build index 0cd7c75b..38f619d0 100644 --- a/src/py/libcamera/meson.build +++ b/src/py/libcamera/meson.build @@ -63,4 +63,3 @@ install_data(['__init__.py'], install_dir : destdir) # \todo Generate stubs when building. See https://peps.python.org/pep-0484/#stub-files # Note: Depends on pybind11-stubgen. To generate pylibcamera stubs: # $ PYTHONPATH=build/src/py pybind11-stubgen --no-setup-py -o build/src/py libcamera -# $ mv build/src/py/libcamera-stubs/* build/src/py/libcamera/