From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 12 Jul 2024 10:06:05 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1sSBI5-0042EG-2C for lore@lore.pengutronix.de; Fri, 12 Jul 2024 10:06:05 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1sSBI4-0003PB-Te; Fri, 12 Jul 2024 10:06:04 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1sSBHc-0003FI-7U; Fri, 12 Jul 2024 10:05:36 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sSBHb-008xH0-RH; Fri, 12 Jul 2024 10:05:35 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1sSBHb-002jN9-2a; Fri, 12 Jul 2024 10:05:35 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 12 Jul 2024 10:05:35 +0200 Message-Id: <20240712080535.651059-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240705145410.3175309-1-p.zabel@pengutronix.de> References: <20240705145410.3175309-1-p.zabel@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-system-python3-pycparser: new package 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: Philipp Zabel 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.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 7aac72827456020fa817d05a72a27e4a86cea5ce. Michael [sent from post-receive hook] On Fri, 12 Jul 2024 10:05:35 +0200, Philipp Zabel wrote: > Enable packages that use host-system-python3 to make use of the > pycparser module as well. > > Signed-off-by: Philipp Zabel > Message-Id: <20240705145410.3175309-1-p.zabel@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-system-python3-pycparser.in b/rules/host-system-python3-pycparser.in > new file mode 100644 > index 000000000000..66a18c52b82d > --- /dev/null > +++ b/rules/host-system-python3-pycparser.in > @@ -0,0 +1,7 @@ > +## SECTION=hosttools_noprompt > + > +config HOST_SYSTEM_PYTHON3_PYCPARSER > + tristate > + default y if ALLYES > + select HOST_SYSTEM_PYTHON3 > + select HOST_SYSTEM_PYTHON3_SETUPTOOLS > diff --git a/rules/host-system-python3-pycparser.make b/rules/host-system-python3-pycparser.make > new file mode 100644 > index 000000000000..1280d05023b3 > --- /dev/null > +++ b/rules/host-system-python3-pycparser.make > @@ -0,0 +1,20 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2024 by Philipp Zabel > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +HOST_PACKAGES-$(PTXCONF_HOST_SYSTEM_PYTHON3_PYCPARSER) += host-system-python3-pycparser > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +HOST_SYSTEM_PYTHON3_PYCPARSER_CONF_TOOL := python3 > + > +# vim: syntax=make