mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] python3-urllib3: new package
@ 2020-11-11 13:38 Lars Pedersen
  2020-11-20  7:56 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Lars Pedersen @ 2020-11-11 13:38 UTC (permalink / raw)
  To: ptxdist; +Cc: Lars Pedersen

Urllib3 is a powerful, user-friendly HTTP client for Python

Signed-off-by: Lars Pedersen <lapeddk@gmail.com>
---
 python3-urllib3.in   |  8 +++++++
 python3-urllib3.make | 54 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)
 create mode 100644 python3-urllib3.in
 create mode 100644 python3-urllib3.make

diff --git a/python3-urllib3.in b/python3-urllib3.in
new file mode 100644
index 0000000..e97430a
--- /dev/null
+++ b/python3-urllib3.in
@@ -0,0 +1,8 @@
+## SECTION=python3
+
+config PYTHON3_URLLIB3
+	tristate
+	select PYTHON3
+	prompt "urllib3"
+	help
+	  HTTP library with thread-safe connection pooling, file post, and more.
diff --git a/python3-urllib3.make b/python3-urllib3.make
new file mode 100644
index 0000000..365c9e8
--- /dev/null
+++ b/python3-urllib3.make
@@ -0,0 +1,54 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2020 by Lars Pedersen <lapeddk@gmail.com>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_URLLIB3) += python3-urllib3
+
+#
+# Paths and names
+#
+PYTHON3_URLLIB3_VERSION	:= 1.25.11
+PYTHON3_URLLIB3_MD5	:= d47dd21a6e66a03c3633cac468ffd010
+PYTHON3_URLLIB3		:= urllib3-$(PYTHON3_URLLIB3_VERSION)
+PYTHON3_URLLIB3_SUFFIX	:= tar.gz
+PYTHON3_URLLIB3_URL	:= $(call ptx/mirror-pypi, urllib3, $(PYTHON3_URLLIB3).$(PYTHON3_URLLIB3_SUFFIX))
+PYTHON3_URLLIB3_SOURCE	:= $(SRCDIR)/$(PYTHON3_URLLIB3).$(PYTHON3_URLLIB3_SUFFIX)
+PYTHON3_URLLIB3_DIR	:= $(BUILDDIR)/$(PYTHON3_URLLIB3)
+PYTHON3_URLLIB3_LICENSE	:= MIT
+PYTHON3_URLLIB3_LICENSE_FILES := \
+	file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e \
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_URLLIB3_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-urllib3.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-urllib3)
+	@$(call install_fixup, python3-urllib3,PRIORITY,optional)
+	@$(call install_fixup, python3-urllib3,SECTION,base)
+	@$(call install_fixup, python3-urllib3,AUTHOR,"Lars Pedersen <lapeddk@gmail.com>")
+	@$(call install_fixup, python3-urllib3,DESCRIPTION,missing)
+
+	@$(call install_glob, python3-urllib3, 0, 0, -, \
+		$(PYTHON3_SITEPACKAGES),, *.py)
+
+	@$(call install_finish, python3-urllib3)
+
+	@$(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] 2+ messages in thread

* Re: [ptxdist] [APPLIED] python3-urllib3: new package
  2020-11-11 13:38 [ptxdist] [PATCH] python3-urllib3: new package Lars Pedersen
@ 2020-11-20  7:56 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2020-11-20  7:56 UTC (permalink / raw)
  To: ptxdist; +Cc: Lars Pedersen

Thanks, applied as 70199fad77ee6e989cbd5a29f697e20696bf1236.

Michael

[sent from post-receive hook]

On Fri, 20 Nov 2020 08:56:09 +0100, Lars Pedersen <lapeddk@gmail.com> wrote:
> Urllib3 is a powerful, user-friendly HTTP client for Python
> 
> Signed-off-by: Lars Pedersen <lapeddk@gmail.com>
> Message-Id: <20201111133823.27130-1-lapeddk@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/python3-urllib3.in b/python3-urllib3.in
> new file mode 100644
> index 000000000000..e97430a41c48
> --- /dev/null
> +++ b/python3-urllib3.in
> @@ -0,0 +1,8 @@
> +## SECTION=python3
> +
> +config PYTHON3_URLLIB3
> +	tristate
> +	select PYTHON3
> +	prompt "urllib3"
> +	help
> +	  HTTP library with thread-safe connection pooling, file post, and more.
> diff --git a/python3-urllib3.make b/python3-urllib3.make
> new file mode 100644
> index 000000000000..365c9e87e7a6
> --- /dev/null
> +++ b/python3-urllib3.make
> @@ -0,0 +1,54 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2020 by Lars Pedersen <lapeddk@gmail.com>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_PYTHON3_URLLIB3) += python3-urllib3
> +
> +#
> +# Paths and names
> +#
> +PYTHON3_URLLIB3_VERSION	:= 1.25.11
> +PYTHON3_URLLIB3_MD5	:= d47dd21a6e66a03c3633cac468ffd010
> +PYTHON3_URLLIB3		:= urllib3-$(PYTHON3_URLLIB3_VERSION)
> +PYTHON3_URLLIB3_SUFFIX	:= tar.gz
> +PYTHON3_URLLIB3_URL	:= $(call ptx/mirror-pypi, urllib3, $(PYTHON3_URLLIB3).$(PYTHON3_URLLIB3_SUFFIX))
> +PYTHON3_URLLIB3_SOURCE	:= $(SRCDIR)/$(PYTHON3_URLLIB3).$(PYTHON3_URLLIB3_SUFFIX)
> +PYTHON3_URLLIB3_DIR	:= $(BUILDDIR)/$(PYTHON3_URLLIB3)
> +PYTHON3_URLLIB3_LICENSE	:= MIT
> +PYTHON3_URLLIB3_LICENSE_FILES := \
> +	file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e \
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +PYTHON3_URLLIB3_CONF_TOOL	:= python3
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/python3-urllib3.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, python3-urllib3)
> +	@$(call install_fixup, python3-urllib3,PRIORITY,optional)
> +	@$(call install_fixup, python3-urllib3,SECTION,base)
> +	@$(call install_fixup, python3-urllib3,AUTHOR,"Lars Pedersen <lapeddk@gmail.com>")
> +	@$(call install_fixup, python3-urllib3,DESCRIPTION,missing)
> +
> +	@$(call install_glob, python3-urllib3, 0, 0, -, \
> +		$(PYTHON3_SITEPACKAGES),, *.py)
> +
> +	@$(call install_finish, python3-urllib3)
> +
> +	@$(call touch)
> +
> +# vim: syntax=make

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

end of thread, other threads:[~2020-11-20  7:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-11 13:38 [ptxdist] [PATCH] python3-urllib3: new package Lars Pedersen
2020-11-20  7:56 ` [ptxdist] [APPLIED] " Michael Olbrich

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