All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3
@ 2021-01-08 10:28 Leon Anavi
  2021-01-08 10:28 ` [meta-python][PATCH 2/5] python3-coloredlogs: Upgrade 14.0 -> 15.0 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2021-01-08 10:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.7.3:

- Use Brotli instead of brotlipy
- Made exceptions pickleable. Also changed the repr of some
  exceptions.
- Raise a ClientResponseError instead of an AssertionError for
  a blank HTTP Reason Phrase.
- Fix web_middlewares.normalize_path_middleware behavior for
  patch without slash.
- Fix overshadowing of overlapped sub-applications prefixes.
- Make BaseConnector.close() a coroutine and wait until the client
  closes all connections. Drop deprecated "with Connector():"
  syntax.
- Reset the sock_read timeout each time data is received for a
  aiohttp.client response.
- Fixed type annotation for add_view method of UrlDispatcher to
  accept any subclass of View
- Fixed querying the address families from DNS that the current
  host supports.
- Change return type of MultipartReader.aiter() and
  BodyPartReader.aiter() to AsyncIterator.
- Provide x86 Windows wheels.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-aiohttp_3.7.2.bb => python3-aiohttp_3.7.3.bb}     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-aiohttp_3.7.2.bb => python3-aiohttp_3.7.3.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.3.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
rename to meta-python/recipes-devtools/python/python3-aiohttp_3.7.3.bb
index c98e3aee7..bccbd4b0e 100644
--- a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
+++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.3.bb
@@ -4,8 +4,7 @@ HOMEPAGE = "https://github.com/aio-libs/aiohttp"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3bf3d48554bdca1ea7fdb48de378c2ca"
 
-SRC_URI[md5sum] = "dcf770341241aa09340653a1562ca816"
-SRC_URI[sha256sum] = "c6da1af59841e6d43255d386a2c4bfb59c0a3b262bdb24325cc969d211be6070"
+SRC_URI[sha256sum] = "9c1a81af067e72261c9cbe33ea792893e83bc6aa987bfbd6fdc1e5e7b22777c4"
 
 PYPI_PACKAGE = "aiohttp"
 inherit setuptools3 pypi
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-coloredlogs: Upgrade 14.0 -> 15.0
  2021-01-08 10:28 [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 Leon Anavi
@ 2021-01-08 10:28 ` Leon Anavi
  2021-01-12 16:09   ` [oe] " Trevor Gamblin
  2021-01-08 10:28 ` [meta-python][PATCH 3/5] python3-jsonrpcserver: Upgrade 4.1.3 -> 4.2.0 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-01-08 10:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 15.0:

- Don’t enable system logging on MacOS and Windows anymore.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...python3-coloredlogs_14.0.bb => python3-coloredlogs_15.0.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-coloredlogs_14.0.bb => python3-coloredlogs_15.0.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb b/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
rename to meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb
index 64f3008ee..daeda6b2e 100644
--- a/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
+++ b/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb
@@ -4,8 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b"
 
-SRC_URI[md5sum] = "34cd8ef3f758b10c6f1482b2614a81f2"
-SRC_URI[sha256sum] = "a1fab193d2053aa6c0a97608c4342d031f1f93a3d1218432c59322441d31a505"
+SRC_URI[sha256sum] = "5e78691e2673a8e294499e1832bb13efcfb44a86b92e18109fa18951093218ab"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-jsonrpcserver: Upgrade 4.1.3 -> 4.2.0
  2021-01-08 10:28 [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 Leon Anavi
  2021-01-08 10:28 ` [meta-python][PATCH 2/5] python3-coloredlogs: Upgrade 14.0 -> 15.0 Leon Anavi
@ 2021-01-08 10:28 ` Leon Anavi
  2021-01-12 16:09   ` [oe] " Trevor Gamblin
  2021-01-08 10:28 ` [meta-python][PATCH 4/5] python3-pymisp: Upgrade 2.4.133 -> 2.4.135.3 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-01-08 10:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.2.0:

- Add ability to use custom serializer and deserializer
- Add ability to use custom method name
- Deny additional parameters in json-rpc request

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...3-jsonrpcserver_4.1.3.bb => python3-jsonrpcserver_4.2.0.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-jsonrpcserver_4.1.3.bb => python3-jsonrpcserver_4.2.0.bb} (76%)

diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.2.0.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
rename to meta-python/recipes-devtools/python/python3-jsonrpcserver_4.2.0.bb
index 75a0926f0..53f01f622 100644
--- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.2.0.bb
@@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/bcb/jsonrpcserver"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c89120516900f96f4c60d35fdc4c3f15"
 
-SRC_URI[md5sum] = "e73b0bd90e99115d3f9e0ac42882c5b7"
-SRC_URI[sha256sum] = "649680c293facb6ae7c3f5c8028e4623c55195db5216847e9f25f85cba2d443a"
+SRC_URI[sha256sum] = "0c9e5b9445621138521e912016ae39b3badadd2607140dcbb0c8062934ab4854"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-pymisp: Upgrade 2.4.133 -> 2.4.135.3
  2021-01-08 10:28 [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 Leon Anavi
  2021-01-08 10:28 ` [meta-python][PATCH 2/5] python3-coloredlogs: Upgrade 14.0 -> 15.0 Leon Anavi
  2021-01-08 10:28 ` [meta-python][PATCH 3/5] python3-jsonrpcserver: Upgrade 4.1.3 -> 4.2.0 Leon Anavi
@ 2021-01-08 10:28 ` Leon Anavi
  2021-01-12 16:09   ` [oe] " Trevor Gamblin
  2021-01-08 10:28 ` [meta-python][PATCH 5/5] python3-parso: Upgrade 0.8.0 -> 0.8.1 Leon Anavi
  2021-01-12 16:08 ` [oe] [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-01-08 10:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.4.135.3:

- Bump version.
- Improve typing.
- Improve add_attribute with a list.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pymisp_2.4.133.bb => python3-pymisp_2.4.135.3.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pymisp_2.4.133.bb => python3-pymisp_2.4.135.3.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.135.3.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb
rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.135.3.bb
index 28a24fed5..bbfc0459d 100644
--- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb
+++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.135.3.bb
@@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/MISP/PyMISP"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
 
-SRC_URI[md5sum] = "00e258da18f59845687f58389a2e8e12"
-SRC_URI[sha256sum] = "4a2a8a4da78c6321550522d5cf1575c095773d0867c0a4f5157a658f6e1994d5"
+SRC_URI[sha256sum] = "f0bbdd77358223ba75c9cc40f192c7a2a7a5838bdd08b28381f71d220151ea8a"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-parso: Upgrade 0.8.0 -> 0.8.1
  2021-01-08 10:28 [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-01-08 10:28 ` [meta-python][PATCH 4/5] python3-pymisp: Upgrade 2.4.133 -> 2.4.135.3 Leon Anavi
@ 2021-01-08 10:28 ` Leon Anavi
  2021-01-12 16:09   ` [oe] " Trevor Gamblin
  2021-01-12 16:08 ` [oe] [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-01-08 10:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.1:

- Various small bugfixes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-parso_0.8.0.bb => python3-parso_0.8.1.bb}  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-parso_0.8.0.bb => python3-parso_0.8.1.bb} (65%)

diff --git a/meta-python/recipes-devtools/python/python3-parso_0.8.0.bb b/meta-python/recipes-devtools/python/python3-parso_0.8.1.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-parso_0.8.0.bb
rename to meta-python/recipes-devtools/python/python3-parso_0.8.1.bb
index 507087909..9e4ede529 100644
--- a/meta-python/recipes-devtools/python/python3-parso_0.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-parso_0.8.1.bb
@@ -6,7 +6,6 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=cbaa2675b2424d771451332a7a69503f"
 
 PYPI_PACKAGE = "parso"
 
-SRC_URI[md5sum] = "ee3592994bfc0d0843790544c1b2b702"
-SRC_URI[sha256sum] = "2b6db14759c528d857eeb9eac559c2166b2554548af39f5198bdfb976f72aa64"
+SRC_URI[sha256sum] = "8519430ad07087d4c997fda3a7918f7cfa27cb58972a8c89c2a0295a1c940e9e"
 
 inherit setuptools3 pypi
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3
  2021-01-08 10:28 [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 Leon Anavi
                   ` (3 preceding siblings ...)
  2021-01-08 10:28 ` [meta-python][PATCH 5/5] python3-parso: Upgrade 0.8.0 -> 0.8.1 Leon Anavi
@ 2021-01-12 16:08 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-01-12 16:08 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-08 5:28 a.m., Leon Anavi wrote:
> - Use Brotli instead of brotlipy
> - Made exceptions pickleable. Also changed the repr of some
>    exceptions.
> - Raise a ClientResponseError instead of an AssertionError for
>    a blank HTTP Reason Phrase.
> - Fix web_middlewares.normalize_path_middleware behavior for
>    patch without slash.
> - Fix overshadowing of overlapped sub-applications prefixes.
> - Make BaseConnector.close() a coroutine and wait until the client
>    closes all connections. Drop deprecated "with Connector():"
>    syntax.
> - Reset the sock_read timeout each time data is received for a
>    aiohttp.client response.
> - Fixed type annotation for add_view method of UrlDispatcher to
>    accept any subclass of View
> - Fixed querying the address families from DNS that the current
>    host supports.
> - Change return type of MultipartReader.aiter() and
>    BodyPartReader.aiter() to AsyncIterator.
> - Provide x86 Windows wheels.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-aiohttp_3.7.2.bb => python3-aiohttp_3.7.3.bb}     | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-aiohttp_3.7.2.bb => python3-aiohttp_3.7.3.bb} (81%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.3.bb
> similarity index 81%
> rename from meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
> rename to meta-python/recipes-devtools/python/python3-aiohttp_3.7.3.bb
> index c98e3aee7..bccbd4b0e 100644
> --- a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.3.bb
> @@ -4,8 +4,7 @@ HOMEPAGE = "https://github.com/aio-libs/aiohttp"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3bf3d48554bdca1ea7fdb48de378c2ca"
>   
> -SRC_URI[md5sum] = "dcf770341241aa09340653a1562ca816"
> -SRC_URI[sha256sum] = "c6da1af59841e6d43255d386a2c4bfb59c0a3b262bdb24325cc969d211be6070"
> +SRC_URI[sha256sum] = "9c1a81af067e72261c9cbe33ea792893e83bc6aa987bfbd6fdc1e5e7b22777c4"
>   
>   PYPI_PACKAGE = "aiohttp"
>   inherit setuptools3 pypi
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/5] python3-coloredlogs: Upgrade 14.0 -> 15.0
  2021-01-08 10:28 ` [meta-python][PATCH 2/5] python3-coloredlogs: Upgrade 14.0 -> 15.0 Leon Anavi
@ 2021-01-12 16:09   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-01-12 16:09 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-08 5:28 a.m., Leon Anavi wrote:
> Upgrade to release 15.0:
>
> - Don’t enable system logging on MacOS and Windows anymore.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...python3-coloredlogs_14.0.bb => python3-coloredlogs_15.0.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-coloredlogs_14.0.bb => python3-coloredlogs_15.0.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb b/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
> rename to meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb
> index 64f3008ee..daeda6b2e 100644
> --- a/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb
> @@ -4,8 +4,7 @@ SECTION = "devel/python"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b"
>   
> -SRC_URI[md5sum] = "34cd8ef3f758b10c6f1482b2614a81f2"
> -SRC_URI[sha256sum] = "a1fab193d2053aa6c0a97608c4342d031f1f93a3d1218432c59322441d31a505"
> +SRC_URI[sha256sum] = "5e78691e2673a8e294499e1832bb13efcfb44a86b92e18109fa18951093218ab"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 3/5] python3-jsonrpcserver: Upgrade 4.1.3 -> 4.2.0
  2021-01-08 10:28 ` [meta-python][PATCH 3/5] python3-jsonrpcserver: Upgrade 4.1.3 -> 4.2.0 Leon Anavi
@ 2021-01-12 16:09   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-01-12 16:09 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-08 5:28 a.m., Leon Anavi wrote:
> - Add ability to use custom serializer and deserializer
> - Add ability to use custom method name
> - Deny additional parameters in json-rpc request
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...3-jsonrpcserver_4.1.3.bb => python3-jsonrpcserver_4.2.0.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-jsonrpcserver_4.1.3.bb => python3-jsonrpcserver_4.2.0.bb} (76%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.2.0.bb
> similarity index 76%
> rename from meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
> rename to meta-python/recipes-devtools/python/python3-jsonrpcserver_4.2.0.bb
> index 75a0926f0..53f01f622 100644
> --- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.2.0.bb
> @@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/bcb/jsonrpcserver"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=c89120516900f96f4c60d35fdc4c3f15"
>   
> -SRC_URI[md5sum] = "e73b0bd90e99115d3f9e0ac42882c5b7"
> -SRC_URI[sha256sum] = "649680c293facb6ae7c3f5c8028e4623c55195db5216847e9f25f85cba2d443a"
> +SRC_URI[sha256sum] = "0c9e5b9445621138521e912016ae39b3badadd2607140dcbb0c8062934ab4854"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 4/5] python3-pymisp: Upgrade 2.4.133 -> 2.4.135.3
  2021-01-08 10:28 ` [meta-python][PATCH 4/5] python3-pymisp: Upgrade 2.4.133 -> 2.4.135.3 Leon Anavi
@ 2021-01-12 16:09   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-01-12 16:09 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-08 5:28 a.m., Leon Anavi wrote:
> - Bump version.
> - Improve typing.
> - Improve add_attribute with a list.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pymisp_2.4.133.bb => python3-pymisp_2.4.135.3.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pymisp_2.4.133.bb => python3-pymisp_2.4.135.3.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.135.3.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb
> rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.135.3.bb
> index 28a24fed5..bbfc0459d 100644
> --- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb
> +++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.135.3.bb
> @@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/MISP/PyMISP"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
>   
> -SRC_URI[md5sum] = "00e258da18f59845687f58389a2e8e12"
> -SRC_URI[sha256sum] = "4a2a8a4da78c6321550522d5cf1575c095773d0867c0a4f5157a658f6e1994d5"
> +SRC_URI[sha256sum] = "f0bbdd77358223ba75c9cc40f192c7a2a7a5838bdd08b28381f71d220151ea8a"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 5/5] python3-parso: Upgrade 0.8.0 -> 0.8.1
  2021-01-08 10:28 ` [meta-python][PATCH 5/5] python3-parso: Upgrade 0.8.0 -> 0.8.1 Leon Anavi
@ 2021-01-12 16:09   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-01-12 16:09 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-08 5:28 a.m., Leon Anavi wrote:
> - Various small bugfixes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-parso_0.8.0.bb => python3-parso_0.8.1.bb}  | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-parso_0.8.0.bb => python3-parso_0.8.1.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-parso_0.8.0.bb b/meta-python/recipes-devtools/python/python3-parso_0.8.1.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-parso_0.8.0.bb
> rename to meta-python/recipes-devtools/python/python3-parso_0.8.1.bb
> index 507087909..9e4ede529 100644
> --- a/meta-python/recipes-devtools/python/python3-parso_0.8.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-parso_0.8.1.bb
> @@ -6,7 +6,6 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=cbaa2675b2424d771451332a7a69503f"
>   
>   PYPI_PACKAGE = "parso"
>   
> -SRC_URI[md5sum] = "ee3592994bfc0d0843790544c1b2b702"
> -SRC_URI[sha256sum] = "2b6db14759c528d857eeb9eac559c2166b2554548af39f5198bdfb976f72aa64"
> +SRC_URI[sha256sum] = "8519430ad07087d4c997fda3a7918f7cfa27cb58972a8c89c2a0295a1c940e9e"
>   
>   inherit setuptools3 pypi
>
> 
>

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

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

end of thread, other threads:[~2021-01-12 16:10 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-08 10:28 [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 Leon Anavi
2021-01-08 10:28 ` [meta-python][PATCH 2/5] python3-coloredlogs: Upgrade 14.0 -> 15.0 Leon Anavi
2021-01-12 16:09   ` [oe] " Trevor Gamblin
2021-01-08 10:28 ` [meta-python][PATCH 3/5] python3-jsonrpcserver: Upgrade 4.1.3 -> 4.2.0 Leon Anavi
2021-01-12 16:09   ` [oe] " Trevor Gamblin
2021-01-08 10:28 ` [meta-python][PATCH 4/5] python3-pymisp: Upgrade 2.4.133 -> 2.4.135.3 Leon Anavi
2021-01-12 16:09   ` [oe] " Trevor Gamblin
2021-01-08 10:28 ` [meta-python][PATCH 5/5] python3-parso: Upgrade 0.8.0 -> 0.8.1 Leon Anavi
2021-01-12 16:09   ` [oe] " Trevor Gamblin
2021-01-12 16:08 ` [oe] [meta-python][PATCH 1/5] python3-aiohttp: Upgrade 3.7.2 -> 3.7.3 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.