From patchwork Wed May 18 13:13: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: 15952 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 F175CC3256 for ; Wed, 18 May 2022 13:13:54 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9D2B96566B; Wed, 18 May 2022 15:13:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1652879631; bh=Fsyv7aFRzZxb2py8kwU39x3o8yCDzH5TjggYy9i3e10=; 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=yT6l1D1ZOLAWUYfzfcgcTtXH0qSme7H8CexP40Zrh5nNbtD/kEmljYMj7JheBqfwn Cs9tuGMaJfX6IjcI94PxxmKBQT74hBiRPponK2W34ajOekAjTWRymt3VMjBOXvfiNQ CMJCAj/3RUIUq+nsKmex9OOvEthDMiJukkkPxvmCBnytcLYDzeVrh9iiKb8l5RA/KY ooOxiwyU/M+4g+hJHJvvRWBx3RXN9o0ZcMcy3BDa53npQkmOdwc1EGt4x92lE4/9/V aSu6DjOl64ehAT7NDV6rC7/gA1VbIWyP0MQg4uUbWfb1DyzeTgat0ms+8Ex7H+Az/V P1YMUbiFGxTjA== 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 6596865656 for ; Wed, 18 May 2022 15:13:47 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="DlYdwN2u"; 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 C7CAE1AAA; Wed, 18 May 2022 15:13:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1652879627; bh=Fsyv7aFRzZxb2py8kwU39x3o8yCDzH5TjggYy9i3e10=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DlYdwN2uhMQhSpFGtRk31rolQ2gxN1KL2L5BD3O2Ad82XEZigB6M/u1eezgeisJg2 Pyniwgl6ihEWlZkGbdIhiYH88Po05BmmjwfX9N3INXpUFqMbc5kHB6o/DPcCwqpacf +DiPMFTBIiGaT8ZiVuYrkVLzMVd+HXzr/RQJlMCU= To: libcamera-devel@lists.libcamera.org, David Plowman , Kieran Bingham , Laurent Pinchart , Jacopo Mondi Date: Wed, 18 May 2022 16:13:13 +0300 Message-Id: <20220518131329.66994-3-tomi.valkeinen@ideasonboard.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220518131329.66994-1-tomi.valkeinen@ideasonboard.com> References: <20220518131329.66994-1-tomi.valkeinen@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 02/18] 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 cd20bb00..3c0828b8 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/