From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 25 May 2022 11:50:13 +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 1ntnef-008VVr-5o for lore@lore.pengutronix.de; Wed, 25 May 2022 11:50:13 +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 1ntnee-0004bY-Gp; Wed, 25 May 2022 11:50:12 +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 1ntnaI-000053-Ki; Wed, 25 May 2022 11:45:42 +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 1ntnaJ-004RCg-5F; Wed, 25 May 2022 11:45:41 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1ntnaH-00Bwo0-54; Wed, 25 May 2022 11:45:41 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Wed, 25 May 2022 11:45:41 +0200 Message-Id: <20220525094541.2847612-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220519162506.6045-2-bruno.thomsen@gmail.com> References: <20220519162506.6045-2-bruno.thomsen@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] python3-falcon: 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: Bruno Thomsen 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 c1e1dbf375897ede438815e8b24f7a98f5bc5955. Michael [sent from post-receive hook] On Wed, 25 May 2022 11:45:40 +0200, Bruno Thomsen wrote: > The Falcon Web Framework. > > Signed-off-by: Bruno Thomsen > Message-Id: <20220519162506.6045-2-bruno.thomsen@gmail.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/python3-falcon.in b/rules/python3-falcon.in > new file mode 100644 > index 000000000000..eac42244edab > --- /dev/null > +++ b/rules/python3-falcon.in > @@ -0,0 +1,12 @@ > +## SECTION=python3 > + > +config PYTHON3_FALCON > + bool > + select PYTHON3 > + select PYTHON3_GUNICORN > + prompt "falcon" > + help > + The Falcon Web Framework. > + Falcon is a minimalist ASGI/WSGI framework for building > + mission-critical REST APIs and microservices, with a focus > + on reliability, correctness, and performance at scale. > diff --git a/rules/python3-falcon.make b/rules/python3-falcon.make > new file mode 100644 > index 000000000000..ee81c6c02f6a > --- /dev/null > +++ b/rules/python3-falcon.make > @@ -0,0 +1,54 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2022 by Bruno Thomsen > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_PYTHON3_FALCON) += python3-falcon > + > +# > +# Paths and names > +# > +PYTHON3_FALCON_VERSION := 3.1.0 > +PYTHON3_FALCON_MD5 := 0172450908573a4449a5937810d512b9 > +PYTHON3_FALCON := falcon-$(PYTHON3_FALCON_VERSION) > +PYTHON3_FALCON_SUFFIX := tar.gz > +PYTHON3_FALCON_URL := $(call ptx/mirror-pypi, falcon, $(PYTHON3_FALCON).$(PYTHON3_FALCON_SUFFIX)) > +PYTHON3_FALCON_SOURCE := $(SRCDIR)/$(PYTHON3_FALCON).$(PYTHON3_FALCON_SUFFIX) > +PYTHON3_FALCON_DIR := $(BUILDDIR)/$(PYTHON3_FALCON) > +PYTHON3_FALCON_LICENSE := Apache-2.0 > +PYTHON3_FALCON_LICENSE_FILES := \ > + file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +PYTHON3_FALCON_CONF_TOOL := python3 > + > +# ---------------------------------------------------------------------------- > +# Target-Install > +# ---------------------------------------------------------------------------- > + > +$(STATEDIR)/python3-falcon.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, python3-falcon) > + @$(call install_fixup, python3-falcon,PRIORITY,optional) > + @$(call install_fixup, python3-falcon,SECTION,base) > + @$(call install_fixup, python3-falcon,AUTHOR,"Bruno Thomsen ") > + @$(call install_fixup, python3-falcon,DESCRIPTION,missing) > + > + @$(call install_glob, python3-falcon, 0, 0, -, \ > + $(PYTHON3_SITEPACKAGES),, *.py) > + > + @$(call install_finish, python3-falcon) > + > + @$(call touch) > + > +# vim: syntax=make