mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/4] python3-async-timeout: new package
@ 2018-01-29 15:42 Bastian Stender
  2018-01-29 15:42 ` [ptxdist] [PATCH 2/4] python3-multidict: " Bastian Stender
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bastian Stender @ 2018-01-29 15:42 UTC (permalink / raw)
  To: ptxdist; +Cc: Pim Klanke

From: Pim Klanke <pim@protonic.nl>

Signed-off-by: Pim Klanke <pim@protonic.nl>
---
 rules/python3-async-timeout.in   |  9 +++++++
 rules/python3-async-timeout.make | 54 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)
 create mode 100644 rules/python3-async-timeout.in
 create mode 100644 rules/python3-async-timeout.make

diff --git a/rules/python3-async-timeout.in b/rules/python3-async-timeout.in
new file mode 100644
index 000000000..257a77902
--- /dev/null
+++ b/rules/python3-async-timeout.in
@@ -0,0 +1,9 @@
+## SECTION=python3
+
+config PYTHON3_ASYNC_TIMEOUT
+	tristate
+	select PYTHON3
+	select HOST_PYTHON3_SETUPTOOLS
+	prompt "async-timeout"
+	help
+	  asyncio-compatible timeout class
diff --git a/rules/python3-async-timeout.make b/rules/python3-async-timeout.make
new file mode 100644
index 000000000..38743b5c3
--- /dev/null
+++ b/rules/python3-async-timeout.make
@@ -0,0 +1,54 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Pim Klanke <pim@protonic.nl>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_ASYNC_TIMEOUT) += python3-async-timeout
+
+#
+# Paths and names
+#
+PYTHON3_ASYNC_TIMEOUT_VERSION	:= 2.0.0
+PYTHON3_ASYNC_TIMEOUT_MD5	:= 36e75397e54c6b899ffabdfe295a9f7c
+PYTHON3_ASYNC_TIMEOUT		:= async-timeout-$(PYTHON3_ASYNC_TIMEOUT_VERSION)
+PYTHON3_ASYNC_TIMEOUT_SUFFIX	:= tar.gz
+PYTHON3_ASYNC_TIMEOUT_URL	:= https://pypi.python.org/packages/78/10/7fd2551dc51f6065bdbba07d395865df4582cc18169297e7a5c8d90f5bd2/$(PYTHON3_ASYNC_TIMEOUT).$(PYTHON3_ASYNC_TIMEOUT_SUFFIX)
+PYTHON3_ASYNC_TIMEOUT_SOURCE	:= $(SRCDIR)/$(PYTHON3_ASYNC_TIMEOUT).$(PYTHON3_ASYNC_TIMEOUT_SUFFIX)
+PYTHON3_ASYNC_TIMEOUT_DIR	:= $(BUILDDIR)/$(PYTHON3_ASYNC_TIMEOUT)
+PYTHON3_ASYNC_TIMEOUT_LICENSE	:= Apache-2.0
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_ASYNC_TIMEOUT_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-async-timeout.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-async-timeout)
+	@$(call install_fixup, python3-async-timeout, PRIORITY, optional)
+	@$(call install_fixup, python3-async-timeout, SECTION, base)
+	@$(call install_fixup, python3-async-timeout, AUTHOR, "Pim Klanke <pim@protonic.nl>")
+	@$(call install_fixup, python3-async-timeout, DESCRIPTION, missing)
+
+	@$(call install_glob, python3-async-timeout, 0, 0, -, \
+		/usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages/async_timeout,, *.py)
+
+	@$(call install_finish, python3-async-timeout)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.15.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* [ptxdist] [PATCH 2/4] python3-multidict: new package
  2018-01-29 15:42 [ptxdist] [PATCH 1/4] python3-async-timeout: new package Bastian Stender
@ 2018-01-29 15:42 ` Bastian Stender
  2018-01-29 15:42 ` [ptxdist] [PATCH 3/4] python3-yarl: " Bastian Stender
  2018-01-29 15:42 ` [ptxdist] [PATCH 4/4] python3-aiohttp: version bump 0.21.4 -> 1.2.0 Bastian Stender
  2 siblings, 0 replies; 4+ messages in thread
From: Bastian Stender @ 2018-01-29 15:42 UTC (permalink / raw)
  To: ptxdist; +Cc: Pim Klanke

From: Pim Klanke <pim@protonic.nl>

Signed-off-by: Pim Klanke <pim@protonic.nl>
---
 rules/python3-multidict.in   | 10 ++++++++
 rules/python3-multidict.make | 54 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)
 create mode 100644 rules/python3-multidict.in
 create mode 100644 rules/python3-multidict.make

diff --git a/rules/python3-multidict.in b/rules/python3-multidict.in
new file mode 100644
index 000000000..9f10b462d
--- /dev/null
+++ b/rules/python3-multidict.in
@@ -0,0 +1,10 @@
+## SECTION=python3
+
+config PYTHON3_MULTIDICT
+	tristate
+	select HOST_PYTHON3_SETUPTOOLS
+	select PYTHON3
+	prompt "multidict"
+	help
+	  Multidict is a dict-like collection of key-value pairs where
+	  the key might occur more than once in the container.
diff --git a/rules/python3-multidict.make b/rules/python3-multidict.make
new file mode 100644
index 000000000..2f388aebc
--- /dev/null
+++ b/rules/python3-multidict.make
@@ -0,0 +1,54 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Pim Klanke <pim@protonic.nl>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_MULTIDICT) += python3-multidict
+
+#
+# Paths and names
+#
+PYTHON3_MULTIDICT_VERSION	:= 2.1.4
+PYTHON3_MULTIDICT_MD5		:= 051d92edec87fd98e43ea83f3ce6072d
+PYTHON3_MULTIDICT		:= multidict-$(PYTHON3_MULTIDICT_VERSION)
+PYTHON3_MULTIDICT_SUFFIX	:= tar.gz
+PYTHON3_MULTIDICT_URL		:= https://pypi.python.org/packages/2a/df/eaea73e46a58fd780c35ecc304ca42364fa3c1f4cd03568ed33b9d2c7547/$(PYTHON3_MULTIDICT).$(PYTHON3_MULTIDICT_SUFFIX)
+PYTHON3_MULTIDICT_SOURCE	:= $(SRCDIR)/$(PYTHON3_MULTIDICT).$(PYTHON3_MULTIDICT_SUFFIX)
+PYTHON3_MULTIDICT_DIR		:= $(BUILDDIR)/$(PYTHON3_MULTIDICT)
+PYTHON3_MULTIDICT_LICENSE	:= Apache-2.0
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_MULTIDICT_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-multidict.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-multidict)
+	@$(call install_fixup, python3-multidict, PRIORITY, optional)
+	@$(call install_fixup, python3-multidict, SECTION, base)
+	@$(call install_fixup, python3-multidict, AUTHOR, "Pim Klanke <pim@protonic.nl>")
+	@$(call install_fixup, python3-multidict, DESCRIPTION, missing)
+
+	@$(call install_glob, python3-multidict, 0, 0, -, \
+		/usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages/multidict,, *.py)
+
+	@$(call install_finish, python3-multidict)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.15.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* [ptxdist] [PATCH 3/4] python3-yarl: new package
  2018-01-29 15:42 [ptxdist] [PATCH 1/4] python3-async-timeout: new package Bastian Stender
  2018-01-29 15:42 ` [ptxdist] [PATCH 2/4] python3-multidict: " Bastian Stender
@ 2018-01-29 15:42 ` Bastian Stender
  2018-01-29 15:42 ` [ptxdist] [PATCH 4/4] python3-aiohttp: version bump 0.21.4 -> 1.2.0 Bastian Stender
  2 siblings, 0 replies; 4+ messages in thread
From: Bastian Stender @ 2018-01-29 15:42 UTC (permalink / raw)
  To: ptxdist; +Cc: Pim Klanke

From: Pim Klanke <pim@protonic.nl>

Signed-off-by: Pim Klanke <pim@protonic.nl>
---
 rules/python3-yarl.in   | 10 +++++++++
 rules/python3-yarl.make | 54 +++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)
 create mode 100644 rules/python3-yarl.in
 create mode 100644 rules/python3-yarl.make

diff --git a/rules/python3-yarl.in b/rules/python3-yarl.in
new file mode 100644
index 000000000..0728b7fbc
--- /dev/null
+++ b/rules/python3-yarl.in
@@ -0,0 +1,10 @@
+## SECTION=python3
+
+config PYTHON3_YARL
+	tristate
+	select HOST_PYTHON3_SETUPTOOLS
+	select PYTHON3
+	select PYTHON3_MULTIDICT
+	prompt "python3-yarl"
+	help
+	  Yet another URL library for Python
diff --git a/rules/python3-yarl.make b/rules/python3-yarl.make
new file mode 100644
index 000000000..4bbbe8315
--- /dev/null
+++ b/rules/python3-yarl.make
@@ -0,0 +1,54 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Pim Klanke <pim@protonic.nl>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_YARL) += python3-yarl
+
+#
+# Paths and names
+#
+PYTHON3_YARL_VERSION	:= 0.8.1
+PYTHON3_YARL_MD5	:= 34f60a148ab55e3bfde2c0efd7026308
+PYTHON3_YARL		:= yarl-$(PYTHON3_YARL_VERSION)
+PYTHON3_YARL_SUFFIX	:= tar.gz
+PYTHON3_YARL_URL	:= https://pypi.python.org/packages/10/1b/be30529bde22c85c2975a4e21cf7f13edbcb291350fbbde8bc13938620c8/$(PYTHON3_YARL).$(PYTHON3_YARL_SUFFIX)
+PYTHON3_YARL_SOURCE	:= $(SRCDIR)/$(PYTHON3_YARL).$(PYTHON3_YARL_SUFFIX)
+PYTHON3_YARL_DIR	:= $(BUILDDIR)/$(PYTHON3_YARL)
+PYTHON3_YARL_LICENSE	:= Apache-2.0
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_YARL_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-yarl.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-yarl)
+	@$(call install_fixup, python3-yarl, PRIORITY, optional)
+	@$(call install_fixup, python3-yarl, SECTION, base)
+	@$(call install_fixup, python3-yarl, AUTHOR, "Pim Klanke <pim@protonic.nl>")
+	@$(call install_fixup, python3-yarl, DESCRIPTION, missing)
+
+	@$(call install_glob, python3-yarl, 0, 0, -, \
+		/usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages/yarl,, *.py)
+
+	@$(call install_finish, python3-yarl)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.15.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* [ptxdist] [PATCH 4/4] python3-aiohttp: version bump 0.21.4 -> 1.2.0
  2018-01-29 15:42 [ptxdist] [PATCH 1/4] python3-async-timeout: new package Bastian Stender
  2018-01-29 15:42 ` [ptxdist] [PATCH 2/4] python3-multidict: " Bastian Stender
  2018-01-29 15:42 ` [ptxdist] [PATCH 3/4] python3-yarl: " Bastian Stender
@ 2018-01-29 15:42 ` Bastian Stender
  2 siblings, 0 replies; 4+ messages in thread
From: Bastian Stender @ 2018-01-29 15:42 UTC (permalink / raw)
  To: ptxdist; +Cc: Pim Klanke

From: Pim Klanke <pim@protonic.nl>

Signed-off-by: Pim Klanke <pim@protonic.nl>
---
 rules/python3-aiohttp.in   | 3 +++
 rules/python3-aiohttp.make | 6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/rules/python3-aiohttp.in b/rules/python3-aiohttp.in
index 6c04746ad..04651f339 100644
--- a/rules/python3-aiohttp.in
+++ b/rules/python3-aiohttp.in
@@ -7,6 +7,9 @@ config PYTHON3_AIOHTTP
 	select PYTHON3_ZLIB
 	select PYTHON3_SSL
 	select PYTHON3_CHARDET
+	select PYTHON3_MULTIDICT
+	select PYTHON3_YARL
+	select PYTHON3_ASYNC_TIMEOUT
 	prompt "aiohttp"
 	help
 	  http client/server for asyncio
diff --git a/rules/python3-aiohttp.make b/rules/python3-aiohttp.make
index 58ba1f6fe..bd80f4e56 100644
--- a/rules/python3-aiohttp.make
+++ b/rules/python3-aiohttp.make
@@ -16,11 +16,11 @@ PACKAGES-$(PTXCONF_PYTHON3_AIOHTTP) += python3-aiohttp
 #
 # Paths and names
 #
-PYTHON3_AIOHTTP_VERSION	:= 0.21.4
-PYTHON3_AIOHTTP_MD5	:= b6034dab19a414479c4e10161b8ab6d2
+PYTHON3_AIOHTTP_VERSION	:= 1.2.0
+PYTHON3_AIOHTTP_MD5	:= a7b25d51bf887ec4f9b87463a6bff6d4
 PYTHON3_AIOHTTP		:= aiohttp-$(PYTHON3_AIOHTTP_VERSION)
 PYTHON3_AIOHTTP_SUFFIX	:= tar.gz
-PYTHON3_AIOHTTP_URL	:= https://pypi.python.org/packages/source/a/aiohttp/$(PYTHON3_AIOHTTP).$(PYTHON3_AIOHTTP_SUFFIX)
+PYTHON3_AIOHTTP_URL	:= https://pypi.python.org/packages/e5/a5/ade96691f6423c56f7911a42a51ecd5454619efd6d5026df7e08a556a36a/$(PYTHON3_AIOHTTP).$(PYTHON3_AIOHTTP_SUFFIX)
 PYTHON3_AIOHTTP_SOURCE	:= $(SRCDIR)/$(PYTHON3_AIOHTTP).$(PYTHON3_AIOHTTP_SUFFIX)
 PYTHON3_AIOHTTP_DIR	:= $(BUILDDIR)/$(PYTHON3_AIOHTTP)
 PYTHON3_AIOHTTP_LICENSE	:= Apache-2.0
-- 
2.15.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2018-01-29 15:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-29 15:42 [ptxdist] [PATCH 1/4] python3-async-timeout: new package Bastian Stender
2018-01-29 15:42 ` [ptxdist] [PATCH 2/4] python3-multidict: " Bastian Stender
2018-01-29 15:42 ` [ptxdist] [PATCH 3/4] python3-yarl: " Bastian Stender
2018-01-29 15:42 ` [ptxdist] [PATCH 4/4] python3-aiohttp: version bump 0.21.4 -> 1.2.0 Bastian Stender

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