From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 04 Nov 2024 12:06:56 +0100 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 1t7uv9-004iS2-15 for lore@lore.pengutronix.de; Mon, 04 Nov 2024 12:06:56 +0100 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 1t7uv9-0000Kx-Vg; Mon, 04 Nov 2024 12:06:55 +0100 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 1t7uui-0008KR-1F; Mon, 04 Nov 2024 12:06:28 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1t7uuh-001xxF-2k; Mon, 04 Nov 2024 12:06:27 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1t7uuh-00Cn1R-2Z; Mon, 04 Nov 2024 12:06:27 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Mon, 4 Nov 2024 12:06:27 +0100 Message-Id: <20241104110627.3048287-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20241029193113.1076301-5-lapeddk@gmail.com> References: <20241029193113.1076301-5-lapeddk@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-python3-hatchling: 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: Lars Pedersen 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 e547a418b373cd8c5571fa44ce218798ce4830ef. Michael [sent from post-receive hook] On Mon, 04 Nov 2024 12:06:27 +0100, Lars Pedersen wrote: > Signed-off-by: Lars Pedersen > Message-Id: <20241029193113.1076301-5-lapeddk@gmail.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-python3-hatchling.in b/rules/host-python3-hatchling.in > new file mode 100644 > index 000000000000..aa8eb0579f6a > --- /dev/null > +++ b/rules/host-python3-hatchling.in > @@ -0,0 +1,10 @@ > +## SECTION=hosttools_noprompt > + > +config HOST_PYTHON3_HATCHLING > + tristate > + default y if ALLYES > + select HOST_PYTHON3 > + select HOST_PYTHON3_TROVE_CLASSIFIERS > + select HOST_PYTHON3_PLUGGY > + select HOST_PYTHON3_PATHSPEC > + select HOST_PYTHON3_PYBUILD > diff --git a/rules/host-python3-hatchling.make b/rules/host-python3-hatchling.make > new file mode 100644 > index 000000000000..029136839aa0 > --- /dev/null > +++ b/rules/host-python3-hatchling.make > @@ -0,0 +1,33 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2024 by Lars Pedersen > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +HOST_PACKAGES-$(PTXCONF_HOST_PYTHON3_HATCHLING) += host-python3-hatchling > + > +# > +# Paths and names > +# > +HOST_PYTHON3_HATCHLING_VERSION := 1.25.0 > +HOST_PYTHON3_HATCHLING_MD5 := ac265366ccd17365db319dc95a9e5bc5 > +HOST_PYTHON3_HATCHLING := hatchling-$(HOST_PYTHON3_HATCHLING_VERSION) > +HOST_PYTHON3_HATCHLING_SUFFIX := tar.gz > +HOST_PYTHON3_HATCHLING_URL := $(call ptx/mirror-pypi, hatchling, $(HOST_PYTHON3_HATCHLING).$(HOST_PYTHON3_HATCHLING_SUFFIX)) > +HOST_PYTHON3_HATCHLING_SOURCE := $(SRCDIR)/$(HOST_PYTHON3_HATCHLING).$(HOST_PYTHON3_HATCHLING_SUFFIX) > +HOST_PYTHON3_HATCHLING_DIR := $(HOST_BUILDDIR)/$(HOST_PYTHON3_HATCHLING) > +HOST_PYTHON3_HATCHLING_LICENSE := MIT > +HOST_PYTHON3_HATCHLING_LICENSE_FILES := file://LICENSE.txt;md5=cbe2fd33fc9297692812fc94b7d27fd9 > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +HOST_PYTHON3_HATCHLING_CONF_TOOL := python3 > + > +# vim: syntax=make