From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 22 May 2024 23:16:46 +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 1s9tKI-00ECft-0J for lore@lore.pengutronix.de; Wed, 22 May 2024 23:16:46 +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 1s9tKH-0002iN-Q5; Wed, 22 May 2024 23:16:45 +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 1s9tJJ-0000YP-NO; Wed, 22 May 2024 23:15:45 +0200 Received: from [2a0a:edc0:0:1101:1d::ac] (helo=dude04.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 1s9tJJ-002Zij-0v; Wed, 22 May 2024 23:15:45 +0200 Received: from rhi by dude04.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1s9tJI-006NjK-2t; Wed, 22 May 2024 23:15:44 +0200 From: Roland Hieber To: ptxdist@pengutronix.de Date: Wed, 22 May 2024 23:15:39 +0200 Message-Id: <20240522211543.1509741-9-rhi@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240522211543.1509741-1-rhi@pengutronix.de> References: <20240522211543.1509741-1-rhi@pengutronix.de> MIME-Version: 1.0 Mail-Followup-To: Roland Hieber , ptxdist@pengutronix.de Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH 09/13] host-python3-poetry-core: add new host 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: Roland Hieber 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 Signed-off-by: Roland Hieber --- rules/host-python3-poetry-core.in | 7 ++++++ rules/host-python3-poetry-core.make | 35 +++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 rules/host-python3-poetry-core.in create mode 100644 rules/host-python3-poetry-core.make diff --git a/rules/host-python3-poetry-core.in b/rules/host-python3-poetry-core.in new file mode 100644 index 000000000000..9cf59c8b3243 --- /dev/null +++ b/rules/host-python3-poetry-core.in @@ -0,0 +1,7 @@ +## SECTION=hosttools_noprompt + +config HOST_PYTHON3_POETRY_CORE + tristate + default y if ALLYES + select HOST_PYTHON3 + select HOST_PYTHON3_PYBUILD diff --git a/rules/host-python3-poetry-core.make b/rules/host-python3-poetry-core.make new file mode 100644 index 000000000000..89dab9fd9c3a --- /dev/null +++ b/rules/host-python3-poetry-core.make @@ -0,0 +1,35 @@ +# -*-makefile-*- +# +# Copyright (C) 2024 by Roland Hieber +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +HOST_PACKAGES-$(PTXCONF_HOST_PYTHON3_POETRY_CORE) += host-python3-poetry-core + +# +# Paths and names +# +HOST_PYTHON3_POETRY_CORE_VERSION := 1.9.0 +HOST_PYTHON3_POETRY_CORE_MD5 := eb8730e30aec5f644754b29587b47122 +HOST_PYTHON3_POETRY_CORE := poetry_core-$(HOST_PYTHON3_POETRY_CORE_VERSION) +HOST_PYTHON3_POETRY_CORE_SUFFIX := tar.gz +HOST_PYTHON3_POETRY_CORE_URL := $(call ptx/mirror-pypi, poetry_core, $(HOST_PYTHON3_POETRY_CORE).$(HOST_PYTHON3_POETRY_CORE_SUFFIX)) +HOST_PYTHON3_POETRY_CORE_SOURCE := $(SRCDIR)/$(HOST_PYTHON3_POETRY_CORE).$(HOST_PYTHON3_POETRY_CORE_SUFFIX) +HOST_PYTHON3_POETRY_CORE_DIR := $(HOST_BUILDDIR)/$(HOST_PYTHON3_POETRY_CORE) +HOST_PYTHON3_POETRY_CORE_LICENSE := MIT +HOST_PYTHON3_POETRY_CORE_LICENSE_FILES := \ + file://pyproject.toml;startline=4;endline=6;md5=a2d48f913a166a04a7a66fc6d7e2bd35 \ + file://LICENSE;md5=78c39cfd009863ae44237a7ab1f9cedc + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +HOST_PYTHON3_POETRY_CORE_CONF_TOOL := python3 + +# vim: syntax=make -- 2.39.2