From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 02 May 2023 09:07:04 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ptk6L-0026v1-5U for lore@lore.pengutronix.de; Tue, 02 May 2023 09:07:04 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1ptk6J-0004CD-Ct; Tue, 02 May 2023 09:07:03 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ptk5I-0002QP-LR; Tue, 02 May 2023 09:06:00 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1ptk5I-000WoO-4i; Tue, 02 May 2023 09:06:00 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1ptk5H-001K9k-Eo; Tue, 02 May 2023 09:05:59 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Tue, 2 May 2023 09:05:59 +0200 Message-Id: <20230502070559.315801-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230416093643.3983478-7-artur@4wiebe.de> References: <20230416093643.3983478-7-artur@4wiebe.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] python3-cffi: add dependency to pycparser X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Artur Wiebe Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as de13a7cbc951b77492263d9071372dd5ce907aef. Michael [sent from post-receive hook] On Tue, 02 May 2023 09:05:59 +0200, Artur Wiebe wrote: > Signed-off-by: Artur Wiebe > Message-Id: <20230416093643.3983478-7-artur@4wiebe.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-python3-cffi.in b/rules/host-python3-cffi.in > index a151897d50ab..f1ef95cadfb5 100644 > --- a/rules/host-python3-cffi.in > +++ b/rules/host-python3-cffi.in > @@ -3,5 +3,6 @@ > config HOST_PYTHON3_CFFI > tristate > select HOST_PYTHON3 > + select HOST_PYTHON3_PYCPARSER > help > Foreign Function Interface for Python calling C code. > diff --git a/rules/python3-cffi.in b/rules/python3-cffi.in > index e26714d51add..78e3d915f9ec 100644 > --- a/rules/python3-cffi.in > +++ b/rules/python3-cffi.in > @@ -3,6 +3,7 @@ > config PYTHON3_CFFI > tristate > select PYTHON3 > + select PYTHON3_PYCPARSER if RUNTIME > prompt "python3-cffi" > help > Foreign Function Interface for Python calling C code.