mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 0/6] python3-aiohttp version bump to 3.8.1
@ 2022-06-20  8:41 Enrico Jorns
  2022-06-20  8:41 ` [ptxdist] [PATCH 1/6] python3-charset-normalizer: new package Enrico Jorns
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Enrico Jorns @ 2022-06-20  8:41 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo

This updates python3-aiohttp to 3.8.1 and adds / updates required
dependencies.

See install_requires in [options] section of aiohttp's setup.cf:

| install_requires =
|         attrs >= 17.3.0
|         charset-normalizer >=2.0, < 3.0
|         multidict >=4.5, < 7.0
|         async_timeout >= 4.0.0a3, < 5.0
|         asynctest == 0.13.0; python_version<"3.8"
|         yarl >= 1.0, < 2.0
|         idna-ssl >= 1.0; python_version<"3.7"
|         typing_extensions >= 3.7.4; python_version<"3.8"
|         frozenlist >= 1.1.1
|         aiosignal >= 1.1.2

Enrico Jorns (6):
  python3-charset-normalizer: new package
  python3-async-timeout.make: version bump 3.0.1 -> 4.0.2
  python3-idna-ssl: new package
  python3-frozenlist: new package
  python3-aiosignal: new package
  python3-aiohttp: version bump 3.6.1 -> 3.8.1

 rules/python3-aiohttp.in              |  3 ++
 rules/python3-aiohttp.make            |  4 +-
 rules/python3-aiosignal.in            |  9 +++++
 rules/python3-aiosignal.make          | 52 ++++++++++++++++++++++++++
 rules/python3-async-timeout.make      |  4 +-
 rules/python3-charset-normalizer.in   |  8 ++++
 rules/python3-charset-normalizer.make | 52 ++++++++++++++++++++++++++
 rules/python3-frozenlist.in           |  9 +++++
 rules/python3-frozenlist.make         | 52 ++++++++++++++++++++++++++
 rules/python3-idna-ssl.in             |  8 ++++
 rules/python3-idna-ssl.make           | 53 +++++++++++++++++++++++++++
 11 files changed, 250 insertions(+), 4 deletions(-)
 create mode 100644 rules/python3-aiosignal.in
 create mode 100644 rules/python3-aiosignal.make
 create mode 100644 rules/python3-charset-normalizer.in
 create mode 100644 rules/python3-charset-normalizer.make
 create mode 100644 rules/python3-frozenlist.in
 create mode 100644 rules/python3-frozenlist.make
 create mode 100644 rules/python3-idna-ssl.in
 create mode 100644 rules/python3-idna-ssl.make

-- 
2.30.2




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ptxdist] [PATCH 1/6] python3-charset-normalizer: new package
  2022-06-20  8:41 [ptxdist] [PATCH 0/6] python3-aiohttp version bump to 3.8.1 Enrico Jorns
@ 2022-06-20  8:41 ` Enrico Jorns
  2022-06-24  5:09   ` Michael Olbrich
  2022-06-20  8:41 ` [ptxdist] [PATCH 2/6] python3-async-timeout.make: version bump 3.0.1 -> 4.0.2 Enrico Jorns
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Enrico Jorns @ 2022-06-20  8:41 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo

Requirement for newer python3-aiohttp.

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
---
 rules/python3-charset-normalizer.in   |  8 +++++
 rules/python3-charset-normalizer.make | 52 +++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)
 create mode 100644 rules/python3-charset-normalizer.in
 create mode 100644 rules/python3-charset-normalizer.make

diff --git a/rules/python3-charset-normalizer.in b/rules/python3-charset-normalizer.in
new file mode 100644
index 000000000..58167da25
--- /dev/null
+++ b/rules/python3-charset-normalizer.in
@@ -0,0 +1,8 @@
+## SECTION=python3
+
+config PYTHON3_CHARSET_NORMALIZER
+	tristate
+	select PYTHON3
+	prompt "charset-normalizer"
+	help
+	  Truly universal encoding detector in pure Python
diff --git a/rules/python3-charset-normalizer.make b/rules/python3-charset-normalizer.make
new file mode 100644
index 000000000..e207305d7
--- /dev/null
+++ b/rules/python3-charset-normalizer.make
@@ -0,0 +1,52 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2022 by Enrico Jorns <e.joerns@pengutronix.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_CHARSET_NORMALIZER) += python3-charset-normalizer
+
+#
+# Paths and names
+#
+PYTHON3_CHARSET_NORMALIZER_VERSION	:= 2.0.12
+PYTHON3_CHARSET_NORMALIZER_MD5		:= f6664e0e90dbb3cc9cfc154a980f9864
+PYTHON3_CHARSET_NORMALIZER		:= charset-normalizer-$(PYTHON3_CHARSET_NORMALIZER_VERSION)
+PYTHON3_CHARSET_NORMALIZER_SUFFIX	:= tar.gz
+PYTHON3_CHARSET_NORMALIZER_URL		:= $(call ptx/mirror-pypi, charset-normalizer, $(PYTHON3_CHARSET_NORMALIZER).$(PYTHON3_CHARSET_NORMALIZER_SUFFIX))
+PYTHON3_CHARSET_NORMALIZER_SOURCE	:= $(SRCDIR)/$(PYTHON3_CHARSET_NORMALIZER).$(PYTHON3_CHARSET_NORMALIZER_SUFFIX)
+PYTHON3_CHARSET_NORMALIZER_DIR		:= $(BUILDDIR)/$(PYTHON3_CHARSET_NORMALIZER)
+PYTHON3_CHARSET_NORMALIZER_LICENSE	:= MIT
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_CHARSET_NORMALIZER_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-charset-normalizer.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-charset-normalizer)
+	@$(call install_fixup, python3-charset-normalizer,PRIORITY,optional)
+	@$(call install_fixup, python3-charset-normalizer,SECTION,base)
+	@$(call install_fixup, python3-charset-normalizer,AUTHOR,"Enrico Jorns <e.joerns@pengutronix.de>")
+	@$(call install_fixup, python3-charset-normalizer,DESCRIPTION,"Truly universal encoding detector in pure Python")
+
+	@$(call install_glob, python3-charset-normalizer, 0, 0, -, \
+		$(PYTHON3_SITEPACKAGES),, *.py)
+
+	@$(call install_finish, python3-charset-normalizer)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.30.2




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ptxdist] [PATCH 2/6] python3-async-timeout.make: version bump 3.0.1 -> 4.0.2
  2022-06-20  8:41 [ptxdist] [PATCH 0/6] python3-aiohttp version bump to 3.8.1 Enrico Jorns
  2022-06-20  8:41 ` [ptxdist] [PATCH 1/6] python3-charset-normalizer: new package Enrico Jorns
@ 2022-06-20  8:41 ` Enrico Jorns
  2022-06-20  8:41 ` [ptxdist] [PATCH 3/6] python3-idna-ssl: new package Enrico Jorns
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Enrico Jorns @ 2022-06-20  8:41 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo

Requirement for newer python3-aiohttp.

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
---
 rules/python3-async-timeout.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/python3-async-timeout.make b/rules/python3-async-timeout.make
index 38a751ed4..fe773876e 100644
--- a/rules/python3-async-timeout.make
+++ b/rules/python3-async-timeout.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_PYTHON3_ASYNC_TIMEOUT) += python3-async-timeout
 #
 # Paths and names
 #
-PYTHON3_ASYNC_TIMEOUT_VERSION	:= 3.0.1
-PYTHON3_ASYNC_TIMEOUT_MD5	:= 305c4fa529f2485c403d0dbe14390175
+PYTHON3_ASYNC_TIMEOUT_VERSION	:= 4.0.2
+PYTHON3_ASYNC_TIMEOUT_MD5	:= 10571272b2e0fab839ec23f8293bf482
 PYTHON3_ASYNC_TIMEOUT		:= async-timeout-$(PYTHON3_ASYNC_TIMEOUT_VERSION)
 PYTHON3_ASYNC_TIMEOUT_SUFFIX	:= tar.gz
 PYTHON3_ASYNC_TIMEOUT_URL	:= $(call ptx/mirror-pypi, async-timeout, $(PYTHON3_ASYNC_TIMEOUT).$(PYTHON3_ASYNC_TIMEOUT_SUFFIX))
-- 
2.30.2




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ptxdist] [PATCH 3/6] python3-idna-ssl: new package
  2022-06-20  8:41 [ptxdist] [PATCH 0/6] python3-aiohttp version bump to 3.8.1 Enrico Jorns
  2022-06-20  8:41 ` [ptxdist] [PATCH 1/6] python3-charset-normalizer: new package Enrico Jorns
  2022-06-20  8:41 ` [ptxdist] [PATCH 2/6] python3-async-timeout.make: version bump 3.0.1 -> 4.0.2 Enrico Jorns
@ 2022-06-20  8:41 ` Enrico Jorns
  2022-06-24  5:10   ` Michael Olbrich
  2022-06-20  8:41 ` [ptxdist] [PATCH 4/6] python3-frozenlist: " Enrico Jorns
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Enrico Jorns @ 2022-06-20  8:41 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo

Requirement for newer python3-aiohttp.

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
---
 rules/python3-idna-ssl.in   |  8 ++++++
 rules/python3-idna-ssl.make | 53 +++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 rules/python3-idna-ssl.in
 create mode 100644 rules/python3-idna-ssl.make

diff --git a/rules/python3-idna-ssl.in b/rules/python3-idna-ssl.in
new file mode 100644
index 000000000..1c1469294
--- /dev/null
+++ b/rules/python3-idna-ssl.in
@@ -0,0 +1,8 @@
+## SECTION=python3
+
+config PYTHON3_IDNA_SSL
+	tristate
+	select PYTHON3
+	prompt "python3-idna-ssl"
+	help
+	  Patch ssl.match_hostname for Unicode(idna) domains support
diff --git a/rules/python3-idna-ssl.make b/rules/python3-idna-ssl.make
new file mode 100644
index 000000000..10bc58edd
--- /dev/null
+++ b/rules/python3-idna-ssl.make
@@ -0,0 +1,53 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2022 by Enrico Joerns <e.joerns@pengutronix.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_IDNA_SSL) += python3-idna-ssl
+
+#
+# Paths and names
+#
+PYTHON3_IDNA_SSL_VERSION	:= 1.1.0
+PYTHON3_IDNA_SSL_MD5		:= dd44ec53bac36e68446766fd8d3835bd
+PYTHON3_IDNA_SSL		:= idna-ssl-$(PYTHON3_IDNA_SSL_VERSION)
+PYTHON3_IDNA_SSL_SUFFIX		:= tar.gz
+PYTHON3_IDNA_SSL_URL		:= https://pypi.python.org/packages/source/i/idna_ssl/$(PYTHON3_IDNA_SSL).$(PYTHON3_IDNA_SSL_SUFFIX)
+PYTHON3_IDNA_SSL_SOURCE		:= $(SRCDIR)/$(PYTHON3_IDNA_SSL).$(PYTHON3_IDNA_SSL_SUFFIX)
+PYTHON3_IDNA_SSL_DIR		:= $(BUILDDIR)/$(PYTHON3_IDNA_SSL)
+PYTHON3_IDNA_SSL_LICENSE	:= MIT
+PYTHON3_ATTRS_LICENSE_FILES := \
+	file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff
+
+# ----------------------------------------------------------------------------
+# Get
+# ----------------------------------------------------------------------------
+
+PYTHON3_IDNA_SSL_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-idna-ssl.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-idna-ssl)
+	@$(call install_fixup, python3-idna-ssl,PRIORITY,optional)
+	@$(call install_fixup, python3-idna-ssl,SECTION,base)
+	@$(call install_fixup, python3-idna-ssl,AUTHOR,"Enrico Joerns <e.joerns@pengutronix.de>")
+	@$(call install_fixup, python3-idna-ssl,DESCRIPTION,missing)
+
+	@$(call install_copy, python3-idna-ssl, 0, 0, 0755, -, /usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages/idna_ssl.py)
+
+	@$(call install_finish, python3-idna-ssl)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.30.2




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ptxdist] [PATCH 4/6] python3-frozenlist: new package
  2022-06-20  8:41 [ptxdist] [PATCH 0/6] python3-aiohttp version bump to 3.8.1 Enrico Jorns
                   ` (2 preceding siblings ...)
  2022-06-20  8:41 ` [ptxdist] [PATCH 3/6] python3-idna-ssl: new package Enrico Jorns
@ 2022-06-20  8:41 ` Enrico Jorns
  2022-06-20  8:41 ` [ptxdist] [PATCH 5/6] python3-aiosignal: " Enrico Jorns
  2022-06-20  8:41 ` [ptxdist] [PATCH 6/6] python3-aiohttp: version bump 3.6.1 -> 3.8.1 Enrico Jorns
  5 siblings, 0 replies; 10+ messages in thread
From: Enrico Jorns @ 2022-06-20  8:41 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo

Requirement for python3-aiosignal.

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
---
 rules/python3-frozenlist.in   |  9 ++++++
 rules/python3-frozenlist.make | 52 +++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 rules/python3-frozenlist.in
 create mode 100644 rules/python3-frozenlist.make

diff --git a/rules/python3-frozenlist.in b/rules/python3-frozenlist.in
new file mode 100644
index 000000000..15cb97d6b
--- /dev/null
+++ b/rules/python3-frozenlist.in
@@ -0,0 +1,9 @@
+## SECTION=python3
+
+config PYTHON3_FROZENLIST
+	tristate
+	select PYTHON3
+	prompt "frozenlist"
+	help
+	  A list-like structure which implements
+	  collections.abc.MutableSequence, and which can be made immutable.
diff --git a/rules/python3-frozenlist.make b/rules/python3-frozenlist.make
new file mode 100644
index 000000000..e21198799
--- /dev/null
+++ b/rules/python3-frozenlist.make
@@ -0,0 +1,52 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2022 by Enrico Jorns <e.joerns@pengutronix.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_FROZENLIST) += python3-frozenlist
+
+#
+# Paths and names
+#
+PYTHON3_FROZENLIST_VERSION	:= 1.3.0
+PYTHON3_FROZENLIST_MD5		:= e65d870bd189ba3c21ab7eb10eab22b7
+PYTHON3_FROZENLIST		:= frozenlist-$(PYTHON3_FROZENLIST_VERSION)
+PYTHON3_FROZENLIST_SUFFIX	:= tar.gz
+PYTHON3_FROZENLIST_URL		:= $(call ptx/mirror-pypi, frozenlist, $(PYTHON3_FROZENLIST).$(PYTHON3_FROZENLIST_SUFFIX))
+PYTHON3_FROZENLIST_SOURCE	:= $(SRCDIR)/$(PYTHON3_FROZENLIST).$(PYTHON3_FROZENLIST_SUFFIX)
+PYTHON3_FROZENLIST_DIR		:= $(BUILDDIR)/$(PYTHON3_FROZENLIST)
+PYTHON3_FROZENLIST_LICENSE	:= Apache-2.0
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_FROZENLIST_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-frozenlist.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-frozenlist)
+	@$(call install_fixup, python3-frozenlist,PRIORITY,optional)
+	@$(call install_fixup, python3-frozenlist,SECTION,base)
+	@$(call install_fixup, python3-frozenlist,AUTHOR,"Enrico Jorns <e.joerns@pengutronix.de>")
+	@$(call install_fixup, python3-frozenlist,DESCRIPTION,missing)
+
+	@$(call install_glob, python3-frozenlist, 0, 0, -, \
+		$(PYTHON3_SITEPACKAGES),, *.py)
+
+	@$(call install_finish, python3-frozenlist)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.30.2




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ptxdist] [PATCH 5/6] python3-aiosignal: new package
  2022-06-20  8:41 [ptxdist] [PATCH 0/6] python3-aiohttp version bump to 3.8.1 Enrico Jorns
                   ` (3 preceding siblings ...)
  2022-06-20  8:41 ` [ptxdist] [PATCH 4/6] python3-frozenlist: " Enrico Jorns
@ 2022-06-20  8:41 ` Enrico Jorns
  2022-06-20  8:41 ` [ptxdist] [PATCH 6/6] python3-aiohttp: version bump 3.6.1 -> 3.8.1 Enrico Jorns
  5 siblings, 0 replies; 10+ messages in thread
From: Enrico Jorns @ 2022-06-20  8:41 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo

Requirement for newer python3-aiohttp.

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
---
 rules/python3-aiosignal.in   |  9 +++++++
 rules/python3-aiosignal.make | 52 ++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 rules/python3-aiosignal.in
 create mode 100644 rules/python3-aiosignal.make

diff --git a/rules/python3-aiosignal.in b/rules/python3-aiosignal.in
new file mode 100644
index 000000000..15ed37188
--- /dev/null
+++ b/rules/python3-aiosignal.in
@@ -0,0 +1,9 @@
+## SECTION=python3
+
+config PYTHON3_AIOSIGNAL
+	tristate
+	select PYTHON3
+	select PYTHON3_FROZENLIST	if RUNTIME
+	prompt "aiosignal"
+	help
+	  A project to manage callbacks in asyncio projects
diff --git a/rules/python3-aiosignal.make b/rules/python3-aiosignal.make
new file mode 100644
index 000000000..90309ba4f
--- /dev/null
+++ b/rules/python3-aiosignal.make
@@ -0,0 +1,52 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2022 by Enrico Jorns <e.joern@pengutronix.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_AIOSIGNAL) += python3-aiosignal
+
+#
+# Paths and names
+#
+PYTHON3_AIOSIGNAL_VERSION	:= 1.2.0
+PYTHON3_AIOSIGNAL_MD5		:= 011700c3acc576a3a38deade6a4860cb
+PYTHON3_AIOSIGNAL		:= aiosignal-$(PYTHON3_AIOSIGNAL_VERSION)
+PYTHON3_AIOSIGNAL_SUFFIX	:= tar.gz
+PYTHON3_AIOSIGNAL_URL		:= $(call ptx/mirror-pypi, aiosignal, $(PYTHON3_AIOSIGNAL).$(PYTHON3_AIOSIGNAL_SUFFIX))
+PYTHON3_AIOSIGNAL_SOURCE	:= $(SRCDIR)/$(PYTHON3_AIOSIGNAL).$(PYTHON3_AIOSIGNAL_SUFFIX)
+PYTHON3_AIOSIGNAL_DIR		:= $(BUILDDIR)/$(PYTHON3_AIOSIGNAL)
+PYTHON3_AIOSIGNAL_LICENSE	:= Apache-2.0
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_AIOSIGNAL_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-aiosignal.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-aiosignal)
+	@$(call install_fixup, python3-aiosignal,PRIORITY,optional)
+	@$(call install_fixup, python3-aiosignal,SECTION,base)
+	@$(call install_fixup, python3-aiosignal,AUTHOR,"Enrico Jorns <e.joern@pengutronix.de>")
+	@$(call install_fixup, python3-aiosignal,DESCRIPTION,"A project to manage callbacks in asyncio projects")
+
+	@$(call install_glob, python3-aiosignal, 0, 0, -, \
+		$(PYTHON3_SITEPACKAGES),, *.py)
+
+	@$(call install_finish, python3-aiosignal)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.30.2




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ptxdist] [PATCH 6/6] python3-aiohttp: version bump 3.6.1 -> 3.8.1
  2022-06-20  8:41 [ptxdist] [PATCH 0/6] python3-aiohttp version bump to 3.8.1 Enrico Jorns
                   ` (4 preceding siblings ...)
  2022-06-20  8:41 ` [ptxdist] [PATCH 5/6] python3-aiosignal: " Enrico Jorns
@ 2022-06-20  8:41 ` Enrico Jorns
  5 siblings, 0 replies; 10+ messages in thread
From: Enrico Jorns @ 2022-06-20  8:41 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
---
 rules/python3-aiohttp.in   | 3 +++
 rules/python3-aiohttp.make | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/rules/python3-aiohttp.in b/rules/python3-aiohttp.in
index 6e9d4a2db..333d78e58 100644
--- a/rules/python3-aiohttp.in
+++ b/rules/python3-aiohttp.in
@@ -9,6 +9,9 @@ config PYTHON3_AIOHTTP
 	select PYTHON3_YARL		if RUNTIME
 	select PYTHON3_ASYNC_TIMEOUT	if RUNTIME
 	select PYTHON3_ATTRS		if RUNTIME
+	select PYTHON3_IDNA_SSL		if RUNTIME
+	select PYTHON3_CHARSET_NORMALIZER	if RUNTIME
+	select PYTHON3_AIOSIGNAL	if RUNTIME
 	prompt "aiohttp"
 	help
 	  http client/server for asyncio
diff --git a/rules/python3-aiohttp.make b/rules/python3-aiohttp.make
index 7ced97fd3..64bd6b0e8 100644
--- a/rules/python3-aiohttp.make
+++ b/rules/python3-aiohttp.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_PYTHON3_AIOHTTP) += python3-aiohttp
 #
 # Paths and names
 #
-PYTHON3_AIOHTTP_VERSION	:= 3.6.2
-PYTHON3_AIOHTTP_MD5	:= ca40144c199a09fc1a141960cf6295f0
+PYTHON3_AIOHTTP_VERSION	:= 3.8.1
+PYTHON3_AIOHTTP_MD5	:= faf7726dc65a940272874c0f441e8ec6
 PYTHON3_AIOHTTP		:= aiohttp-$(PYTHON3_AIOHTTP_VERSION)
 PYTHON3_AIOHTTP_SUFFIX	:= tar.gz
 PYTHON3_AIOHTTP_URL	:= $(call ptx/mirror-pypi, aiohttp, $(PYTHON3_AIOHTTP).$(PYTHON3_AIOHTTP_SUFFIX))
-- 
2.30.2




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [ptxdist] [PATCH 1/6] python3-charset-normalizer: new package
  2022-06-20  8:41 ` [ptxdist] [PATCH 1/6] python3-charset-normalizer: new package Enrico Jorns
@ 2022-06-24  5:09   ` Michael Olbrich
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Olbrich @ 2022-06-24  5:09 UTC (permalink / raw)
  To: Enrico Jorns; +Cc: ptxdist

On Mon, Jun 20, 2022 at 10:41:12AM +0200, Enrico Jorns wrote:
> Requirement for newer python3-aiohttp.
> 
> Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
> ---
>  rules/python3-charset-normalizer.in   |  8 +++++
>  rules/python3-charset-normalizer.make | 52 +++++++++++++++++++++++++++
>  2 files changed, 60 insertions(+)
>  create mode 100644 rules/python3-charset-normalizer.in
>  create mode 100644 rules/python3-charset-normalizer.make
> 
> diff --git a/rules/python3-charset-normalizer.in b/rules/python3-charset-normalizer.in
> new file mode 100644
> index 000000000..58167da25
> --- /dev/null
> +++ b/rules/python3-charset-normalizer.in
> @@ -0,0 +1,8 @@
> +## SECTION=python3
> +
> +config PYTHON3_CHARSET_NORMALIZER
> +	tristate
> +	select PYTHON3
> +	prompt "charset-normalizer"
> +	help
> +	  Truly universal encoding detector in pure Python
> diff --git a/rules/python3-charset-normalizer.make b/rules/python3-charset-normalizer.make
> new file mode 100644
> index 000000000..e207305d7
> --- /dev/null
> +++ b/rules/python3-charset-normalizer.make
> @@ -0,0 +1,52 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2022 by Enrico Jorns <e.joerns@pengutronix.de>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_PYTHON3_CHARSET_NORMALIZER) += python3-charset-normalizer
> +
> +#
> +# Paths and names
> +#
> +PYTHON3_CHARSET_NORMALIZER_VERSION	:= 2.0.12
> +PYTHON3_CHARSET_NORMALIZER_MD5		:= f6664e0e90dbb3cc9cfc154a980f9864
> +PYTHON3_CHARSET_NORMALIZER		:= charset-normalizer-$(PYTHON3_CHARSET_NORMALIZER_VERSION)
> +PYTHON3_CHARSET_NORMALIZER_SUFFIX	:= tar.gz
> +PYTHON3_CHARSET_NORMALIZER_URL		:= $(call ptx/mirror-pypi, charset-normalizer, $(PYTHON3_CHARSET_NORMALIZER).$(PYTHON3_CHARSET_NORMALIZER_SUFFIX))
> +PYTHON3_CHARSET_NORMALIZER_SOURCE	:= $(SRCDIR)/$(PYTHON3_CHARSET_NORMALIZER).$(PYTHON3_CHARSET_NORMALIZER_SUFFIX)
> +PYTHON3_CHARSET_NORMALIZER_DIR		:= $(BUILDDIR)/$(PYTHON3_CHARSET_NORMALIZER)
> +PYTHON3_CHARSET_NORMALIZER_LICENSE	:= MIT

Add PYTHON3_CHARSET_NORMALIZER_LICENSE_FILES as well please.

Michael

> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +PYTHON3_CHARSET_NORMALIZER_CONF_TOOL	:= python3
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/python3-charset-normalizer.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, python3-charset-normalizer)
> +	@$(call install_fixup, python3-charset-normalizer,PRIORITY,optional)
> +	@$(call install_fixup, python3-charset-normalizer,SECTION,base)
> +	@$(call install_fixup, python3-charset-normalizer,AUTHOR,"Enrico Jorns <e.joerns@pengutronix.de>")
> +	@$(call install_fixup, python3-charset-normalizer,DESCRIPTION,"Truly universal encoding detector in pure Python")
> +
> +	@$(call install_glob, python3-charset-normalizer, 0, 0, -, \
> +		$(PYTHON3_SITEPACKAGES),, *.py)
> +
> +	@$(call install_finish, python3-charset-normalizer)
> +
> +	@$(call touch)
> +
> +# vim: syntax=make
> -- 
> 2.30.2
> 
> 
> 

-- 
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 |



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [ptxdist] [PATCH 3/6] python3-idna-ssl: new package
  2022-06-20  8:41 ` [ptxdist] [PATCH 3/6] python3-idna-ssl: new package Enrico Jorns
@ 2022-06-24  5:10   ` Michael Olbrich
  2022-06-24 11:46     ` Enrico Jörns
  0 siblings, 1 reply; 10+ messages in thread
From: Michael Olbrich @ 2022-06-24  5:10 UTC (permalink / raw)
  To: Enrico Jorns; +Cc: ptxdist

On Mon, Jun 20, 2022 at 10:41:14AM +0200, Enrico Jorns wrote:
> Requirement for newer python3-aiohttp.
> 
> Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
> ---
>  rules/python3-idna-ssl.in   |  8 ++++++
>  rules/python3-idna-ssl.make | 53 +++++++++++++++++++++++++++++++++++++
>  2 files changed, 61 insertions(+)
>  create mode 100644 rules/python3-idna-ssl.in
>  create mode 100644 rules/python3-idna-ssl.make
> 
> diff --git a/rules/python3-idna-ssl.in b/rules/python3-idna-ssl.in
> new file mode 100644
> index 000000000..1c1469294
> --- /dev/null
> +++ b/rules/python3-idna-ssl.in
> @@ -0,0 +1,8 @@
> +## SECTION=python3
> +
> +config PYTHON3_IDNA_SSL
> +	tristate
> +	select PYTHON3
> +	prompt "python3-idna-ssl"
> +	help
> +	  Patch ssl.match_hostname for Unicode(idna) domains support
> diff --git a/rules/python3-idna-ssl.make b/rules/python3-idna-ssl.make
> new file mode 100644
> index 000000000..10bc58edd
> --- /dev/null
> +++ b/rules/python3-idna-ssl.make
> @@ -0,0 +1,53 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2022 by Enrico Joerns <e.joerns@pengutronix.de>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_PYTHON3_IDNA_SSL) += python3-idna-ssl
> +
> +#
> +# Paths and names
> +#
> +PYTHON3_IDNA_SSL_VERSION	:= 1.1.0
> +PYTHON3_IDNA_SSL_MD5		:= dd44ec53bac36e68446766fd8d3835bd
> +PYTHON3_IDNA_SSL		:= idna-ssl-$(PYTHON3_IDNA_SSL_VERSION)
> +PYTHON3_IDNA_SSL_SUFFIX		:= tar.gz
> +PYTHON3_IDNA_SSL_URL		:= https://pypi.python.org/packages/source/i/idna_ssl/$(PYTHON3_IDNA_SSL).$(PYTHON3_IDNA_SSL_SUFFIX)
> +PYTHON3_IDNA_SSL_SOURCE		:= $(SRCDIR)/$(PYTHON3_IDNA_SSL).$(PYTHON3_IDNA_SSL_SUFFIX)
> +PYTHON3_IDNA_SSL_DIR		:= $(BUILDDIR)/$(PYTHON3_IDNA_SSL)
> +PYTHON3_IDNA_SSL_LICENSE	:= MIT
> +PYTHON3_ATTRS_LICENSE_FILES := \
> +	file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff
> +
> +# ----------------------------------------------------------------------------
> +# Get
> +# ----------------------------------------------------------------------------
> +
> +PYTHON3_IDNA_SSL_CONF_TOOL	:= python3
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/python3-idna-ssl.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, python3-idna-ssl)
> +	@$(call install_fixup, python3-idna-ssl,PRIORITY,optional)
> +	@$(call install_fixup, python3-idna-ssl,SECTION,base)
> +	@$(call install_fixup, python3-idna-ssl,AUTHOR,"Enrico Joerns <e.joerns@pengutronix.de>")
> +	@$(call install_fixup, python3-idna-ssl,DESCRIPTION,missing)
> +
> +	@$(call install_copy, python3-idna-ssl, 0, 0, 0755, -, /usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages/idna_ssl.py)

0644, right? And break the line.

Michael

> +
> +	@$(call install_finish, python3-idna-ssl)
> +
> +	@$(call touch)
> +
> +# vim: syntax=make
> -- 
> 2.30.2
> 
> 
> 

-- 
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 |



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [ptxdist] [PATCH 3/6] python3-idna-ssl: new package
  2022-06-24  5:10   ` Michael Olbrich
@ 2022-06-24 11:46     ` Enrico Jörns
  0 siblings, 0 replies; 10+ messages in thread
From: Enrico Jörns @ 2022-06-24 11:46 UTC (permalink / raw)
  To: Michael Olbrich; +Cc: ptxdist

Am Freitag, dem 24.06.2022 um 07:10 +0200 schrieb Michael Olbrich:
> On Mon, Jun 20, 2022 at 10:41:14AM +0200, Enrico Jorns wrote:
> > Requirement for newer python3-aiohttp.
> > 
> > Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
> > ---
> >  rules/python3-idna-ssl.in   |  8 ++++++
> >  rules/python3-idna-ssl.make | 53 +++++++++++++++++++++++++++++++++++++
> >  2 files changed, 61 insertions(+)
> >  create mode 100644 rules/python3-idna-ssl.in
> >  create mode 100644 rules/python3-idna-ssl.make
> > 
> > diff --git a/rules/python3-idna-ssl.in b/rules/python3-idna-ssl.in
> > new file mode 100644
> > index 000000000..1c1469294
> > --- /dev/null
> > +++ b/rules/python3-idna-ssl.in
> > @@ -0,0 +1,8 @@
> > +## SECTION=python3
> > +
> > +config PYTHON3_IDNA_SSL
> > +	tristate
> > +	select PYTHON3
> > +	prompt "python3-idna-ssl"
> > +	help
> > +	  Patch ssl.match_hostname for Unicode(idna) domains support
> > diff --git a/rules/python3-idna-ssl.make b/rules/python3-idna-ssl.make
> > new file mode 100644
> > index 000000000..10bc58edd
> > --- /dev/null
> > +++ b/rules/python3-idna-ssl.make
> > @@ -0,0 +1,53 @@
> > +# -*-makefile-*-
> > +#
> > +# Copyright (C) 2022 by Enrico Joerns <e.joerns@pengutronix.de>
> > +#
> > +# For further information about the PTXdist project and license conditions
> > +# see the README file.
> > +#
> > +
> > +#
> > +# We provide this package
> > +#
> > +PACKAGES-$(PTXCONF_PYTHON3_IDNA_SSL) += python3-idna-ssl
> > +
> > +#
> > +# Paths and names
> > +#
> > +PYTHON3_IDNA_SSL_VERSION	:= 1.1.0
> > +PYTHON3_IDNA_SSL_MD5		:= dd44ec53bac36e68446766fd8d3835bd
> > +PYTHON3_IDNA_SSL		:= idna-ssl-$(PYTHON3_IDNA_SSL_VERSION)
> > +PYTHON3_IDNA_SSL_SUFFIX		:= tar.gz
> > +PYTHON3_IDNA_SSL_URL		:= https://pypi.python.org/packages/source/i/idna_ssl/$(PYTHON3_IDNA_SSL).$(PYTHON3_IDNA_SSL_SUFFIX)
> > +PYTHON3_IDNA_SSL_SOURCE		:= $(SRCDIR)/$(PYTHON3_IDNA_SSL).$(PYTHON3_IDNA_SSL_SUFFIX)
> > +PYTHON3_IDNA_SSL_DIR		:= $(BUILDDIR)/$(PYTHON3_IDNA_SSL)
> > +PYTHON3_IDNA_SSL_LICENSE	:= MIT
> > +PYTHON3_ATTRS_LICENSE_FILES := \
> > +	file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff
> > +
> > +# ----------------------------------------------------------------------------
> > +# Get
> > +# ----------------------------------------------------------------------------
> > +
> > +PYTHON3_IDNA_SSL_CONF_TOOL	:= python3
> > +
> > +# ----------------------------------------------------------------------------
> > +# Target-Install
> > +# ----------------------------------------------------------------------------
> > +
> > +$(STATEDIR)/python3-idna-ssl.targetinstall:
> > +	@$(call targetinfo)
> > +
> > +	@$(call install_init, python3-idna-ssl)
> > +	@$(call install_fixup, python3-idna-ssl,PRIORITY,optional)
> > +	@$(call install_fixup, python3-idna-ssl,SECTION,base)
> > +	@$(call install_fixup, python3-idna-ssl,AUTHOR,"Enrico Joerns <e.joerns@pengutronix.de>")
> > +	@$(call install_fixup, python3-idna-ssl,DESCRIPTION,missing)
> > +
> > +	@$(call install_copy, python3-idna-ssl, 0, 0, 0755, -, /usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages/idna_ssl.py)
> 
> 0644, right? And break the line.

Right, I've sent a v2.

Regards, Enrico

> 
> Michael
> 
> > +
> > +	@$(call install_finish, python3-idna-ssl)
> > +
> > +	@$(call touch)
> > +
> > +# vim: syntax=make
> > -- 
> > 2.30.2
> > 
> > 
> > 
> 

-- 
Pengutronix e.K.                           | Enrico Jörns                |
Embedded Linux Consulting & Support        | https://www.pengutronix.de/ |
Steuerwalder Str. 21                       | Phone: +49-5121-206917-180  |
31137 Hildesheim, Germany                  | Fax:   +49-5121-206917-9    |



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-06-24 11:47 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-20  8:41 [ptxdist] [PATCH 0/6] python3-aiohttp version bump to 3.8.1 Enrico Jorns
2022-06-20  8:41 ` [ptxdist] [PATCH 1/6] python3-charset-normalizer: new package Enrico Jorns
2022-06-24  5:09   ` Michael Olbrich
2022-06-20  8:41 ` [ptxdist] [PATCH 2/6] python3-async-timeout.make: version bump 3.0.1 -> 4.0.2 Enrico Jorns
2022-06-20  8:41 ` [ptxdist] [PATCH 3/6] python3-idna-ssl: new package Enrico Jorns
2022-06-24  5:10   ` Michael Olbrich
2022-06-24 11:46     ` Enrico Jörns
2022-06-20  8:41 ` [ptxdist] [PATCH 4/6] python3-frozenlist: " Enrico Jorns
2022-06-20  8:41 ` [ptxdist] [PATCH 5/6] python3-aiosignal: " Enrico Jorns
2022-06-20  8:41 ` [ptxdist] [PATCH 6/6] python3-aiohttp: version bump 3.6.1 -> 3.8.1 Enrico Jorns

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox