All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1
@ 2020-09-01  8:11 Leon Anavi
  2020-09-01  8:11 ` [meta-python][PATCH 2/5] python3-traitlets: Upgrade 4.3.3 -> 5.0.0 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2020-09-01  8:11 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.16.1:

- Fix bug in bitmap_font: glyph_index now computed correctly

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...ython3-luma-core_1.16.0.bb => python3-luma-core_1.16.1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-luma-core_1.16.0.bb => python3-luma-core_1.16.1.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-luma-core_1.16.0.bb b/meta-python/recipes-devtools/python/python3-luma-core_1.16.1.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-luma-core_1.16.0.bb
rename to meta-python/recipes-devtools/python/python3-luma-core_1.16.1.bb
index ce1e7ba03..3428dbe9f 100644
--- a/meta-python/recipes-devtools/python/python3-luma-core_1.16.0.bb
+++ b/meta-python/recipes-devtools/python/python3-luma-core_1.16.1.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=eda804060ba2312e41fe96b6fa334fd7"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "52ab2cdce4222aa71d9ac254a806dccc"
-SRC_URI[sha256sum] = "ca523f606f8fff2c9843d48b415a0a748bb2c96270eccac97d9caa9ae6810c94"
+SRC_URI[md5sum] = "de7bda49c4146ba242923a88c587cd7a"
+SRC_URI[sha256sum] = "2181a60906fea3104dcfa3923f9654928502cd7541ff9b4d76c6ae29c6a9d9fc"
 
 CLEANBROKEN = "1"
 
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-traitlets: Upgrade 4.3.3 -> 5.0.0
  2020-09-01  8:11 [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Leon Anavi
@ 2020-09-01  8:11 ` Leon Anavi
  2020-09-02 15:31   ` [oe] " Trevor Gamblin
  2020-09-01  8:11 ` [meta-python][PATCH 3/5] python3-flask-nav: Consolidate in a single file Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-09-01  8:11 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.0.0:

Traitlets 5.0 is a new version of traitlets that accumulate
changes over a period of more close to four years; A number of
internal refactoring made the internal code structure cleaner and
simpler, and greatly improved the diagnostic error messages as
well has help and documentation generation. Major changes:

- Removal of Python 2 support,
- Removal of Python 3.0-3.6 support
- Follow NEP 29, and are thus Python 3.7+ only.
- Remove six as a dependency
- Remove funcsig as a dependency.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...python3-traitlets_4.3.3.bb => python3-traitlets_5.0.0.bb} | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-traitlets_4.3.3.bb => python3-traitlets_5.0.0.bb} (69%)

diff --git a/meta-python/recipes-devtools/python/python3-traitlets_4.3.3.bb b/meta-python/recipes-devtools/python/python3-traitlets_5.0.0.bb
similarity index 69%
rename from meta-python/recipes-devtools/python/python3-traitlets_4.3.3.bb
rename to meta-python/recipes-devtools/python/python3-traitlets_5.0.0.bb
index edfb3abfa..8aa0ce5ba 100644
--- a/meta-python/recipes-devtools/python/python3-traitlets_4.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-traitlets_5.0.0.bb
@@ -6,12 +6,11 @@ LIC_FILES_CHKSUM = "file://COPYING.md;md5=eec4de4d599518742e54e75954e33b46"
 
 PYPI_PACKAGE = "traitlets"
 
-SRC_URI[md5sum] = "3a4f263af65d3d79f1c279f0247077ef"
-SRC_URI[sha256sum] = "d023ee369ddd2763310e4c3eae1ff649689440d4ae59d7485eb4cfbbe3e359f7"
+SRC_URI[md5sum] = "3dec5b73409c07bf48cd5db220431ee9"
+SRC_URI[sha256sum] = "0d9c4005506b306b0a99551e96174b8bedc675c2dd048f92b3bbbb7d86ac93a9"
 
 RDEPENDS_${PN} = "\
     ${PYTHON_PN}-ipython-genutils \
-    ${PYTHON_PN}-six \
     ${PYTHON_PN}-decorator \
 "
 
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-flask-nav: Consolidate in a single file
  2020-09-01  8:11 [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Leon Anavi
  2020-09-01  8:11 ` [meta-python][PATCH 2/5] python3-traitlets: Upgrade 4.3.3 -> 5.0.0 Leon Anavi
@ 2020-09-01  8:11 ` Leon Anavi
  2020-09-02 15:31   ` [oe] " Trevor Gamblin
  2020-09-01  8:11 ` [meta-python][PATCH 4/5] python3-flask-mail: " Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-09-01  8:11 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python-flask-nav.inc  | 13 -------------
 .../python/python3-flask-nav_0.6.bb               | 15 ++++++++++++++-
 2 files changed, 14 insertions(+), 14 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-flask-nav.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-nav.inc b/meta-python/recipes-devtools/python/python-flask-nav.inc
deleted file mode 100644
index 932ccdf4a..000000000
--- a/meta-python/recipes-devtools/python/python-flask-nav.inc
+++ /dev/null
@@ -1,13 +0,0 @@
-DESCRIPTION = "Easily create navigation for Flask applications."
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=2729ee82259d601d90d28b0574d12416"
-
-SRC_URI[md5sum] = "4d51cfd06d58f8d0fe85775a6696c0e5"
-SRC_URI[sha256sum] = "44e40b755380a1e68ab521a2f9174de259a2c94ddcdaabf36b3aca2e110a33f4"
-
-PYPI_PACKAGE = "flask-nav"
-
-RDEPENDS_${PN} += "\
-    ${PYTHON_PN}-blinker \
-    ${PYTHON_PN}-flask \
-    "
diff --git a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
index d25115251..77735e325 100644
--- a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
@@ -1,2 +1,15 @@
+DESCRIPTION = "Easily create navigation for Flask applications."
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=2729ee82259d601d90d28b0574d12416"
+
+SRC_URI[md5sum] = "4d51cfd06d58f8d0fe85775a6696c0e5"
+SRC_URI[sha256sum] = "44e40b755380a1e68ab521a2f9174de259a2c94ddcdaabf36b3aca2e110a33f4"
+
+PYPI_PACKAGE = "flask-nav"
+
 inherit pypi setuptools3
-require python-flask-nav.inc
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-blinker \
+    ${PYTHON_PN}-flask \
+    "
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-flask-mail: Consolidate in a single file
  2020-09-01  8:11 [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Leon Anavi
  2020-09-01  8:11 ` [meta-python][PATCH 2/5] python3-traitlets: Upgrade 4.3.3 -> 5.0.0 Leon Anavi
  2020-09-01  8:11 ` [meta-python][PATCH 3/5] python3-flask-nav: Consolidate in a single file Leon Anavi
@ 2020-09-01  8:11 ` Leon Anavi
  2020-09-02 15:31   ` [oe] " Trevor Gamblin
  2020-09-01  8:11 ` [meta-python][PATCH 5/5] python3-flask-pymongo: " Leon Anavi
  2020-09-02 15:30 ` [oe] [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-09-01  8:11 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python-flask-mail.inc  | 12 ------------
 .../python/python3-flask-mail_0.9.1.bb             | 14 +++++++++++++-
 2 files changed, 13 insertions(+), 13 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-flask-mail.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-mail.inc b/meta-python/recipes-devtools/python/python-flask-mail.inc
deleted file mode 100644
index 0df276d15..000000000
--- a/meta-python/recipes-devtools/python/python-flask-mail.inc
+++ /dev/null
@@ -1,12 +0,0 @@
-SUMMARY = "Flask extension for sending email"
-DESCRIPTION = "A Flask extension for sending email"
-HOMEPAGE = " https://github.com/rduplain/flask-email"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=5b16dfa6d3f275ace5985bb92949f770"
-
-SRC_URI[md5sum] = "04b35a42a44ec7aa724ec8ce55e2e08e"
-SRC_URI[sha256sum] = "22e5eb9a940bf407bcf30410ecc3708f3c56cc44b29c34e1726fe85006935f41"
-
-PYPI_PACKAGE = "Flask-Mail"
-
-RDEPENDS_${PN} = "${PYTHON_PN}-flask"
diff --git a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
index 0b963be56..7a89cac9d 100644
--- a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
@@ -1,2 +1,14 @@
+SUMMARY = "Flask extension for sending email"
+DESCRIPTION = "A Flask extension for sending email"
+HOMEPAGE = " https://github.com/rduplain/flask-email"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=5b16dfa6d3f275ace5985bb92949f770"
+
+SRC_URI[md5sum] = "04b35a42a44ec7aa724ec8ce55e2e08e"
+SRC_URI[sha256sum] = "22e5eb9a940bf407bcf30410ecc3708f3c56cc44b29c34e1726fe85006935f41"
+
+PYPI_PACKAGE = "Flask-Mail"
+
 inherit pypi setuptools3
-require python-flask-mail.inc
+
+RDEPENDS_${PN} = "${PYTHON_PN}-flask"
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-flask-pymongo: Consolidate in a single file
  2020-09-01  8:11 [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-09-01  8:11 ` [meta-python][PATCH 4/5] python3-flask-mail: " Leon Anavi
@ 2020-09-01  8:11 ` Leon Anavi
  2020-09-02 15:32   ` [oe] " Trevor Gamblin
  2020-09-02 15:30 ` [oe] [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-09-01  8:11 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/python-flask-pymongo.inc             | 15 ---------------
 .../python/python3-flask-pymongo_2.3.0.bb       | 17 ++++++++++++++++-
 2 files changed, 16 insertions(+), 16 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-flask-pymongo.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-pymongo.inc b/meta-python/recipes-devtools/python/python-flask-pymongo.inc
deleted file mode 100644
index 5fc35c193..000000000
--- a/meta-python/recipes-devtools/python/python-flask-pymongo.inc
+++ /dev/null
@@ -1,15 +0,0 @@
-SUMMARY = "PyMongo support for Flask applications"
-DESCRIPTION = "PyMongo support for Flask applications."
-HOMEPAGE = "https://github.com/mitsuhiko/flask/"
-SECTION = "devel/python"
-LICENSE = "BSD-2-Clause"
-LIC_FILES_CHKSUM = "file://flask_pymongo/wrappers.py;beginline=1;endline=24;md5=424c4e1047d28e01b4e4634a069c019d"
-
-SRC_URI[md5sum] = "94df71e6800b1d7915cc91a74b70f959"
-SRC_URI[sha256sum] = "620eb02dc8808a5fcb90f26cab6cba9d6bf497b15032ae3ca99df80366e33314"
-
-PYPI_PACKAGE = "Flask-PyMongo"
-
-DEPENDS = "${PYTHON_PN}-vcversioner ${PYTHON_PN}-vcversioner-native"
-
-RDEPENDS_${PN} = "${PYTHON_PN}-pymongo ${PYTHON_PN}-flask"
diff --git a/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb b/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb
index 2102554b6..e3c744d92 100644
--- a/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb
@@ -1,2 +1,17 @@
+SUMMARY = "PyMongo support for Flask applications"
+DESCRIPTION = "PyMongo support for Flask applications."
+HOMEPAGE = "https://github.com/mitsuhiko/flask/"
+SECTION = "devel/python"
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://flask_pymongo/wrappers.py;beginline=1;endline=24;md5=424c4e1047d28e01b4e4634a069c019d"
+
+SRC_URI[md5sum] = "94df71e6800b1d7915cc91a74b70f959"
+SRC_URI[sha256sum] = "620eb02dc8808a5fcb90f26cab6cba9d6bf497b15032ae3ca99df80366e33314"
+
+PYPI_PACKAGE = "Flask-PyMongo"
+
 inherit pypi setuptools3
-require python-flask-pymongo.inc
+
+DEPENDS = "${PYTHON_PN}-vcversioner ${PYTHON_PN}-vcversioner-native"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-pymongo ${PYTHON_PN}-flask"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1
  2020-09-01  8:11 [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-09-01  8:11 ` [meta-python][PATCH 5/5] python3-flask-pymongo: " Leon Anavi
@ 2020-09-02 15:30 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-09-02 15:30 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1493 bytes --]


On 9/1/20 4:11 AM, Leon Anavi wrote:
> Upgrade to release 1.16.1:
>
> - Fix bug in bitmap_font: glyph_index now computed correctly
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-luma-core_1.16.0.bb => python3-luma-core_1.16.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-luma-core_1.16.0.bb => python3-luma-core_1.16.1.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-luma-core_1.16.0.bb b/meta-python/recipes-devtools/python/python3-luma-core_1.16.1.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python3-luma-core_1.16.0.bb
> rename to meta-python/recipes-devtools/python/python3-luma-core_1.16.1.bb
> index ce1e7ba03..3428dbe9f 100644
> --- a/meta-python/recipes-devtools/python/python3-luma-core_1.16.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-luma-core_1.16.1.bb
> @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=eda804060ba2312e41fe96b6fa334fd7"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "52ab2cdce4222aa71d9ac254a806dccc"
> -SRC_URI[sha256sum] = "ca523f606f8fff2c9843d48b415a0a748bb2c96270eccac97d9caa9ae6810c94"
> +SRC_URI[md5sum] = "de7bda49c4146ba242923a88c587cd7a"
> +SRC_URI[sha256sum] = "2181a60906fea3104dcfa3923f9654928502cd7541ff9b4d76c6ae29c6a9d9fc"
>   
>   CLEANBROKEN = "1"
>   
>
> 

[-- Attachment #2: Type: text/html, Size: 2388 bytes --]

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

* Re: [oe] [meta-python][PATCH 2/5] python3-traitlets: Upgrade 4.3.3 -> 5.0.0
  2020-09-01  8:11 ` [meta-python][PATCH 2/5] python3-traitlets: Upgrade 4.3.3 -> 5.0.0 Leon Anavi
@ 2020-09-02 15:31   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-09-02 15:31 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2056 bytes --]


On 9/1/20 4:11 AM, Leon Anavi wrote:
> Upgrade to release 5.0.0:
>
> Traitlets 5.0 is a new version of traitlets that accumulate
> changes over a period of more close to four years; A number of
> internal refactoring made the internal code structure cleaner and
> simpler, and greatly improved the diagnostic error messages as
> well has help and documentation generation. Major changes:
>
> - Removal of Python 2 support,
> - Removal of Python 3.0-3.6 support
> - Follow NEP 29, and are thus Python 3.7+ only.
> - Remove six as a dependency
> - Remove funcsig as a dependency.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...python3-traitlets_4.3.3.bb => python3-traitlets_5.0.0.bb} | 5 ++---
>   1 file changed, 2 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-traitlets_4.3.3.bb => python3-traitlets_5.0.0.bb} (69%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-traitlets_4.3.3.bb b/meta-python/recipes-devtools/python/python3-traitlets_5.0.0.bb
> similarity index 69%
> rename from meta-python/recipes-devtools/python/python3-traitlets_4.3.3.bb
> rename to meta-python/recipes-devtools/python/python3-traitlets_5.0.0.bb
> index edfb3abfa..8aa0ce5ba 100644
> --- a/meta-python/recipes-devtools/python/python3-traitlets_4.3.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-traitlets_5.0.0.bb
> @@ -6,12 +6,11 @@ LIC_FILES_CHKSUM = "file://COPYING.md;md5=eec4de4d599518742e54e75954e33b46"
>   
>   PYPI_PACKAGE = "traitlets"
>   
> -SRC_URI[md5sum] = "3a4f263af65d3d79f1c279f0247077ef"
> -SRC_URI[sha256sum] = "d023ee369ddd2763310e4c3eae1ff649689440d4ae59d7485eb4cfbbe3e359f7"
> +SRC_URI[md5sum] = "3dec5b73409c07bf48cd5db220431ee9"
> +SRC_URI[sha256sum] = "0d9c4005506b306b0a99551e96174b8bedc675c2dd048f92b3bbbb7d86ac93a9"
>   
>   RDEPENDS_${PN} = "\
>       ${PYTHON_PN}-ipython-genutils \
> -    ${PYTHON_PN}-six \
>       ${PYTHON_PN}-decorator \
>   "
>   
>
> 

[-- Attachment #2: Type: text/html, Size: 2930 bytes --]

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

* Re: [oe] [meta-python][PATCH 3/5] python3-flask-nav: Consolidate in a single file
  2020-09-01  8:11 ` [meta-python][PATCH 3/5] python3-flask-nav: Consolidate in a single file Leon Anavi
@ 2020-09-02 15:31   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-09-02 15:31 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2126 bytes --]


On 9/1/20 4:11 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python-flask-nav.inc  | 13 -------------
>   .../python/python3-flask-nav_0.6.bb               | 15 ++++++++++++++-
>   2 files changed, 14 insertions(+), 14 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-flask-nav.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-flask-nav.inc b/meta-python/recipes-devtools/python/python-flask-nav.inc
> deleted file mode 100644
> index 932ccdf4a..000000000
> --- a/meta-python/recipes-devtools/python/python-flask-nav.inc
> +++ /dev/null
> @@ -1,13 +0,0 @@
> -DESCRIPTION = "Easily create navigation for Flask applications."
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;md5=2729ee82259d601d90d28b0574d12416"
> -
> -SRC_URI[md5sum] = "4d51cfd06d58f8d0fe85775a6696c0e5"
> -SRC_URI[sha256sum] = "44e40b755380a1e68ab521a2f9174de259a2c94ddcdaabf36b3aca2e110a33f4"
> -
> -PYPI_PACKAGE = "flask-nav"
> -
> -RDEPENDS_${PN} += "\
> -    ${PYTHON_PN}-blinker \
> -    ${PYTHON_PN}-flask \
> -    "
> diff --git a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
> index d25115251..77735e325 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
> @@ -1,2 +1,15 @@
> +DESCRIPTION = "Easily create navigation for Flask applications."
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://PKG-INFO;md5=2729ee82259d601d90d28b0574d12416"
> +
> +SRC_URI[md5sum] = "4d51cfd06d58f8d0fe85775a6696c0e5"
> +SRC_URI[sha256sum] = "44e40b755380a1e68ab521a2f9174de259a2c94ddcdaabf36b3aca2e110a33f4"
> +
> +PYPI_PACKAGE = "flask-nav"
> +
>   inherit pypi setuptools3
> -require python-flask-nav.inc
> +
> +RDEPENDS_${PN} += "\
> +    ${PYTHON_PN}-blinker \
> +    ${PYTHON_PN}-flask \
> +    "
>
> 

[-- Attachment #2: Type: text/html, Size: 3150 bytes --]

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

* Re: [oe] [meta-python][PATCH 4/5] python3-flask-mail: Consolidate in a single file
  2020-09-01  8:11 ` [meta-python][PATCH 4/5] python3-flask-mail: " Leon Anavi
@ 2020-09-02 15:31   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-09-02 15:31 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2245 bytes --]


On 9/1/20 4:11 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python-flask-mail.inc  | 12 ------------
>   .../python/python3-flask-mail_0.9.1.bb             | 14 +++++++++++++-
>   2 files changed, 13 insertions(+), 13 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-flask-mail.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-flask-mail.inc b/meta-python/recipes-devtools/python/python-flask-mail.inc
> deleted file mode 100644
> index 0df276d15..000000000
> --- a/meta-python/recipes-devtools/python/python-flask-mail.inc
> +++ /dev/null
> @@ -1,12 +0,0 @@
> -SUMMARY = "Flask extension for sending email"
> -DESCRIPTION = "A Flask extension for sending email"
> -HOMEPAGE = " https://github.com/rduplain/flask-email"
> -LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=5b16dfa6d3f275ace5985bb92949f770"
> -
> -SRC_URI[md5sum] = "04b35a42a44ec7aa724ec8ce55e2e08e"
> -SRC_URI[sha256sum] = "22e5eb9a940bf407bcf30410ecc3708f3c56cc44b29c34e1726fe85006935f41"
> -
> -PYPI_PACKAGE = "Flask-Mail"
> -
> -RDEPENDS_${PN} = "${PYTHON_PN}-flask"
> diff --git a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
> index 0b963be56..7a89cac9d 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
> @@ -1,2 +1,14 @@
> +SUMMARY = "Flask extension for sending email"
> +DESCRIPTION = "A Flask extension for sending email"
> +HOMEPAGE = " https://github.com/rduplain/flask-email"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=5b16dfa6d3f275ace5985bb92949f770"
> +
> +SRC_URI[md5sum] = "04b35a42a44ec7aa724ec8ce55e2e08e"
> +SRC_URI[sha256sum] = "22e5eb9a940bf407bcf30410ecc3708f3c56cc44b29c34e1726fe85006935f41"
> +
> +PYPI_PACKAGE = "Flask-Mail"
> +
>   inherit pypi setuptools3
> -require python-flask-mail.inc
> +
> +RDEPENDS_${PN} = "${PYTHON_PN}-flask"
>
> 

[-- Attachment #2: Type: text/html, Size: 3479 bytes --]

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

* Re: [oe] [meta-python][PATCH 5/5] python3-flask-pymongo: Consolidate in a single file
  2020-09-01  8:11 ` [meta-python][PATCH 5/5] python3-flask-pymongo: " Leon Anavi
@ 2020-09-02 15:32   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-09-02 15:32 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2624 bytes --]


On 9/1/20 4:11 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python-flask-pymongo.inc             | 15 ---------------
>   .../python/python3-flask-pymongo_2.3.0.bb       | 17 ++++++++++++++++-
>   2 files changed, 16 insertions(+), 16 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-flask-pymongo.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-flask-pymongo.inc b/meta-python/recipes-devtools/python/python-flask-pymongo.inc
> deleted file mode 100644
> index 5fc35c193..000000000
> --- a/meta-python/recipes-devtools/python/python-flask-pymongo.inc
> +++ /dev/null
> @@ -1,15 +0,0 @@
> -SUMMARY = "PyMongo support for Flask applications"
> -DESCRIPTION = "PyMongo support for Flask applications."
> -HOMEPAGE = "https://github.com/mitsuhiko/flask/"
> -SECTION = "devel/python"
> -LICENSE = "BSD-2-Clause"
> -LIC_FILES_CHKSUM = "file://flask_pymongo/wrappers.py;beginline=1;endline=24;md5=424c4e1047d28e01b4e4634a069c019d"
> -
> -SRC_URI[md5sum] = "94df71e6800b1d7915cc91a74b70f959"
> -SRC_URI[sha256sum] = "620eb02dc8808a5fcb90f26cab6cba9d6bf497b15032ae3ca99df80366e33314"
> -
> -PYPI_PACKAGE = "Flask-PyMongo"
> -
> -DEPENDS = "${PYTHON_PN}-vcversioner ${PYTHON_PN}-vcversioner-native"
> -
> -RDEPENDS_${PN} = "${PYTHON_PN}-pymongo ${PYTHON_PN}-flask"
> diff --git a/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb b/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb
> index 2102554b6..e3c744d92 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb
> @@ -1,2 +1,17 @@
> +SUMMARY = "PyMongo support for Flask applications"
> +DESCRIPTION = "PyMongo support for Flask applications."
> +HOMEPAGE = "https://github.com/mitsuhiko/flask/"
> +SECTION = "devel/python"
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://flask_pymongo/wrappers.py;beginline=1;endline=24;md5=424c4e1047d28e01b4e4634a069c019d"
> +
> +SRC_URI[md5sum] = "94df71e6800b1d7915cc91a74b70f959"
> +SRC_URI[sha256sum] = "620eb02dc8808a5fcb90f26cab6cba9d6bf497b15032ae3ca99df80366e33314"
> +
> +PYPI_PACKAGE = "Flask-PyMongo"
> +
>   inherit pypi setuptools3
> -require python-flask-pymongo.inc
> +
> +DEPENDS = "${PYTHON_PN}-vcversioner ${PYTHON_PN}-vcversioner-native"
> +
> +RDEPENDS_${PN} = "${PYTHON_PN}-pymongo ${PYTHON_PN}-flask"
>
> 

[-- Attachment #2: Type: text/html, Size: 3960 bytes --]

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

end of thread, other threads:[~2020-09-02 15:32 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-01  8:11 [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Leon Anavi
2020-09-01  8:11 ` [meta-python][PATCH 2/5] python3-traitlets: Upgrade 4.3.3 -> 5.0.0 Leon Anavi
2020-09-02 15:31   ` [oe] " Trevor Gamblin
2020-09-01  8:11 ` [meta-python][PATCH 3/5] python3-flask-nav: Consolidate in a single file Leon Anavi
2020-09-02 15:31   ` [oe] " Trevor Gamblin
2020-09-01  8:11 ` [meta-python][PATCH 4/5] python3-flask-mail: " Leon Anavi
2020-09-02 15:31   ` [oe] " Trevor Gamblin
2020-09-01  8:11 ` [meta-python][PATCH 5/5] python3-flask-pymongo: " Leon Anavi
2020-09-02 15:32   ` [oe] " Trevor Gamblin
2020-09-02 15:30 ` [oe] [meta-python][PATCH 1/5] python3-luma-core: Upgrade 1.16.0 -> 1.16.1 Trevor Gamblin

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.