From 23c4129cc7cf5608b2fbcacd9e83fdd18495aa17 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 23 Oct 2023 16:47:23 +0800 Subject: python3-huey: upgrade 2.4.5 -> 2.5.0 Changelog: ========== -Check to ensure the gevent monkeypatch was applied when running the consumer with greenlet workers, log warning if it is not. -Explicitly clear the revoked flag on task instances after execution (#713). -Add support for delay=, eta= in Huey's .s() and .then() -Add support for rescheduling callback pipelines when rescheduling a task. -Add an on_commit_task() decorator for Django extension that will enqueue the task after any database changes have been committed. -Allow overriding the delay and eta when raising a RetryTask exception. -Add a very simple ResultGroup.as_completed() helper to provide a way to deal with multiple results as they become available. -Add an asyncio helper for resolving task results asynchronously. -Fix bug in SIGINT and SIGTERM behavior for gevent users. -Include lock name when a task fails due to TaskLocked exception Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj (cherry picked from commit 4d8d7e6eeaa9389f546eb492b0c4c21f965fc46d) Signed-off-by: Armin Kuster --- .../recipes-devtools/python/python3-huey_2.4.5.bb | 18 ------------------ .../recipes-devtools/python/python3-huey_2.5.0.bb | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 18 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-huey_2.4.5.bb create mode 100644 meta-python/recipes-devtools/python/python3-huey_2.5.0.bb diff --git a/meta-python/recipes-devtools/python/python3-huey_2.4.5.bb b/meta-python/recipes-devtools/python/python3-huey_2.4.5.bb deleted file mode 100644 index dbddd6cb80..0000000000 --- a/meta-python/recipes-devtools/python/python3-huey_2.4.5.bb +++ /dev/null @@ -1,18 +0,0 @@ -SUMMARY = "a little task queue for python" -SECTION = "devel/python" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=5cac039fcc82f01141cc170b48f315d4" - -PYPI_PACKAGE = "huey" - -SRC_URI[sha256sum] = "760cf150deff1fa34b852da37701a5a750d1148f03ea07aa2b3764dc6060b4c3" - -RDEPENDS:${PN} += " \ - python3-datetime \ - python3-logging \ - python3-multiprocessing \ - python3-json \ -" - -inherit pypi setuptools3 - diff --git a/meta-python/recipes-devtools/python/python3-huey_2.5.0.bb b/meta-python/recipes-devtools/python/python3-huey_2.5.0.bb new file mode 100644 index 0000000000..c6e5606090 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-huey_2.5.0.bb @@ -0,0 +1,18 @@ +SUMMARY = "a little task queue for python" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=5cac039fcc82f01141cc170b48f315d4" + +PYPI_PACKAGE = "huey" + +SRC_URI[sha256sum] = "2ffb52fb5c46a1b0d53c79d59df3622312b27e2ab68d81a580985a8ea4ca3480" + +RDEPENDS:${PN} += " \ + python3-datetime \ + python3-logging \ + python3-multiprocessing \ + python3-json \ +" + +inherit pypi setuptools3 + -- cgit v1.2.3-54-g00ecf