From patchwork Mon May 16 14:10:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 15907 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 7DFDDC3256 for ; Mon, 16 May 2022 14:10:52 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 737BC6565A; Mon, 16 May 2022 16:10:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1652710250; bh=TM9wLK6War1E/T35ufvdD/72QP07S13uSskcfJQFlXo=; 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=YW9PFlIqo19jZxLSY/0we2aU+s6zwFBeyDH6lks0sOMxnABwStpyLx6oTLtmdgSo/ kIM5l1A93oOz1HK2o6TwUvXezysNw4pvh9C3AjhvaGxEZ+25b4u+zjuz2H4w3QZ++S y8btyGinGA0jY9gBBZwbdkMrObTF27hv18zNIK19ekDoIu4pqSR1IpMV+E7DqsGqq1 uFxb1YW7GLfjpayU6bIdEsRzBM5sEiIws8yNNpBWwp8/88rNFerHKSHuVrVG8GbUBa 6fgMGsb3AWpwh4qMx+0pEaFpVcmcV76O34rRkYvuVVASTpLlYZ9p15RFmecxq4VXPk OKHDGcGkfEXDQ== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 8F42261FB8 for ; Mon, 16 May 2022 16:10:48 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="whiwaG15"; 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 9A51848F; Mon, 16 May 2022 16:10:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1652710248; bh=TM9wLK6War1E/T35ufvdD/72QP07S13uSskcfJQFlXo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=whiwaG15PwJWE9+QEPfHVesCz89qOsrJ8T6jCXYV2R5OyvyyDKdJ/weu9arKk+bUj ykQwxJVxH034BqxnBb1YHaahwkNCwgriRZ/SYCbKbhkIfWetoLnVndU0YkVGP7Vqz9 0jwbGqlGOcd8ozHc3i+rLvYMFFnzCN8jtOb9jvv0= To: libcamera-devel@lists.libcamera.org, David Plowman , Kieran Bingham , Laurent Pinchart , Jacopo Mondi Date: Mon, 16 May 2022 17:10:09 +0300 Message-Id: <20220516141022.96327-2-tomi.valkeinen@ideasonboard.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220516141022.96327-1-tomi.valkeinen@ideasonboard.com> References: <20220516141022.96327-1-tomi.valkeinen@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 01/14] 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 --- 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/