All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [Next] package/python-wsgiref: new package
@ 2019-11-13 22:44 Matt Weber
  2019-11-27 16:07 ` Frank Vanbever
  2019-12-03 23:04 ` Arnout Vandecappelle
  0 siblings, 2 replies; 3+ messages in thread
From: Matt Weber @ 2019-11-13 22:44 UTC (permalink / raw
  To: buildroot

Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
---
 package/Config.in                          |  1 +
 package/python-wsgiref/Config.in           |  6 ++++++
 package/python-wsgiref/python-wsgiref.hash |  3 +++
 package/python-wsgiref/python-wsgiref.mk   | 18 ++++++++++++++++++
 4 files changed, 28 insertions(+)
 create mode 100644 package/python-wsgiref/Config.in
 create mode 100644 package/python-wsgiref/python-wsgiref.hash
 create mode 100644 package/python-wsgiref/python-wsgiref.mk

diff --git a/package/Config.in b/package/Config.in
index e87b5a57d7..c150ee2473 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1133,6 +1133,7 @@ menu "External python modules"
 	source "package/python-wrapt/Config.in"
 	source "package/python-ws4py/Config.in"
 	source "package/python-wsaccel/Config.in"
+	source "package/python-wsgiref/Config.in"
 	source "package/python-wtforms/Config.in"
 	source "package/python-xlib/Config.in"
 	source "package/python-xlrd/Config.in"
diff --git a/package/python-wsgiref/Config.in b/package/python-wsgiref/Config.in
new file mode 100644
index 0000000000..2fde92cab0
--- /dev/null
+++ b/package/python-wsgiref/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PYTHON_WSGIREF
+	bool "python-wsgiref"
+	help
+	  WSGI (PEP 333) Reference Library.
+
+	  http://cheeseshop.python.org/pypi/wsgiref
diff --git a/package/python-wsgiref/python-wsgiref.hash b/package/python-wsgiref/python-wsgiref.hash
new file mode 100644
index 0000000000..0c9a4fecd8
--- /dev/null
+++ b/package/python-wsgiref/python-wsgiref.hash
@@ -0,0 +1,3 @@
+# md5, sha256 from https://pypi.org/pypi/wsgiref/json
+md5	29b146e6ebd0f9fb119fe321f7bcf6cb  wsgiref-0.1.2.zip
+sha256	c7e610c800957046c04c8014aab8cce8f0b9f0495c8cd349e57c1f7cabf40e79  wsgiref-0.1.2.zip
diff --git a/package/python-wsgiref/python-wsgiref.mk b/package/python-wsgiref/python-wsgiref.mk
new file mode 100644
index 0000000000..e30f4c6a31
--- /dev/null
+++ b/package/python-wsgiref/python-wsgiref.mk
@@ -0,0 +1,18 @@
+################################################################################
+#
+# python-wsgiref
+#
+################################################################################
+
+PYTHON_WSGIREF_VERSION = 0.1.2
+PYTHON_WSGIREF_SOURCE = wsgiref-$(PYTHON_WSGIREF_VERSION).zip
+PYTHON_WSGIREF_SITE = https://files.pythonhosted.org/packages/41/9e/309259ce8dff8c596e8c26df86dbc4e848b9249fd36797fd60be456f03fc
+PYTHON_WSGIREF_SETUP_TYPE = setuptools
+PYTHON_WSGIREF_LICENSE = PSF or ZPL
+
+define PYTHON_WSGIREF_EXTRACT_CMDS
+	$(UNZIP) -d $(@D) $(PYTHON_WSGIREF_DL_DIR)/$(PYTHON_WSGIREF_SOURCE)
+	mv $(@D)/wsgiref-$(PYTHON_WSGIREF_VERSION)/* $(@D)/
+endef
+
+$(eval $(python-package))
-- 
2.17.1

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

* [Buildroot] [Next] package/python-wsgiref: new package
  2019-11-13 22:44 [Buildroot] [Next] package/python-wsgiref: new package Matt Weber
@ 2019-11-27 16:07 ` Frank Vanbever
  2019-12-03 23:04 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Frank Vanbever @ 2019-11-27 16:07 UTC (permalink / raw
  To: buildroot

On Wednesday, 13 November 2019 23:44:29 CET Matt Weber wrote:
> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>

Tested-by: Frank Vanbever <frank.vanbever@essensium.com>

I ran a quick test using the example application from the Python 3 docs given 
under setup_testing_defaults(). Everything works as expected.

> ---
>  package/Config.in                          |  1 +
>  package/python-wsgiref/Config.in           |  6 ++++++
>  package/python-wsgiref/python-wsgiref.hash |  3 +++
>  package/python-wsgiref/python-wsgiref.mk   | 18 ++++++++++++++++++
>  4 files changed, 28 insertions(+)
>  create mode 100644 package/python-wsgiref/Config.in
>  create mode 100644 package/python-wsgiref/python-wsgiref.hash
>  create mode 100644 package/python-wsgiref/python-wsgiref.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index e87b5a57d7..c150ee2473 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1133,6 +1133,7 @@ menu "External python modules"
>  	source "package/python-wrapt/Config.in"
>  	source "package/python-ws4py/Config.in"
>  	source "package/python-wsaccel/Config.in"
> +	source "package/python-wsgiref/Config.in"
>  	source "package/python-wtforms/Config.in"
>  	source "package/python-xlib/Config.in"
>  	source "package/python-xlrd/Config.in"
> diff --git a/package/python-wsgiref/Config.in
> b/package/python-wsgiref/Config.in new file mode 100644
> index 0000000000..2fde92cab0
> --- /dev/null
> +++ b/package/python-wsgiref/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PYTHON_WSGIREF
> +	bool "python-wsgiref"
> +	help
> +	  WSGI (PEP 333) Reference Library.
> +
> +	  http://cheeseshop.python.org/pypi/wsgiref
> diff --git a/package/python-wsgiref/python-wsgiref.hash
> b/package/python-wsgiref/python-wsgiref.hash new file mode 100644
> index 0000000000..0c9a4fecd8
> --- /dev/null
> +++ b/package/python-wsgiref/python-wsgiref.hash
> @@ -0,0 +1,3 @@
> +# md5, sha256 from https://pypi.org/pypi/wsgiref/json
> +md5	29b146e6ebd0f9fb119fe321f7bcf6cb  wsgiref-0.1.2.zip
> +sha256	c7e610c800957046c04c8014aab8cce8f0b9f0495c8cd349e57c1f7cabf40e79 
> wsgiref-0.1.2.zip diff --git a/package/python-wsgiref/python-wsgiref.mk
> b/package/python-wsgiref/python-wsgiref.mk new file mode 100644
> index 0000000000..e30f4c6a31
> --- /dev/null
> +++ b/package/python-wsgiref/python-wsgiref.mk
> @@ -0,0 +1,18 @@
> +###########################################################################
> ##### +#
> +# python-wsgiref
> +#
> +###########################################################################
> ##### +
> +PYTHON_WSGIREF_VERSION = 0.1.2
> +PYTHON_WSGIREF_SOURCE = wsgiref-$(PYTHON_WSGIREF_VERSION).zip
> +PYTHON_WSGIREF_SITE =
> https://files.pythonhosted.org/packages/41/9e/309259ce8dff8c596e8c26df86dbc
> 4e848b9249fd36797fd60be456f03fc +PYTHON_WSGIREF_SETUP_TYPE = setuptools
> +PYTHON_WSGIREF_LICENSE = PSF or ZPL
> +
> +define PYTHON_WSGIREF_EXTRACT_CMDS
> +	$(UNZIP) -d $(@D) $(PYTHON_WSGIREF_DL_DIR)/$(PYTHON_WSGIREF_SOURCE)
> +	mv $(@D)/wsgiref-$(PYTHON_WSGIREF_VERSION)/* $(@D)/
> +endef
> +
> +$(eval $(python-package))

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

* [Buildroot] [Next] package/python-wsgiref: new package
  2019-11-13 22:44 [Buildroot] [Next] package/python-wsgiref: new package Matt Weber
  2019-11-27 16:07 ` Frank Vanbever
@ 2019-12-03 23:04 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2019-12-03 23:04 UTC (permalink / raw
  To: buildroot



On 13/11/2019 23:44, Matt Weber wrote:
> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>

 wsgiref has been in the Python standard library since Python 3.3 (and Python
2.something as well, but I didn't find which one exactly). So this patch is not
needed.

 Marked as Rejected.

 Regards,
 Arnout

> ---
>  package/Config.in                          |  1 +
>  package/python-wsgiref/Config.in           |  6 ++++++
>  package/python-wsgiref/python-wsgiref.hash |  3 +++
>  package/python-wsgiref/python-wsgiref.mk   | 18 ++++++++++++++++++
>  4 files changed, 28 insertions(+)
>  create mode 100644 package/python-wsgiref/Config.in
>  create mode 100644 package/python-wsgiref/python-wsgiref.hash
>  create mode 100644 package/python-wsgiref/python-wsgiref.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index e87b5a57d7..c150ee2473 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1133,6 +1133,7 @@ menu "External python modules"
>  	source "package/python-wrapt/Config.in"
>  	source "package/python-ws4py/Config.in"
>  	source "package/python-wsaccel/Config.in"
> +	source "package/python-wsgiref/Config.in"
>  	source "package/python-wtforms/Config.in"
>  	source "package/python-xlib/Config.in"
>  	source "package/python-xlrd/Config.in"
> diff --git a/package/python-wsgiref/Config.in b/package/python-wsgiref/Config.in
> new file mode 100644
> index 0000000000..2fde92cab0
> --- /dev/null
> +++ b/package/python-wsgiref/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PYTHON_WSGIREF
> +	bool "python-wsgiref"
> +	help
> +	  WSGI (PEP 333) Reference Library.
> +
> +	  http://cheeseshop.python.org/pypi/wsgiref
> diff --git a/package/python-wsgiref/python-wsgiref.hash b/package/python-wsgiref/python-wsgiref.hash
> new file mode 100644
> index 0000000000..0c9a4fecd8
> --- /dev/null
> +++ b/package/python-wsgiref/python-wsgiref.hash
> @@ -0,0 +1,3 @@
> +# md5, sha256 from https://pypi.org/pypi/wsgiref/json
> +md5	29b146e6ebd0f9fb119fe321f7bcf6cb  wsgiref-0.1.2.zip
> +sha256	c7e610c800957046c04c8014aab8cce8f0b9f0495c8cd349e57c1f7cabf40e79  wsgiref-0.1.2.zip
> diff --git a/package/python-wsgiref/python-wsgiref.mk b/package/python-wsgiref/python-wsgiref.mk
> new file mode 100644
> index 0000000000..e30f4c6a31
> --- /dev/null
> +++ b/package/python-wsgiref/python-wsgiref.mk
> @@ -0,0 +1,18 @@
> +################################################################################
> +#
> +# python-wsgiref
> +#
> +################################################################################
> +
> +PYTHON_WSGIREF_VERSION = 0.1.2
> +PYTHON_WSGIREF_SOURCE = wsgiref-$(PYTHON_WSGIREF_VERSION).zip
> +PYTHON_WSGIREF_SITE = https://files.pythonhosted.org/packages/41/9e/309259ce8dff8c596e8c26df86dbc4e848b9249fd36797fd60be456f03fc
> +PYTHON_WSGIREF_SETUP_TYPE = setuptools
> +PYTHON_WSGIREF_LICENSE = PSF or ZPL
> +
> +define PYTHON_WSGIREF_EXTRACT_CMDS
> +	$(UNZIP) -d $(@D) $(PYTHON_WSGIREF_DL_DIR)/$(PYTHON_WSGIREF_SOURCE)
> +	mv $(@D)/wsgiref-$(PYTHON_WSGIREF_VERSION)/* $(@D)/
> +endef
> +
> +$(eval $(python-package))
> 

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

end of thread, other threads:[~2019-12-03 23:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-13 22:44 [Buildroot] [Next] package/python-wsgiref: new package Matt Weber
2019-11-27 16:07 ` Frank Vanbever
2019-12-03 23:04 ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.