All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/2] python3-pyjwt: Upgrade 2.0.0 -> 2.0.1
@ 2021-01-25  9:30 Leon Anavi
  2021-01-25  9:30 ` [meta-python][PATCH 2/2] python3-pyyaml: Upgrade 5.4 -> 5.4.1 Leon Anavi
  2021-01-27 15:08 ` [oe] [meta-python][PATCH 1/2] python3-pyjwt: Upgrade 2.0.0 -> 2.0.1 Trevor Gamblin
  0 siblings, 2 replies; 4+ messages in thread
From: Leon Anavi @ 2021-01-25  9:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.0.1:

- Rename CHANGELOG.md to CHANGELOG.rst and include in docs
- Fix from_jwk() for all algorithms

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

diff --git a/meta-python/recipes-devtools/python/python3-pyjwt_2.0.0.bb b/meta-python/recipes-devtools/python/python3-pyjwt_2.0.1.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-pyjwt_2.0.0.bb
rename to meta-python/recipes-devtools/python/python3-pyjwt_2.0.1.bb
index aa6531ea3..ed52da4d4 100644
--- a/meta-python/recipes-devtools/python/python3-pyjwt_2.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pyjwt_2.0.1.bb
@@ -5,7 +5,7 @@ HOMEPAGE = "http://github.com/jpadilla/pyjwt"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=68626705a7b513ca8d5f44a3e200ed0c"
 
-SRC_URI[sha256sum] = "7a2b271c6dac2fda9e0c33d176c4253faba2c6c6b3a99c7f28a32c3c97522779"
+SRC_URI[sha256sum] = "a5c70a06e1f33d81ef25eecd50d50bd30e34de1ca8b2b9fa3fe0daaabcf69bf7"
 
 PYPI_PACKAGE = "PyJWT"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 2/2] python3-pyyaml: Upgrade 5.4 -> 5.4.1
  2021-01-25  9:30 [meta-python][PATCH 1/2] python3-pyjwt: Upgrade 2.0.0 -> 2.0.1 Leon Anavi
@ 2021-01-25  9:30 ` Leon Anavi
  2021-01-27 15:09   ` [oe] " Trevor Gamblin
  2021-01-27 15:08 ` [oe] [meta-python][PATCH 1/2] python3-pyjwt: Upgrade 2.0.0 -> 2.0.1 Trevor Gamblin
  1 sibling, 1 reply; 4+ messages in thread
From: Leon Anavi @ 2021-01-25  9:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.4.1:

- Fix stub compat with older pyyaml versions that may unwittingly
  load it

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

diff --git a/meta-python/recipes-devtools/python/python3-pyyaml_5.4.bb b/meta-python/recipes-devtools/python/python3-pyyaml_5.4.1.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-pyyaml_5.4.bb
rename to meta-python/recipes-devtools/python/python3-pyyaml_5.4.1.bb
index e46b608f7..c3025fdc6 100644
--- a/meta-python/recipes-devtools/python/python3-pyyaml_5.4.bb
+++ b/meta-python/recipes-devtools/python/python3-pyyaml_5.4.1.bb
@@ -8,7 +8,7 @@ PYPI_PACKAGE = "PyYAML"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "3c49e39ac034fd64fd576d63bb4db53cda89b362768a67f07749d55f128ac18a"
+SRC_URI[sha256sum] = "607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"
 
 RDEPENDS_${PN} += "\
     ${PYTHON_PN}-datetime \
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/2] python3-pyjwt: Upgrade 2.0.0 -> 2.0.1
  2021-01-25  9:30 [meta-python][PATCH 1/2] python3-pyjwt: Upgrade 2.0.0 -> 2.0.1 Leon Anavi
  2021-01-25  9:30 ` [meta-python][PATCH 2/2] python3-pyyaml: Upgrade 5.4 -> 5.4.1 Leon Anavi
@ 2021-01-27 15:08 ` Trevor Gamblin
  1 sibling, 0 replies; 4+ messages in thread
From: Trevor Gamblin @ 2021-01-27 15:08 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-25 4:30 a.m., Leon Anavi wrote:
> - Rename CHANGELOG.md to CHANGELOG.rst and include in docs
> - Fix from_jwk() for all algorithms
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-pyjwt_2.0.0.bb => python3-pyjwt_2.0.1.bb}   | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-pyjwt_2.0.0.bb => python3-pyjwt_2.0.1.bb} (83%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pyjwt_2.0.0.bb b/meta-python/recipes-devtools/python/python3-pyjwt_2.0.1.bb
> similarity index 83%
> rename from meta-python/recipes-devtools/python/python3-pyjwt_2.0.0.bb
> rename to meta-python/recipes-devtools/python/python3-pyjwt_2.0.1.bb
> index aa6531ea3..ed52da4d4 100644
> --- a/meta-python/recipes-devtools/python/python3-pyjwt_2.0.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pyjwt_2.0.1.bb
> @@ -5,7 +5,7 @@ HOMEPAGE = "http://github.com/jpadilla/pyjwt"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=68626705a7b513ca8d5f44a3e200ed0c"
>   
> -SRC_URI[sha256sum] = "7a2b271c6dac2fda9e0c33d176c4253faba2c6c6b3a99c7f28a32c3c97522779"
> +SRC_URI[sha256sum] = "a5c70a06e1f33d81ef25eecd50d50bd30e34de1ca8b2b9fa3fe0daaabcf69bf7"
>   
>   PYPI_PACKAGE = "PyJWT"
>   inherit pypi setuptools3
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/2] python3-pyyaml: Upgrade 5.4 -> 5.4.1
  2021-01-25  9:30 ` [meta-python][PATCH 2/2] python3-pyyaml: Upgrade 5.4 -> 5.4.1 Leon Anavi
@ 2021-01-27 15:09   ` Trevor Gamblin
  0 siblings, 0 replies; 4+ messages in thread
From: Trevor Gamblin @ 2021-01-27 15:09 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-25 4:30 a.m., Leon Anavi wrote:
> - Fix stub compat with older pyyaml versions that may unwittingly
>    load it
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-pyyaml_5.4.bb => python3-pyyaml_5.4.1.bb}   | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-pyyaml_5.4.bb => python3-pyyaml_5.4.1.bb} (79%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pyyaml_5.4.bb b/meta-python/recipes-devtools/python/python3-pyyaml_5.4.1.bb
> similarity index 79%
> rename from meta-python/recipes-devtools/python/python3-pyyaml_5.4.bb
> rename to meta-python/recipes-devtools/python/python3-pyyaml_5.4.1.bb
> index e46b608f7..c3025fdc6 100644
> --- a/meta-python/recipes-devtools/python/python3-pyyaml_5.4.bb
> +++ b/meta-python/recipes-devtools/python/python3-pyyaml_5.4.1.bb
> @@ -8,7 +8,7 @@ PYPI_PACKAGE = "PyYAML"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[sha256sum] = "3c49e39ac034fd64fd576d63bb4db53cda89b362768a67f07749d55f128ac18a"
> +SRC_URI[sha256sum] = "607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"
>   
>   RDEPENDS_${PN} += "\
>       ${PYTHON_PN}-datetime \
>
> 
>

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

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

end of thread, other threads:[~2021-01-27 15:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-25  9:30 [meta-python][PATCH 1/2] python3-pyjwt: Upgrade 2.0.0 -> 2.0.1 Leon Anavi
2021-01-25  9:30 ` [meta-python][PATCH 2/2] python3-pyyaml: Upgrade 5.4 -> 5.4.1 Leon Anavi
2021-01-27 15:09   ` [oe] " Trevor Gamblin
2021-01-27 15:08 ` [oe] [meta-python][PATCH 1/2] python3-pyjwt: Upgrade 2.0.0 -> 2.0.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.