Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] python-wtforms: new package
@ 2018-11-07 15:59 Grzegorz Blach
  2018-11-07 16:26 ` Yegor Yefremov
  2018-12-03 22:06 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Grzegorz Blach @ 2018-11-07 15:59 UTC (permalink / raw)
  To: buildroot

A flexible forms validation and rendering library for
Python web development.

https://wtforms.readthedocs.io/

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
---
 DEVELOPERS                                 |  1 +
 package/Config.in                          |  1 +
 package/python-wtforms/Config.in           |  7 +++++++
 package/python-wtforms/python-wtforms.hash |  5 +++++
 package/python-wtforms/python-wtforms.mk   | 14 ++++++++++++++
 5 files changed, 28 insertions(+)
 create mode 100644 package/python-wtforms/Config.in
 create mode 100644 package/python-wtforms/python-wtforms.hash
 create mode 100644 package/python-wtforms/python-wtforms.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index 8d5ed199ce..989cd93d38 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -897,6 +897,7 @@ F:	package/pigpio/
 F:	package/python-falcon/
 F:	package/python-mimeparse/
 F:	package/python-pigpio/
+F:	package/python-wtforms/
 
 N:	Guillaume Gardet <guillaume.gardet@oliseo.fr>
 F:	package/c-icap/
diff --git a/package/Config.in b/package/Config.in
index 712e360402..c40da0ed75 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1066,6 +1066,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-wtforms/Config.in"
 	source "package/python-xlib/Config.in"
 	source "package/python-xlrd/Config.in"
 	source "package/python-xlsxwriter/Config.in"
diff --git a/package/python-wtforms/Config.in b/package/python-wtforms/Config.in
new file mode 100644
index 0000000000..96ed96da0a
--- /dev/null
+++ b/package/python-wtforms/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PYTHON_WTFORMS
+	bool "python-wtforms"
+	help
+	  A flexible forms validation and rendering library for
+	  Python web development.
+
+	  https://wtforms.readthedocs.io/
diff --git a/package/python-wtforms/python-wtforms.hash b/package/python-wtforms/python-wtforms.hash
new file mode 100644
index 0000000000..34beb08010
--- /dev/null
+++ b/package/python-wtforms/python-wtforms.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/wtforms/json
+md5	41c0008dbe7bd98892c58f7457a46a4a  WTForms-2.2.1.tar.gz
+sha256	0cdbac3e7f6878086c334aa25dc5a33869a3954e9d1e015130d65a69309b3b61  WTForms-2.2.1.tar.gz
+# Locally computed sha256 checksums
+sha256	64cba207423f4478e3262c2e54209f8cd2057d687e200a50e0203db5659947a5  LICENSE.rst
diff --git a/package/python-wtforms/python-wtforms.mk b/package/python-wtforms/python-wtforms.mk
new file mode 100644
index 0000000000..2715320d27
--- /dev/null
+++ b/package/python-wtforms/python-wtforms.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-wtforms
+#
+################################################################################
+
+PYTHON_WTFORMS_VERSION = 2.2.1
+PYTHON_WTFORMS_SOURCE = WTForms-$(PYTHON_WTFORMS_VERSION).tar.gz
+PYTHON_WTFORMS_SITE = https://files.pythonhosted.org/packages/cd/1d/7221354ebfc32b868740d02e44225c2ce00769b0d3dc370e463e2bc4b446
+PYTHON_WTFORMS_SETUP_TYPE = setuptools
+PYTHON_WTFORMS_LICENSE = BSD-3-Clause
+PYTHON_WTFORMS_LICENSE_FILES = LICENSE.rst
+
+$(eval $(python-package))
-- 
2.19.1

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

* [Buildroot] [PATCH 1/1] python-wtforms: new package
  2018-11-07 15:59 [Buildroot] [PATCH 1/1] python-wtforms: new package Grzegorz Blach
@ 2018-11-07 16:26 ` Yegor Yefremov
  2018-12-03 22:06 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yegor Yefremov @ 2018-11-07 16:26 UTC (permalink / raw)
  To: buildroot

On Wed, Nov 7, 2018 at 5:00 PM Grzegorz Blach <grzegorz@blach.pl> wrote:
>
> A flexible forms validation and rendering library for
> Python web development.
>
> https://wtforms.readthedocs.io/
>
> Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>

Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>

> ---
>  DEVELOPERS                                 |  1 +
>  package/Config.in                          |  1 +
>  package/python-wtforms/Config.in           |  7 +++++++
>  package/python-wtforms/python-wtforms.hash |  5 +++++
>  package/python-wtforms/python-wtforms.mk   | 14 ++++++++++++++
>  5 files changed, 28 insertions(+)
>  create mode 100644 package/python-wtforms/Config.in
>  create mode 100644 package/python-wtforms/python-wtforms.hash
>  create mode 100644 package/python-wtforms/python-wtforms.mk
>
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 8d5ed199ce..989cd93d38 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -897,6 +897,7 @@ F:  package/pigpio/
>  F:     package/python-falcon/
>  F:     package/python-mimeparse/
>  F:     package/python-pigpio/
> +F:     package/python-wtforms/
>
>  N:     Guillaume Gardet <guillaume.gardet@oliseo.fr>
>  F:     package/c-icap/
> diff --git a/package/Config.in b/package/Config.in
> index 712e360402..c40da0ed75 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1066,6 +1066,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-wtforms/Config.in"
>         source "package/python-xlib/Config.in"
>         source "package/python-xlrd/Config.in"
>         source "package/python-xlsxwriter/Config.in"
> diff --git a/package/python-wtforms/Config.in b/package/python-wtforms/Config.in
> new file mode 100644
> index 0000000000..96ed96da0a
> --- /dev/null
> +++ b/package/python-wtforms/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_PYTHON_WTFORMS
> +       bool "python-wtforms"
> +       help
> +         A flexible forms validation and rendering library for
> +         Python web development.
> +
> +         https://wtforms.readthedocs.io/
> diff --git a/package/python-wtforms/python-wtforms.hash b/package/python-wtforms/python-wtforms.hash
> new file mode 100644
> index 0000000000..34beb08010
> --- /dev/null
> +++ b/package/python-wtforms/python-wtforms.hash
> @@ -0,0 +1,5 @@
> +# md5, sha256 from https://pypi.org/pypi/wtforms/json
> +md5    41c0008dbe7bd98892c58f7457a46a4a  WTForms-2.2.1.tar.gz
> +sha256 0cdbac3e7f6878086c334aa25dc5a33869a3954e9d1e015130d65a69309b3b61  WTForms-2.2.1.tar.gz
> +# Locally computed sha256 checksums
> +sha256 64cba207423f4478e3262c2e54209f8cd2057d687e200a50e0203db5659947a5  LICENSE.rst
> diff --git a/package/python-wtforms/python-wtforms.mk b/package/python-wtforms/python-wtforms.mk
> new file mode 100644
> index 0000000000..2715320d27
> --- /dev/null
> +++ b/package/python-wtforms/python-wtforms.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# python-wtforms
> +#
> +################################################################################
> +
> +PYTHON_WTFORMS_VERSION = 2.2.1
> +PYTHON_WTFORMS_SOURCE = WTForms-$(PYTHON_WTFORMS_VERSION).tar.gz
> +PYTHON_WTFORMS_SITE = https://files.pythonhosted.org/packages/cd/1d/7221354ebfc32b868740d02e44225c2ce00769b0d3dc370e463e2bc4b446
> +PYTHON_WTFORMS_SETUP_TYPE = setuptools
> +PYTHON_WTFORMS_LICENSE = BSD-3-Clause
> +PYTHON_WTFORMS_LICENSE_FILES = LICENSE.rst
> +
> +$(eval $(python-package))
> --
> 2.19.1
>

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

* [Buildroot] [PATCH 1/1] python-wtforms: new package
  2018-11-07 15:59 [Buildroot] [PATCH 1/1] python-wtforms: new package Grzegorz Blach
  2018-11-07 16:26 ` Yegor Yefremov
@ 2018-12-03 22:06 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2018-12-03 22:06 UTC (permalink / raw)
  To: buildroot

Hello,

On Wed,  7 Nov 2018 16:59:53 +0100, Grzegorz Blach wrote:
> A flexible forms validation and rendering library for
> Python web development.
> 
> https://wtforms.readthedocs.io/
> 
> Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
> ---
>  DEVELOPERS                                 |  1 +
>  package/Config.in                          |  1 +
>  package/python-wtforms/Config.in           |  7 +++++++
>  package/python-wtforms/python-wtforms.hash |  5 +++++
>  package/python-wtforms/python-wtforms.mk   | 14 ++++++++++++++
>  5 files changed, 28 insertions(+)
>  create mode 100644 package/python-wtforms/Config.in
>  create mode 100644 package/python-wtforms/python-wtforms.hash
>  create mode 100644 package/python-wtforms/python-wtforms.mk

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2018-12-03 22:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-07 15:59 [Buildroot] [PATCH 1/1] python-wtforms: new package Grzegorz Blach
2018-11-07 16:26 ` Yegor Yefremov
2018-12-03 22:06 ` Thomas Petazzoni

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