From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 05 Jul 2024 16:54:30 +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 1sPkKU-001qkV-1y for lore@lore.pengutronix.de; Fri, 05 Jul 2024 16:54:30 +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 1sPkKU-0002RZ-8V; Fri, 05 Jul 2024 16:54:30 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1sPkKB-0002RI-BN; Fri, 05 Jul 2024 16:54:11 +0200 From: Philipp Zabel To: ptxdist@pengutronix.de Date: Fri, 5 Jul 2024 16:54:10 +0200 Message-Id: <20240705145410.3175309-1-p.zabel@pengutronix.de> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] 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 Enable packages that use host-system-python3 to make use of the pycparser module as well. Signed-off-by: Philipp Zabel --- rules/host-system-python3-pycparser.in | 7 +++++++ rules/host-system-python3-pycparser.make | 20 ++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 rules/host-system-python3-pycparser.in create mode 100644 rules/host-system-python3-pycparser.make 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 -- 2.39.2