From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 09 May 2022 08:32:58 +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 1nnwx0-006rBf-P2 for lore@lore.pengutronix.de; Mon, 09 May 2022 08:32:58 +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 1nnwwz-0005df-SR; Mon, 09 May 2022 08:32:57 +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 1nnwtY-0001BM-76; Mon, 09 May 2022 08:29:24 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1nnwtY-001F7P-Sa; Mon, 09 May 2022 08:29:23 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1nnwtW-00Fojh-Rb; Mon, 09 May 2022 08:29:22 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Mon, 9 May 2022 08:29:22 +0200 Message-Id: <20220509062922.3769797-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220506111745.1534181-2-david@protonic.nl> References: <20220506111745.1534181-2-david@protonic.nl> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-python3-tz: 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: David Jander 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 25ea8c11aa73598e6d10d7c55988d3a0ecdb8cc3. Michael [sent from post-receive hook] On Mon, 09 May 2022 08:29:22 +0200, David Jander wrote: > Needed for host-python3-babel > > Signed-off-by: Robin van der Gracht > Signed-off-by: David Jander > Message-Id: <20220506111745.1534181-2-david@protonic.nl> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-python3-tz.in b/rules/host-python3-tz.in > new file mode 100644 > index 000000000000..fc0cba8456f0 > --- /dev/null > +++ b/rules/host-python3-tz.in > @@ -0,0 +1,6 @@ > +## SECTION=hosttools_noprompt > + > +config HOST_PYTHON3_TZ > + tristate > + default y if ALLYES > + select HOST_PYTHON3 > diff --git a/rules/host-python3-tz.make b/rules/host-python3-tz.make > new file mode 100644 > index 000000000000..fddffcc90454 > --- /dev/null > +++ b/rules/host-python3-tz.make > @@ -0,0 +1,33 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2019 by Robin van der Gracht > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +HOST_PACKAGES-$(PTXCONF_HOST_PYTHON3_TZ) += host-python3-tz > + > +# > +# Paths and names > +# > +HOST_PYTHON3_TZ_VERSION := 2018.9 > +HOST_PYTHON3_TZ_MD5 := 0f57d76c64d0965e7429c9b871f6b711 > +HOST_PYTHON3_TZ := pytz-$(HOST_PYTHON3_TZ_VERSION) > +HOST_PYTHON3_TZ_SUFFIX := tar.gz > +HOST_PYTHON3_TZ_URL := $(call ptx/mirror-pypi, pytz, $(HOST_PYTHON3_TZ).$(PYTHON3_IFADDR_SUFFIX)) > +HOST_PYTHON3_TZ_SOURCE := $(SRCDIR)/$(HOST_PYTHON3_TZ).$(HOST_PYTHON3_TZ_SUFFIX) > +HOST_PYTHON3_TZ_DIR := $(HOST_BUILDDIR)/$(HOST_PYTHON3_TZ) > +HOST_PYTHON3_TZ_LICENSE := MIT > +HOST_PYTHON3_TZ_LICENSE_FILES := file://LICENSE.txt;md5=4878a915709225bceab739bdc2a18e8d > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +HOST_PYTHON3_TZ_CONF_TOOL := python3 > + > +# vim: syntax=make