* [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 @ 2020-09-17 12:25 Bastian Krause 2020-09-17 12:25 ` [ptxdist] [PATCH 2/3] python3-sqlparse: new package Bastian Krause ` (2 more replies) 0 siblings, 3 replies; 4+ messages in thread From: Bastian Krause @ 2020-09-17 12:25 UTC (permalink / raw) To: ptxdist; +Cc: Bastian Krause Signed-off-by: Bastian Krause <bst@pengutronix.de> --- rules/python3-pytz.make | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rules/python3-pytz.make b/rules/python3-pytz.make index bf7bb982a..29d525dd9 100644 --- a/rules/python3-pytz.make +++ b/rules/python3-pytz.make @@ -11,11 +11,11 @@ # PACKAGES-$(PTXCONF_PYTHON3_PYTZ) += python3-pytz -PYTHON3_PYTZ_VERSION := 2018.5 -PYTHON3_PYTZ_MD5 := 45409cbfa3927bdd2f3ee914dd5b1060 +PYTHON3_PYTZ_VERSION := 2020.1 +PYTHON3_PYTZ_MD5 := 0349106ac02f2bfe565dd6d5594e3a15 PYTHON3_PYTZ := pytz-$(PYTHON3_PYTZ_VERSION) PYTHON3_PYTZ_SUFFIX := tar.gz -PYTHON3_PYTZ_URL := https://pypi.python.org/packages/ca/a9/62f96decb1e309d6300ebe7eee9acfd7bccaeedd693794437005b9067b44/$(PYTHON3_PYTZ).$(PYTHON3_PYTZ_SUFFIX)\#md5=$(PYTHON3_PYTZ_MD5) +PYTHON3_PYTZ_URL := https://files.pythonhosted.org/packages/f4/f6/94fee50f4d54f58637d4b9987a1b862aeb6cd969e73623e02c5c00755577/$(PYTHON3_PYTZ).$(PYTHON3_PYTZ_SUFFIX) PYTHON3_PYTZ_SOURCE := $(SRCDIR)/$(PYTHON3_PYTZ).$(PYTHON3_PYTZ_SUFFIX) PYTHON3_PYTZ_DIR := $(BUILDDIR)/$(PYTHON3_PYTZ) PYTHON3_PYTZ_LICENSE := MIT -- 2.28.0 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 4+ messages in thread
* [ptxdist] [PATCH 2/3] python3-sqlparse: new package 2020-09-17 12:25 [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 Bastian Krause @ 2020-09-17 12:25 ` Bastian Krause 2020-09-17 12:25 ` [ptxdist] [PATCH 3/3] python3-django: version bump 1.8.7 -> 2.2.16 Bastian Krause 2020-09-21 10:20 ` [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 Bastian Krause 2 siblings, 0 replies; 4+ messages in thread From: Bastian Krause @ 2020-09-17 12:25 UTC (permalink / raw) To: ptxdist; +Cc: Bastian Krause python3-django requires this since version 2.2 . Signed-off-by: Bastian Krause <bst@pengutronix.de> --- rules/python3-sqlparse.in | 8 ++++++ rules/python3-sqlparse.make | 52 +++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 rules/python3-sqlparse.in create mode 100644 rules/python3-sqlparse.make diff --git a/rules/python3-sqlparse.in b/rules/python3-sqlparse.in new file mode 100644 index 000000000..17b4097ba --- /dev/null +++ b/rules/python3-sqlparse.in @@ -0,0 +1,8 @@ +## SECTION=python3 + +config PYTHON3_SQLPARSE + tristate + select PYTHON3 + prompt "sqlparse" + help + Non-validating SQL parser for Python diff --git a/rules/python3-sqlparse.make b/rules/python3-sqlparse.make new file mode 100644 index 000000000..98f74ef45 --- /dev/null +++ b/rules/python3-sqlparse.make @@ -0,0 +1,52 @@ +# -*-makefile-*- +# +# Copyright (C) 2020 by Bastian Krause <bst@pengutronix.de> +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +PACKAGES-$(PTXCONF_PYTHON3_SQLPARSE) += python3-sqlparse + +# +# Paths and names +# +PYTHON3_SQLPARSE_VERSION := 0.3.1 +PYTHON3_SQLPARSE_MD5 := 423047887a3590b04dd18f8caf843a2f +PYTHON3_SQLPARSE := sqlparse-$(PYTHON3_SQLPARSE_VERSION) +PYTHON3_SQLPARSE_SUFFIX := tar.gz +PYTHON3_SQLPARSE_URL := https://files.pythonhosted.org/packages/67/4b/253b6902c1526885af6d361ca8c6b1400292e649f0e9c95ee0d2e8ec8681/$(PYTHON3_SQLPARSE).$(PYTHON3_SQLPARSE_SUFFIX) +PYTHON3_SQLPARSE_SOURCE := $(SRCDIR)/$(PYTHON3_SQLPARSE).$(PYTHON3_SQLPARSE_SUFFIX) +PYTHON3_SQLPARSE_DIR := $(BUILDDIR)/$(PYTHON3_SQLPARSE) +PYTHON3_SQLPARSE_LICENSE := BSD-3-Clause + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +PYTHON3_SQLPARSE_CONF_TOOL := python3 + +# ---------------------------------------------------------------------------- +# Target-Install +# ---------------------------------------------------------------------------- + +$(STATEDIR)/python3-sqlparse.targetinstall: + @$(call targetinfo) + + @$(call install_init, python3-sqlparse) + @$(call install_fixup, python3-sqlparse, PRIORITY, optional) + @$(call install_fixup, python3-sqlparse, SECTION, base) + @$(call install_fixup, python3-sqlparse, AUTHOR, "Bastian Krause <bst@pengutronix.de>") + @$(call install_fixup, python3-sqlparse, DESCRIPTION, missing) + + @$(call install_glob, python3-sqlparse, 0, 0, -, \ + $(PYTHON3_SITEPACKAGES),, *.py) + + @$(call install_finish, python3-sqlparse) + + @$(call touch) + +# vim: syntax=make -- 2.28.0 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 4+ messages in thread
* [ptxdist] [PATCH 3/3] python3-django: version bump 1.8.7 -> 2.2.16 2020-09-17 12:25 [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 Bastian Krause 2020-09-17 12:25 ` [ptxdist] [PATCH 2/3] python3-sqlparse: new package Bastian Krause @ 2020-09-17 12:25 ` Bastian Krause 2020-09-21 10:20 ` [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 Bastian Krause 2 siblings, 0 replies; 4+ messages in thread From: Bastian Krause @ 2020-09-17 12:25 UTC (permalink / raw) To: ptxdist; +Cc: Bastian Krause This is the latest LTS version. Signed-off-by: Bastian Krause <bst@pengutronix.de> --- rules/python3-django.in | 3 +++ rules/python3-django.make | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/rules/python3-django.in b/rules/python3-django.in index 0475108bd..e55bfa582 100644 --- a/rules/python3-django.in +++ b/rules/python3-django.in @@ -3,6 +3,9 @@ menuconfig PYTHON3_DJANGO tristate select PYTHON3 + select PYTHON3_DISTUTILS if RUNTIME + select PYTHON3_PYTZ if RUNTIME + select PYTHON3_SQLPARSE if RUNTIME prompt "django " help Django is a high-level Python Web framework that encourages rapid diff --git a/rules/python3-django.make b/rules/python3-django.make index ffc73a4b8..64dc291ad 100644 --- a/rules/python3-django.make +++ b/rules/python3-django.make @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_PYTHON3_DJANGO) += python3-django # # Paths and names # -PYTHON3_DJANGO_VERSION := 1.8.7 -PYTHON3_DJANGO_MD5 := 44c01355b5efa01938a89b8bd798b1ed +PYTHON3_DJANGO_VERSION := 2.2.16 +PYTHON3_DJANGO_MD5 := 93faf5bbd54a19ea49f4932a813b9758 PYTHON3_DJANGO := Django-$(PYTHON3_DJANGO_VERSION) PYTHON3_DJANGO_SUFFIX := tar.gz PYTHON3_DJANGO_URL := https://www.djangoproject.com/download/$(PYTHON3_DJANGO_VERSION)/tarball/ -- 2.28.0 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 2020-09-17 12:25 [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 Bastian Krause 2020-09-17 12:25 ` [ptxdist] [PATCH 2/3] python3-sqlparse: new package Bastian Krause 2020-09-17 12:25 ` [ptxdist] [PATCH 3/3] python3-django: version bump 1.8.7 -> 2.2.16 Bastian Krause @ 2020-09-21 10:20 ` Bastian Krause 2 siblings, 0 replies; 4+ messages in thread From: Bastian Krause @ 2020-09-21 10:20 UTC (permalink / raw) To: ptxdist On 9/17/20 2:25 PM, Bastian Krause wrote: > Signed-off-by: Bastian Krause <bst@pengutronix.de> > --- > rules/python3-pytz.make | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) Please drop this series, I'll send a series including the pypi mirror macro. Regards, Bastian > > diff --git a/rules/python3-pytz.make b/rules/python3-pytz.make > index bf7bb982a..29d525dd9 100644 > --- a/rules/python3-pytz.make > +++ b/rules/python3-pytz.make > @@ -11,11 +11,11 @@ > # > PACKAGES-$(PTXCONF_PYTHON3_PYTZ) += python3-pytz > > -PYTHON3_PYTZ_VERSION := 2018.5 > -PYTHON3_PYTZ_MD5 := 45409cbfa3927bdd2f3ee914dd5b1060 > +PYTHON3_PYTZ_VERSION := 2020.1 > +PYTHON3_PYTZ_MD5 := 0349106ac02f2bfe565dd6d5594e3a15 > PYTHON3_PYTZ := pytz-$(PYTHON3_PYTZ_VERSION) > PYTHON3_PYTZ_SUFFIX := tar.gz > -PYTHON3_PYTZ_URL := https://pypi.python.org/packages/ca/a9/62f96decb1e309d6300ebe7eee9acfd7bccaeedd693794437005b9067b44/$(PYTHON3_PYTZ).$(PYTHON3_PYTZ_SUFFIX)\#md5=$(PYTHON3_PYTZ_MD5) > +PYTHON3_PYTZ_URL := https://files.pythonhosted.org/packages/f4/f6/94fee50f4d54f58637d4b9987a1b862aeb6cd969e73623e02c5c00755577/$(PYTHON3_PYTZ).$(PYTHON3_PYTZ_SUFFIX) > PYTHON3_PYTZ_SOURCE := $(SRCDIR)/$(PYTHON3_PYTZ).$(PYTHON3_PYTZ_SUFFIX) > PYTHON3_PYTZ_DIR := $(BUILDDIR)/$(PYTHON3_PYTZ) > PYTHON3_PYTZ_LICENSE := MIT > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-09-21 10:20 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2020-09-17 12:25 [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 Bastian Krause 2020-09-17 12:25 ` [ptxdist] [PATCH 2/3] python3-sqlparse: new package Bastian Krause 2020-09-17 12:25 ` [ptxdist] [PATCH 3/3] python3-django: version bump 1.8.7 -> 2.2.16 Bastian Krause 2020-09-21 10:20 ` [ptxdist] [PATCH 1/3] python3-pytz: version bump 2018.5 -> 2020.1 Bastian Krause
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox