All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/4] python3-ruamel-yaml: Upgrade 0.17.2 -> 0.17.4
@ 2021-04-08 11:53 Leon Anavi
  2021-04-08 11:53 ` [meta-python][PATCH 2/4] python3-croniter: Upgrade 1.0.10 -> 1.0.11 Leon Anavi
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Leon Anavi @ 2021-04-08 11:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.17.4:

- prevent (empty) comments from throwing assertion error
- fix for issue 382 caused by an error in a format string
- allow expansion of aliases by setting
  ``yaml.composer.return_alias = lambda s: copy.deepcopy(s)``

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-ruamel-yaml_0.17.2.bb => python3-ruamel-yaml_0.17.4.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-ruamel-yaml_0.17.2.bb => python3-ruamel-yaml_0.17.4.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.2.bb b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.4.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.2.bb
rename to meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.4.bb
index 6f15d1e70..2543269fc 100644
--- a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.2.bb
+++ b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.4.bb
@@ -10,7 +10,7 @@ inherit pypi setuptools3
 
 BBCLASSEXTEND = "native nativesdk"
 
-SRC_URI[sha256sum] = "8f1e15421668b9edf30ed02899f5f81aff9808a4271935776f61a99a569a13da"
+SRC_URI[sha256sum] = "44bc6b54fddd45e4bc0619059196679f9e8b79c027f4131bb072e6a22f4d5e28"
 
 do_install_prepend() {
     export RUAMEL_NO_PIP_INSTALL_CHECK=1
-- 
2.17.1


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

* [meta-python][PATCH 2/4] python3-croniter: Upgrade 1.0.10 -> 1.0.11
  2021-04-08 11:53 [meta-python][PATCH 1/4] python3-ruamel-yaml: Upgrade 0.17.2 -> 0.17.4 Leon Anavi
@ 2021-04-08 11:53 ` Leon Anavi
  2021-04-08 11:53 ` [meta-python][PATCH 3/4] python3-decorator: Upgrade 5.0.5 -> 5.0.6 Leon Anavi
  2021-04-08 11:53 ` [meta-python][PATCH 4/4] python3-grpcio-tools: Upgrade 1.36.1 -> 1.37.0 Leon Anavi
  2 siblings, 0 replies; 4+ messages in thread
From: Leon Anavi @ 2021-04-08 11:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.0.11:

- fix bug: bad case:0 6 30 3 *
- Add support for L in the day_of_week component. This enable
  expressions like * * * * L4, which means last Thursday of the
  month.
- Create CroniterUnsupportedSyntaxError exception for situations
  where CRON syntax may be valid but some combinations of features
  is not supported. Currently, this is used when the day_of_week
  component has a combination of literal values and nth/last
  syntax at the same time.
  For example, 0 0 * * 1,L6 or 0 0 * * 15,sat#1 will both raise
  this exception because of mixing literal days of the week with
  nth-weekday or last-weekday syntax. This may impact existing
  cron expressions in prior releases, because 0 0 * * 15,sat#1
  was previously allowed but incorrectly handled.
- Update croniter_range() to allow an alternate croniter class to
  be used. Helpful when using a custom class derived from croniter.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-croniter_1.0.10.bb => python3-croniter_1.0.11.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-croniter_1.0.10.bb => python3-croniter_1.0.11.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb b/meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb
rename to meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb
index 6cd87fea9..ca9bf71a5 100644
--- a/meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb
+++ b/meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=b8ee59850b882cbf623188489ea748e2"
 
 PYPI_PACKAGE = "croniter"
 
-SRC_URI[sha256sum] = "364c48e393060295c3161588a6556d5c890b5c34299973c393adbe4488ca1ecb"
+SRC_URI[sha256sum] = "cd89bcbed4d79f56bbf2c9415c2bbbfd09fadc8a59dbae3898fbca5bab34103d"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/4] python3-decorator: Upgrade 5.0.5 -> 5.0.6
  2021-04-08 11:53 [meta-python][PATCH 1/4] python3-ruamel-yaml: Upgrade 0.17.2 -> 0.17.4 Leon Anavi
  2021-04-08 11:53 ` [meta-python][PATCH 2/4] python3-croniter: Upgrade 1.0.10 -> 1.0.11 Leon Anavi
@ 2021-04-08 11:53 ` Leon Anavi
  2021-04-08 11:53 ` [meta-python][PATCH 4/4] python3-grpcio-tools: Upgrade 1.36.1 -> 1.37.0 Leon Anavi
  2 siblings, 0 replies; 4+ messages in thread
From: Leon Anavi @ 2021-04-08 11:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.0.6:

- The decorator module was not copying the module attribute anymore

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-decorator_5.0.5.bb => python3-decorator_5.0.6.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-decorator_5.0.5.bb => python3-decorator_5.0.6.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-decorator_5.0.5.bb b/meta-python/recipes-devtools/python/python3-decorator_5.0.6.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-decorator_5.0.5.bb
rename to meta-python/recipes-devtools/python/python3-decorator_5.0.6.bb
index 47daba8a0..9e837b719 100644
--- a/meta-python/recipes-devtools/python/python3-decorator_5.0.5.bb
+++ b/meta-python/recipes-devtools/python/python3-decorator_5.0.6.bb
@@ -9,7 +9,7 @@ decorator, just because you can."
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=be2fd2007972bf96c08af3293d728b22"
 
-SRC_URI[sha256sum] = "acda948ffcfe4bd0c4a57834b74ad968b91925b8201b740ca9d46fb8c5c618ce"
+SRC_URI[sha256sum] = "f2e71efb39412bfd23d878e896a51b07744f2e2250b2e87d158e76828c5ae202"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/4] python3-grpcio-tools: Upgrade 1.36.1 -> 1.37.0
  2021-04-08 11:53 [meta-python][PATCH 1/4] python3-ruamel-yaml: Upgrade 0.17.2 -> 0.17.4 Leon Anavi
  2021-04-08 11:53 ` [meta-python][PATCH 2/4] python3-croniter: Upgrade 1.0.10 -> 1.0.11 Leon Anavi
  2021-04-08 11:53 ` [meta-python][PATCH 3/4] python3-decorator: Upgrade 5.0.5 -> 5.0.6 Leon Anavi
@ 2021-04-08 11:53 ` Leon Anavi
  2 siblings, 0 replies; 4+ messages in thread
From: Leon Anavi @ 2021-04-08 11:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.37.0:

- use boringssl asm optimizations in aarch64 wheel source build.
- Clarify Guarantees about grpc.Future Interface.
- Use crosscompilation to build python armv7 wheels.
- [Aio] Add time_remaining method to ServicerContext.
- Standardize all environment variable boolean configuration in
  python's setup.py.
- Crosscompile python aarch64 wheels with dockcross.
- Fix Signal Safety Issue.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...n3-grpcio-tools_1.36.1.bb => python3-grpcio-tools_1.37.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio-tools_1.36.1.bb => python3-grpcio-tools_1.37.0.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.36.1.bb b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.37.0.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-grpcio-tools_1.36.1.bb
rename to meta-python/recipes-devtools/python/python3-grpcio-tools_1.37.0.bb
index da571d3a2..d1b934bd0 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.36.1.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.37.0.bb
@@ -11,7 +11,7 @@ DEPENDS += "${PYTHON_PN}-grpcio"
 
 SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch"
 
-SRC_URI[sha256sum] = "80ef584f7b917f575e4b8f2ec59cd4a4d98c2046e801a735f3136b05742a36a6"
+SRC_URI[sha256sum] = "3ec510c1b6bfc32effc639acf9a055e72dab7a7b6757bf72f2132790d6a7cf1c"
 
 RDEPENDS_${PN} = "${PYTHON_PN}-grpcio"
 
-- 
2.17.1


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

end of thread, other threads:[~2021-04-08 11:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-08 11:53 [meta-python][PATCH 1/4] python3-ruamel-yaml: Upgrade 0.17.2 -> 0.17.4 Leon Anavi
2021-04-08 11:53 ` [meta-python][PATCH 2/4] python3-croniter: Upgrade 1.0.10 -> 1.0.11 Leon Anavi
2021-04-08 11:53 ` [meta-python][PATCH 3/4] python3-decorator: Upgrade 5.0.5 -> 5.0.6 Leon Anavi
2021-04-08 11:53 ` [meta-python][PATCH 4/4] python3-grpcio-tools: Upgrade 1.36.1 -> 1.37.0 Leon Anavi

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.