All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0
@ 2020-08-27 14:54 Leon Anavi
  2020-08-27 14:54 ` [meta-python][PATCH 2/7] python3-flask-migrate: Consolidate in a single file Leon Anavi
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Leon Anavi @ 2020-08-27 14:54 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.0.0:

- Drop Python2 support
- Tests moved from unittest to pytest
- Domain and caching support from Flask-BabelEx
- Documentation moved from python-hosted to Github Pages.
- CI moved from Travisci to Github Actions
- Small documentation improvements.
- Removed uncessary checks on get_translations()
- localeselector and timezoneselector can be changed after
  creation.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...thon3-flask-babel_1.0.0.bb => python3-flask-babel_2.0.0.bb} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-flask-babel_1.0.0.bb => python3-flask-babel_2.0.0.bb} (70%)

diff --git a/meta-python/recipes-devtools/python/python3-flask-babel_1.0.0.bb b/meta-python/recipes-devtools/python/python3-flask-babel_2.0.0.bb
similarity index 70%
rename from meta-python/recipes-devtools/python/python3-flask-babel_1.0.0.bb
rename to meta-python/recipes-devtools/python/python3-flask-babel_2.0.0.bb
index d968be3ee..8a01b49b4 100644
--- a/meta-python/recipes-devtools/python/python3-flask-babel_1.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-babel_2.0.0.bb
@@ -2,7 +2,8 @@ DESCRIPTION = "i18n and l10n support for Flask based on babel and pytz"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=51917f3e8e858f5ae295a7d0e2eb3cc9"
 
-SRC_URI[sha256sum] = "d6a70468f9a8919d59fba2a291a003da3a05ff884275dddbd965f3b98b09ab3e"
+SRC_URI[md5sum] = "50d5e92d96ef58787bf85b5a1b0a5567"
+SRC_URI[sha256sum] = "f9faf45cdb2e1a32ea2ec14403587d4295108f35017a7821a2b1acb8cfd9257d"
 
 PYPI_PACKAGE = "Flask-Babel"
 
-- 
2.17.1


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

* [meta-python][PATCH 2/7] python3-flask-migrate: Consolidate in a single file
  2020-08-27 14:54 [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Leon Anavi
@ 2020-08-27 14:54 ` Leon Anavi
  2020-08-31 13:11   ` [oe] " Trevor Gamblin
  2020-08-27 14:55 ` [meta-python][PATCH 3/7] python3-flask-migrate: Upgrade 2.5.2 -> 2.5.3 Leon Anavi
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-08-27 14:54 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-migrate.inc              | 14 --------------
 .../python/python3-flask-migrate_2.5.2.bb        | 16 +++++++++++++++-
 2 files changed, 15 insertions(+), 15 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-flask-migrate.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-migrate.inc b/meta-python/recipes-devtools/python/python-flask-migrate.inc
deleted file mode 100644
index 5202f8be0..000000000
--- a/meta-python/recipes-devtools/python/python-flask-migrate.inc
+++ /dev/null
@@ -1,14 +0,0 @@
-DESCRIPTION = "SQLAlchemy database migrations for Flask applications using Alembic"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
-
-SRC_URI[md5sum] = "bedeb0366740fda6912fea683be11968"
-SRC_URI[sha256sum] = "a96ff1875a49a40bd3e8ac04fce73fdb0870b9211e6168608cbafa4eb839d502"
-
-PYPI_PACKAGE = "Flask-Migrate"
-
-RDEPENDS_${PN} += "\
-    ${PYTHON_PN}-flask-sqlalchemy \
-    ${PYTHON_PN}-alembic \
-    ${PYTHON_PN}-flask \
-    "
diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
index c98cbfddb..78ec665ef 100644
--- a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
@@ -1,2 +1,16 @@
+DESCRIPTION = "SQLAlchemy database migrations for Flask applications using Alembic"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
+
+SRC_URI[md5sum] = "bedeb0366740fda6912fea683be11968"
+SRC_URI[sha256sum] = "a96ff1875a49a40bd3e8ac04fce73fdb0870b9211e6168608cbafa4eb839d502"
+
+PYPI_PACKAGE = "Flask-Migrate"
+
 inherit pypi setuptools3
-require python-flask-migrate.inc
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-flask-sqlalchemy \
+    ${PYTHON_PN}-alembic \
+    ${PYTHON_PN}-flask \
+    "
-- 
2.17.1


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

* [meta-python][PATCH 3/7] python3-flask-migrate: Upgrade 2.5.2 -> 2.5.3
  2020-08-27 14:54 [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Leon Anavi
  2020-08-27 14:54 ` [meta-python][PATCH 2/7] python3-flask-migrate: Consolidate in a single file Leon Anavi
@ 2020-08-27 14:55 ` Leon Anavi
  2020-08-31 13:12   ` [oe] " Trevor Gamblin
  2020-08-27 14:55 ` [meta-python][PATCH 4/7] python3-flask-restful: Consolidate in a single file Leon Anavi
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-08-27 14:55 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.5.3:

- Allow Path objects to be used as directory parameter
- Use same database URLs as Flask-SQLAlchemy
- Document how to set up with init_app method
- Document how to include a message in initial migrate
- Remove checks for alembic 0.7.0. Flask-Migrate requires alembic
  >= 0.7 in its setup.py file, which makes all the checks for
  this version obsolete.
- Use sys.executable in tests, also re-order imports
- Cosmetic improvements to help messages

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...-flask-migrate_2.5.2.bb => python3-flask-migrate_2.5.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-flask-migrate_2.5.2.bb => python3-flask-migrate_2.5.3.bb} (71%)

diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
rename to meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb
index 78ec665ef..54fa1dd97 100644
--- a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb
@@ -2,8 +2,8 @@ DESCRIPTION = "SQLAlchemy database migrations for Flask applications using Alemb
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
 
-SRC_URI[md5sum] = "bedeb0366740fda6912fea683be11968"
-SRC_URI[sha256sum] = "a96ff1875a49a40bd3e8ac04fce73fdb0870b9211e6168608cbafa4eb839d502"
+SRC_URI[md5sum] = "707d4a5fd4e11d3113a1228aa7793176"
+SRC_URI[sha256sum] = "a69d508c2e09d289f6e55a417b3b8c7bfe70e640f53d2d9deb0d056a384f37ee"
 
 PYPI_PACKAGE = "Flask-Migrate"
 
-- 
2.17.1


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

* [meta-python][PATCH 4/7] python3-flask-restful: Consolidate in a single file
  2020-08-27 14:54 [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Leon Anavi
  2020-08-27 14:54 ` [meta-python][PATCH 2/7] python3-flask-migrate: Consolidate in a single file Leon Anavi
  2020-08-27 14:55 ` [meta-python][PATCH 3/7] python3-flask-migrate: Upgrade 2.5.2 -> 2.5.3 Leon Anavi
@ 2020-08-27 14:55 ` Leon Anavi
  2020-08-31 13:12   ` [oe] " Trevor Gamblin
  2020-08-27 14:55 ` [meta-python][PATCH 5/7] python3-flask-restful: Upgrade 0.3.7 -> 0.3.8 Leon Anavi
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-08-27 14:55 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-restful.inc            | 16 ----------------
 .../python/python3-flask-restful_0.3.7.bb      | 18 ++++++++++++++++--
 2 files changed, 16 insertions(+), 18 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-flask-restful.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-restful.inc b/meta-python/recipes-devtools/python/python-flask-restful.inc
deleted file mode 100644
index dcbcd0d76..000000000
--- a/meta-python/recipes-devtools/python/python-flask-restful.inc
+++ /dev/null
@@ -1,16 +0,0 @@
-SUMMARY = "Simple framework for creating REST APIs"
-DESCRIPTION = "\
-Flask-RESTful is an extension for Flask that adds support for quickly building \
-REST APIs"
-HOMEPAGE = "https://github.com/flask-restful/flask-restful"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=685bb55ed99a366bb431995f5eef2783"
-
-SRC_URI[md5sum] = "a7217ef1159be38af5faf61aa09aabef"
-SRC_URI[sha256sum] = "f8240ec12349afe8df1db168ea7c336c4e5b0271a36982bff7394f93275f2ca9"
-
-inherit pypi
-
-PYPI_PACKAGE = "Flask-RESTful"
-
-RDEPENDS_${PN} = "${PYTHON_PN}-flask"
diff --git a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
index 6bff59a56..ad2757838 100644
--- a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
@@ -1,2 +1,16 @@
-inherit setuptools3
-require python-flask-restful.inc
+SUMMARY = "Simple framework for creating REST APIs"
+DESCRIPTION = "\
+Flask-RESTful is an extension for Flask that adds support for quickly building \
+REST APIs"
+HOMEPAGE = "https://github.com/flask-restful/flask-restful"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=685bb55ed99a366bb431995f5eef2783"
+
+SRC_URI[md5sum] = "a7217ef1159be38af5faf61aa09aabef"
+SRC_URI[sha256sum] = "f8240ec12349afe8df1db168ea7c336c4e5b0271a36982bff7394f93275f2ca9"
+
+inherit pypi setuptools3
+
+PYPI_PACKAGE = "Flask-RESTful"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-flask"
-- 
2.17.1


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

* [meta-python][PATCH 5/7] python3-flask-restful: Upgrade 0.3.7 -> 0.3.8
  2020-08-27 14:54 [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-08-27 14:55 ` [meta-python][PATCH 4/7] python3-flask-restful: Consolidate in a single file Leon Anavi
@ 2020-08-27 14:55 ` Leon Anavi
  2020-08-31 13:12   ` [oe] " Trevor Gamblin
  2020-08-27 14:55 ` [meta-python][PATCH 6/7] python3-flask-sqlalchemy: Consolidate in a single file Leon Anavi
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-08-27 14:55 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.3.8:

- Add Python 3.8 support
- Fix wrongly parsed Decimal fields
- Fix overridden response when calling abort with Response
- Various small fixes and updates to documentation

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...-flask-restful_0.3.7.bb => python3-flask-restful_0.3.8.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-flask-restful_0.3.7.bb => python3-flask-restful_0.3.8.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.8.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
rename to meta-python/recipes-devtools/python/python3-flask-restful_0.3.8.bb
index ad2757838..3de916afd 100644
--- a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.8.bb
@@ -6,8 +6,8 @@ HOMEPAGE = "https://github.com/flask-restful/flask-restful"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=685bb55ed99a366bb431995f5eef2783"
 
-SRC_URI[md5sum] = "a7217ef1159be38af5faf61aa09aabef"
-SRC_URI[sha256sum] = "f8240ec12349afe8df1db168ea7c336c4e5b0271a36982bff7394f93275f2ca9"
+SRC_URI[md5sum] = "e8051ff104ab4b3b867ba18d28953fae"
+SRC_URI[sha256sum] = "5ea9a5991abf2cb69b4aac19793faac6c032300505b325687d7c305ffaa76915"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 6/7] python3-flask-sqlalchemy: Consolidate in a single file
  2020-08-27 14:54 [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-08-27 14:55 ` [meta-python][PATCH 5/7] python3-flask-restful: Upgrade 0.3.7 -> 0.3.8 Leon Anavi
@ 2020-08-27 14:55 ` Leon Anavi
  2020-08-31 13:13   ` [oe] " Trevor Gamblin
  2020-08-27 14:55 ` [meta-python][PATCH 7/7] python3-flask-sqlalchemy: Upgrade 2.4.1 -> 2.4.4 Leon Anavi
  2020-08-31 13:11 ` [oe] [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-08-27 14:55 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-sqlalchemy.inc               | 10 ----------
 .../python/python3-flask-sqlalchemy_2.4.1.bb         | 12 +++++++++++-
 2 files changed, 11 insertions(+), 11 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc b/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
deleted file mode 100644
index 86ba9dda5..000000000
--- a/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
+++ /dev/null
@@ -1,10 +0,0 @@
-DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
-
-SRC_URI[md5sum] = "1f5781cf3e1a2b1aabda47a5b20d2073"
-SRC_URI[sha256sum] = "6974785d913666587949f7c2946f7001e4fa2cb2d19f4e69ead02e4b8f50b33d"
-
-PYPI_PACKAGE = "Flask-SQLAlchemy"
-
-RDEPENDS_${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask"
diff --git a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
index 07f45bcff..2c6110d0b 100644
--- a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
@@ -1,2 +1,12 @@
+DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
+
+SRC_URI[md5sum] = "1f5781cf3e1a2b1aabda47a5b20d2073"
+SRC_URI[sha256sum] = "6974785d913666587949f7c2946f7001e4fa2cb2d19f4e69ead02e4b8f50b33d"
+
+PYPI_PACKAGE = "Flask-SQLAlchemy"
+
 inherit pypi setuptools3
-require python-flask-sqlalchemy.inc
+
+RDEPENDS_${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask"
-- 
2.17.1


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

* [meta-python][PATCH 7/7] python3-flask-sqlalchemy: Upgrade 2.4.1 -> 2.4.4
  2020-08-27 14:54 [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-08-27 14:55 ` [meta-python][PATCH 6/7] python3-flask-sqlalchemy: Consolidate in a single file Leon Anavi
@ 2020-08-27 14:55 ` Leon Anavi
  2020-08-31 13:13   ` [oe] " Trevor Gamblin
  2020-08-31 13:11 ` [oe] [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-08-27 14:55 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.4.4:

- Change base class of meta mixins to type. This fixes an issue
  caused by a regression in CPython 3.8.4.
- Deprecate SQLALCHEMY_COMMIT_ON_TEARDOWN as it can cause various
  design issues that are difficult to debug.
  Call db.session.commit() directly instead.
- Fix bad pagination when records are de-duped.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...-sqlalchemy_2.4.1.bb => python3-flask-sqlalchemy_2.4.4.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-flask-sqlalchemy_2.4.1.bb => python3-flask-sqlalchemy_2.4.4.bb} (67%)

diff --git a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.4.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
rename to meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.4.bb
index 2c6110d0b..2755c7d6b 100644
--- a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.4.bb
@@ -2,8 +2,8 @@ DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
 
-SRC_URI[md5sum] = "1f5781cf3e1a2b1aabda47a5b20d2073"
-SRC_URI[sha256sum] = "6974785d913666587949f7c2946f7001e4fa2cb2d19f4e69ead02e4b8f50b33d"
+SRC_URI[md5sum] = "63a522cb82a75292dc8bc77b6d26187a"
+SRC_URI[sha256sum] = "bfc7150eaf809b1c283879302f04c42791136060c6eeb12c0c6674fb1291fae5"
 
 PYPI_PACKAGE = "Flask-SQLAlchemy"
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0
  2020-08-27 14:54 [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-08-27 14:55 ` [meta-python][PATCH 7/7] python3-flask-sqlalchemy: Upgrade 2.4.1 -> 2.4.4 Leon Anavi
@ 2020-08-31 13:11 ` Trevor Gamblin
  6 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-08-31 13:11 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/27/20 10:54 AM, Leon Anavi wrote:
> Upgrade to release 2.0.0:
>
> - Drop Python2 support
> - Tests moved from unittest to pytest
> - Domain and caching support from Flask-BabelEx
> - Documentation moved from python-hosted to Github Pages.
> - CI moved from Travisci to Github Actions
> - Small documentation improvements.
> - Removed uncessary checks on get_translations()
> - localeselector and timezoneselector can be changed after
>    creation.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...thon3-flask-babel_1.0.0.bb => python3-flask-babel_2.0.0.bb} | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-flask-babel_1.0.0.bb => python3-flask-babel_2.0.0.bb} (70%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-flask-babel_1.0.0.bb b/meta-python/recipes-devtools/python/python3-flask-babel_2.0.0.bb
> similarity index 70%
> rename from meta-python/recipes-devtools/python/python3-flask-babel_1.0.0.bb
> rename to meta-python/recipes-devtools/python/python3-flask-babel_2.0.0.bb
> index d968be3ee..8a01b49b4 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-babel_1.0.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-babel_2.0.0.bb
> @@ -2,7 +2,8 @@ DESCRIPTION = "i18n and l10n support for Flask based on babel and pytz"
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=51917f3e8e858f5ae295a7d0e2eb3cc9"
>   
> -SRC_URI[sha256sum] = "d6a70468f9a8919d59fba2a291a003da3a05ff884275dddbd965f3b98b09ab3e"
> +SRC_URI[md5sum] = "50d5e92d96ef58787bf85b5a1b0a5567"
> +SRC_URI[sha256sum] = "f9faf45cdb2e1a32ea2ec14403587d4295108f35017a7821a2b1acb8cfd9257d"
>   
>   PYPI_PACKAGE = "Flask-Babel"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/7] python3-flask-migrate: Consolidate in a single file
  2020-08-27 14:54 ` [meta-python][PATCH 2/7] python3-flask-migrate: Consolidate in a single file Leon Anavi
@ 2020-08-31 13:11   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-08-31 13:11 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/27/20 10:54 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-migrate.inc              | 14 --------------
>   .../python/python3-flask-migrate_2.5.2.bb        | 16 +++++++++++++++-
>   2 files changed, 15 insertions(+), 15 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-flask-migrate.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-flask-migrate.inc b/meta-python/recipes-devtools/python/python-flask-migrate.inc
> deleted file mode 100644
> index 5202f8be0..000000000
> --- a/meta-python/recipes-devtools/python/python-flask-migrate.inc
> +++ /dev/null
> @@ -1,14 +0,0 @@
> -DESCRIPTION = "SQLAlchemy database migrations for Flask applications using Alembic"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
> -
> -SRC_URI[md5sum] = "bedeb0366740fda6912fea683be11968"
> -SRC_URI[sha256sum] = "a96ff1875a49a40bd3e8ac04fce73fdb0870b9211e6168608cbafa4eb839d502"
> -
> -PYPI_PACKAGE = "Flask-Migrate"
> -
> -RDEPENDS_${PN} += "\
> -    ${PYTHON_PN}-flask-sqlalchemy \
> -    ${PYTHON_PN}-alembic \
> -    ${PYTHON_PN}-flask \
> -    "
> diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
> index c98cbfddb..78ec665ef 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
> @@ -1,2 +1,16 @@
> +DESCRIPTION = "SQLAlchemy database migrations for Flask applications using Alembic"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
> +
> +SRC_URI[md5sum] = "bedeb0366740fda6912fea683be11968"
> +SRC_URI[sha256sum] = "a96ff1875a49a40bd3e8ac04fce73fdb0870b9211e6168608cbafa4eb839d502"
> +
> +PYPI_PACKAGE = "Flask-Migrate"
> +
>   inherit pypi setuptools3
> -require python-flask-migrate.inc
> +
> +RDEPENDS_${PN} += "\
> +    ${PYTHON_PN}-flask-sqlalchemy \
> +    ${PYTHON_PN}-alembic \
> +    ${PYTHON_PN}-flask \
> +    "
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/7] python3-flask-migrate: Upgrade 2.5.2 -> 2.5.3
  2020-08-27 14:55 ` [meta-python][PATCH 3/7] python3-flask-migrate: Upgrade 2.5.2 -> 2.5.3 Leon Anavi
@ 2020-08-31 13:12   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-08-31 13:12 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/27/20 10:55 AM, Leon Anavi wrote:
> Upgrade to release 2.5.3:
>
> - Allow Path objects to be used as directory parameter
> - Use same database URLs as Flask-SQLAlchemy
> - Document how to set up with init_app method
> - Document how to include a message in initial migrate
> - Remove checks for alembic 0.7.0. Flask-Migrate requires alembic
>    >= 0.7 in its setup.py file, which makes all the checks for
>    this version obsolete.
> - Use sys.executable in tests, also re-order imports
> - Cosmetic improvements to help messages
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...-flask-migrate_2.5.2.bb => python3-flask-migrate_2.5.3.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-flask-migrate_2.5.2.bb => python3-flask-migrate_2.5.3.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
> rename to meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb
> index 78ec665ef..54fa1dd97 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb
> @@ -2,8 +2,8 @@ DESCRIPTION = "SQLAlchemy database migrations for Flask applications using Alemb
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
>   
> -SRC_URI[md5sum] = "bedeb0366740fda6912fea683be11968"
> -SRC_URI[sha256sum] = "a96ff1875a49a40bd3e8ac04fce73fdb0870b9211e6168608cbafa4eb839d502"
> +SRC_URI[md5sum] = "707d4a5fd4e11d3113a1228aa7793176"
> +SRC_URI[sha256sum] = "a69d508c2e09d289f6e55a417b3b8c7bfe70e640f53d2d9deb0d056a384f37ee"
>   
>   PYPI_PACKAGE = "Flask-Migrate"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/7] python3-flask-restful: Consolidate in a single file
  2020-08-27 14:55 ` [meta-python][PATCH 4/7] python3-flask-restful: Consolidate in a single file Leon Anavi
@ 2020-08-31 13:12   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-08-31 13:12 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/27/20 10:55 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-restful.inc            | 16 ----------------
>   .../python/python3-flask-restful_0.3.7.bb      | 18 ++++++++++++++++--
>   2 files changed, 16 insertions(+), 18 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-flask-restful.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-flask-restful.inc b/meta-python/recipes-devtools/python/python-flask-restful.inc
> deleted file mode 100644
> index dcbcd0d76..000000000
> --- a/meta-python/recipes-devtools/python/python-flask-restful.inc
> +++ /dev/null
> @@ -1,16 +0,0 @@
> -SUMMARY = "Simple framework for creating REST APIs"
> -DESCRIPTION = "\
> -Flask-RESTful is an extension for Flask that adds support for quickly building \
> -REST APIs"
> -HOMEPAGE = "https://github.com/flask-restful/flask-restful"
> -LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=685bb55ed99a366bb431995f5eef2783"
> -
> -SRC_URI[md5sum] = "a7217ef1159be38af5faf61aa09aabef"
> -SRC_URI[sha256sum] = "f8240ec12349afe8df1db168ea7c336c4e5b0271a36982bff7394f93275f2ca9"
> -
> -inherit pypi
> -
> -PYPI_PACKAGE = "Flask-RESTful"
> -
> -RDEPENDS_${PN} = "${PYTHON_PN}-flask"
> diff --git a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
> index 6bff59a56..ad2757838 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
> @@ -1,2 +1,16 @@
> -inherit setuptools3
> -require python-flask-restful.inc
> +SUMMARY = "Simple framework for creating REST APIs"
> +DESCRIPTION = "\
> +Flask-RESTful is an extension for Flask that adds support for quickly building \
> +REST APIs"
> +HOMEPAGE = "https://github.com/flask-restful/flask-restful"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=685bb55ed99a366bb431995f5eef2783"
> +
> +SRC_URI[md5sum] = "a7217ef1159be38af5faf61aa09aabef"
> +SRC_URI[sha256sum] = "f8240ec12349afe8df1db168ea7c336c4e5b0271a36982bff7394f93275f2ca9"
> +
> +inherit pypi setuptools3
> +
> +PYPI_PACKAGE = "Flask-RESTful"
> +
> +RDEPENDS_${PN} = "${PYTHON_PN}-flask"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 5/7] python3-flask-restful: Upgrade 0.3.7 -> 0.3.8
  2020-08-27 14:55 ` [meta-python][PATCH 5/7] python3-flask-restful: Upgrade 0.3.7 -> 0.3.8 Leon Anavi
@ 2020-08-31 13:12   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-08-31 13:12 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/27/20 10:55 AM, Leon Anavi wrote:
> Upgrade to release 0.3.8:
>
> - Add Python 3.8 support
> - Fix wrongly parsed Decimal fields
> - Fix overridden response when calling abort with Response
> - Various small fixes and updates to documentation
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...-flask-restful_0.3.7.bb => python3-flask-restful_0.3.8.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-flask-restful_0.3.7.bb => python3-flask-restful_0.3.8.bb} (74%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.8.bb
> similarity index 74%
> rename from meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
> rename to meta-python/recipes-devtools/python/python3-flask-restful_0.3.8.bb
> index ad2757838..3de916afd 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.7.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.8.bb
> @@ -6,8 +6,8 @@ HOMEPAGE = "https://github.com/flask-restful/flask-restful"
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=685bb55ed99a366bb431995f5eef2783"
>   
> -SRC_URI[md5sum] = "a7217ef1159be38af5faf61aa09aabef"
> -SRC_URI[sha256sum] = "f8240ec12349afe8df1db168ea7c336c4e5b0271a36982bff7394f93275f2ca9"
> +SRC_URI[md5sum] = "e8051ff104ab4b3b867ba18d28953fae"
> +SRC_URI[sha256sum] = "5ea9a5991abf2cb69b4aac19793faac6c032300505b325687d7c305ffaa76915"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 6/7] python3-flask-sqlalchemy: Consolidate in a single file
  2020-08-27 14:55 ` [meta-python][PATCH 6/7] python3-flask-sqlalchemy: Consolidate in a single file Leon Anavi
@ 2020-08-31 13:13   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-08-31 13:13 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/27/20 10:55 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-sqlalchemy.inc               | 10 ----------
>   .../python/python3-flask-sqlalchemy_2.4.1.bb         | 12 +++++++++++-
>   2 files changed, 11 insertions(+), 11 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc b/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
> deleted file mode 100644
> index 86ba9dda5..000000000
> --- a/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
> +++ /dev/null
> @@ -1,10 +0,0 @@
> -DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
> -LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
> -
> -SRC_URI[md5sum] = "1f5781cf3e1a2b1aabda47a5b20d2073"
> -SRC_URI[sha256sum] = "6974785d913666587949f7c2946f7001e4fa2cb2d19f4e69ead02e4b8f50b33d"
> -
> -PYPI_PACKAGE = "Flask-SQLAlchemy"
> -
> -RDEPENDS_${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask"
> diff --git a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
> index 07f45bcff..2c6110d0b 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
> @@ -1,2 +1,12 @@
> +DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
> +
> +SRC_URI[md5sum] = "1f5781cf3e1a2b1aabda47a5b20d2073"
> +SRC_URI[sha256sum] = "6974785d913666587949f7c2946f7001e4fa2cb2d19f4e69ead02e4b8f50b33d"
> +
> +PYPI_PACKAGE = "Flask-SQLAlchemy"
> +
>   inherit pypi setuptools3
> -require python-flask-sqlalchemy.inc
> +
> +RDEPENDS_${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 7/7] python3-flask-sqlalchemy: Upgrade 2.4.1 -> 2.4.4
  2020-08-27 14:55 ` [meta-python][PATCH 7/7] python3-flask-sqlalchemy: Upgrade 2.4.1 -> 2.4.4 Leon Anavi
@ 2020-08-31 13:13   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-08-31 13:13 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/27/20 10:55 AM, Leon Anavi wrote:
> Upgrade to release 2.4.4:
>
> - Change base class of meta mixins to type. This fixes an issue
>    caused by a regression in CPython 3.8.4.
> - Deprecate SQLALCHEMY_COMMIT_ON_TEARDOWN as it can cause various
>    design issues that are difficult to debug.
>    Call db.session.commit() directly instead.
> - Fix bad pagination when records are de-duped.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...-sqlalchemy_2.4.1.bb => python3-flask-sqlalchemy_2.4.4.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-flask-sqlalchemy_2.4.1.bb => python3-flask-sqlalchemy_2.4.4.bb} (67%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.4.bb
> similarity index 67%
> rename from meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
> rename to meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.4.bb
> index 2c6110d0b..2755c7d6b 100644
> --- a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.4.4.bb
> @@ -2,8 +2,8 @@ DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
>   
> -SRC_URI[md5sum] = "1f5781cf3e1a2b1aabda47a5b20d2073"
> -SRC_URI[sha256sum] = "6974785d913666587949f7c2946f7001e4fa2cb2d19f4e69ead02e4b8f50b33d"
> +SRC_URI[md5sum] = "63a522cb82a75292dc8bc77b6d26187a"
> +SRC_URI[sha256sum] = "bfc7150eaf809b1c283879302f04c42791136060c6eeb12c0c6674fb1291fae5"
>   
>   PYPI_PACKAGE = "Flask-SQLAlchemy"
>   
>
> 

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

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

end of thread, other threads:[~2020-08-31 13:13 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-27 14:54 [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 Leon Anavi
2020-08-27 14:54 ` [meta-python][PATCH 2/7] python3-flask-migrate: Consolidate in a single file Leon Anavi
2020-08-31 13:11   ` [oe] " Trevor Gamblin
2020-08-27 14:55 ` [meta-python][PATCH 3/7] python3-flask-migrate: Upgrade 2.5.2 -> 2.5.3 Leon Anavi
2020-08-31 13:12   ` [oe] " Trevor Gamblin
2020-08-27 14:55 ` [meta-python][PATCH 4/7] python3-flask-restful: Consolidate in a single file Leon Anavi
2020-08-31 13:12   ` [oe] " Trevor Gamblin
2020-08-27 14:55 ` [meta-python][PATCH 5/7] python3-flask-restful: Upgrade 0.3.7 -> 0.3.8 Leon Anavi
2020-08-31 13:12   ` [oe] " Trevor Gamblin
2020-08-27 14:55 ` [meta-python][PATCH 6/7] python3-flask-sqlalchemy: Consolidate in a single file Leon Anavi
2020-08-31 13:13   ` [oe] " Trevor Gamblin
2020-08-27 14:55 ` [meta-python][PATCH 7/7] python3-flask-sqlalchemy: Upgrade 2.4.1 -> 2.4.4 Leon Anavi
2020-08-31 13:13   ` [oe] " Trevor Gamblin
2020-08-31 13:11 ` [oe] [meta-python][PATCH 1/7] python3-flask-babel: Upgrade 1.0.0 -> 2.0.0 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.