All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140
@ 2021-03-15  8:47 Leon Anavi
  2021-03-15  8:47 ` [meta-python][PATCH 02/10] python3-jsonpatch: Upgrade 1.31 -> 1.32 Leon Anavi
                   ` (9 more replies)
  0 siblings, 10 replies; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.4.140:

- Soft delete object in MISPEvent
- Add in ability to add a new cluster relation
- MISP Galaxy 2.0 capability

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

diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.138.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.140.bb
similarity index 91%
rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.138.bb
rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.140.bb
index eb7bea834..32e673660 100644
--- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.138.bb
+++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.140.bb
@@ -4,7 +4,7 @@ LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
 
 SRC_URI = "git://github.com/MISP/PyMISP.git;protocol=https;branch=main"
-SRCREV = "9316420dc028a1ffc541986fc08793e669f2165e"
+SRCREV = "39a7b8242f0d3022276d417ec334bb46b890ff23"
 S = "${WORKDIR}/git"
 
 inherit setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 02/10] python3-jsonpatch: Upgrade 1.31 -> 1.32
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:52   ` [oe] " Trevor Gamblin
  2021-03-15  8:47 ` [meta-python][PATCH 03/10] python3-jsonpointer: Upgrade 2.0 -> 2.1 Leon Anavi
                   ` (8 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.32:

- take_index causing 'move' of incorrect values due to bad
  True==1 comparison

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

diff --git a/meta-python/recipes-devtools/python/python3-jsonpatch_1.31.bb b/meta-python/recipes-devtools/python/python3-jsonpatch_1.32.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-jsonpatch_1.31.bb
rename to meta-python/recipes-devtools/python/python3-jsonpatch_1.32.bb
index aa3dc8360..0c8624036 100644
--- a/meta-python/recipes-devtools/python/python3-jsonpatch_1.31.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonpatch_1.32.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=32b15c843b7a329130f4e266a281ebb3"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "ae6f3686fc71b53a278a9fdeb91afdc0e523e2f8f8a82cb2f04af90413a8eacb"
+SRC_URI[sha256sum] = "b6ddfe6c3db30d81a96aaeceb6baf916094ffa23d7dd5fa2c13e13f8b6e600c2"
 
 RDEPENDS_${PN} += " \
     ${PYTHON_PN}-json \
-- 
2.17.1


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

* [meta-python][PATCH 03/10] python3-jsonpointer: Upgrade 2.0 -> 2.1
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
  2021-03-15  8:47 ` [meta-python][PATCH 02/10] python3-jsonpatch: Upgrade 1.31 -> 1.32 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:52   ` [oe] " Trevor Gamblin
  2021-03-15  8:47 ` [meta-python][PATCH 04/10] python3-configargparse: Upgrade 1.3 -> 1.4 Leon Anavi
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.1:

- Support Python 3.8 and 3.9

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

diff --git a/meta-python/recipes-devtools/python/python3-jsonpointer_2.0.bb b/meta-python/recipes-devtools/python/python3-jsonpointer_2.1.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-jsonpointer_2.0.bb
rename to meta-python/recipes-devtools/python/python3-jsonpointer_2.1.bb
index 68bfe9716..a4cc05c94 100644
--- a/meta-python/recipes-devtools/python/python3-jsonpointer_2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonpointer_2.1.bb
@@ -5,8 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=32b15c843b7a329130f4e266a281ebb3"
 
 inherit pypi ptest setuptools3
 
-SRC_URI[md5sum] = "741b98d0e693b08b5e44e0a9da5a7bb7"
-SRC_URI[sha256sum] = "c192ba86648e05fdae4f08a17ec25180a9aef5008d973407b581798a83975362"
+SRC_URI[sha256sum] = "5a34b698db1eb79ceac454159d3f7c12a451a91f6334a4f638454327b7a89962"
 
 RDEPENDS_${PN} += " \
     ${PYTHON_PN}-json \
-- 
2.17.1


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

* [meta-python][PATCH 04/10] python3-configargparse: Upgrade 1.3 -> 1.4
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
  2021-03-15  8:47 ` [meta-python][PATCH 02/10] python3-jsonpatch: Upgrade 1.31 -> 1.32 Leon Anavi
  2021-03-15  8:47 ` [meta-python][PATCH 03/10] python3-jsonpointer: Upgrade 2.0 -> 2.1 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:52   ` [oe] " Trevor Gamblin
  2021-03-15  8:47 ` [meta-python][PATCH 05/10] python3-luma-core: Upgrade 2.2.0 -> 2.3.1 Leon Anavi
                   ` (6 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.4:

- Allow nearly all characters in a keyword

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

diff --git a/meta-python/recipes-devtools/python/python3-configargparse_1.3.bb b/meta-python/recipes-devtools/python/python3-configargparse_1.4.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-configargparse_1.3.bb
rename to meta-python/recipes-devtools/python/python3-configargparse_1.4.bb
index aac58de37..393f13874 100644
--- a/meta-python/recipes-devtools/python/python3-configargparse_1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-configargparse_1.4.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/bw2/ConfigArgParse"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=da746463714cc35999ed9a42339f2943"
 
-SRC_URI[sha256sum] = "0428b975ab6c48bb101ccb732e1b5cb616296e28268e032aa806f32b647a1cc1"
+SRC_URI[sha256sum] = "abef9ff44fb0091f0e3bb2ee7e5b26a02b5b62d45408a5272a9bd461f5b59b4b"
 
 PYPI_PACKAGE = "ConfigArgParse"
 
-- 
2.17.1


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

* [meta-python][PATCH 05/10] python3-luma-core: Upgrade 2.2.0 -> 2.3.1
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-03-15  8:47 ` [meta-python][PATCH 04/10] python3-configargparse: Upgrade 1.3 -> 1.4 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:52   ` [oe] " Trevor Gamblin
  2021-03-15  8:47 ` [meta-python][PATCH 06/10] python3-pycodestyle: Upgrade 2.6.0 -> 2.7.0 Leon Anavi
                   ` (5 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.3.1:

- Add Github publish action
- Cleanup only GPIO pins used rather than all

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...{python3-luma-core_2.2.0.bb => python3-luma-core_2.3.1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-luma-core_2.2.0.bb => python3-luma-core_2.3.1.bb} (68%)

diff --git a/meta-python/recipes-devtools/python/python3-luma-core_2.2.0.bb b/meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-luma-core_2.2.0.bb
rename to meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb
index b181e0986..47efe8a72 100644
--- a/meta-python/recipes-devtools/python/python3-luma-core_2.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb
@@ -2,11 +2,11 @@ SUMMARY = "A component library to support SBC display drivers"
 DESCRIPTION = "A component library to support SBC display drivers"
 HOMEPAGE = "https://github.com/rm-hull/luma.core"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=db07e3d471938ea7d7fd2135f88ac9a1"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=3b1d500f5911ec7522f1f790d616e0ee"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "62a24518d3aa084d75206a19056eb8aa71b5a3d0c159d2e95b388cb3150a7b1c"
+SRC_URI[sha256sum] = "f293f5fff8946eea62af3a5d5d7da55c37d2b64aac6c9c90180a385da9f7d003"
 
 CLEANBROKEN = "1"
 
-- 
2.17.1


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

* [meta-python][PATCH 06/10] python3-pycodestyle: Upgrade 2.6.0 -> 2.7.0
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
                   ` (3 preceding siblings ...)
  2021-03-15  8:47 ` [meta-python][PATCH 05/10] python3-luma-core: Upgrade 2.2.0 -> 2.3.1 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:53   ` [oe] " Trevor Gamblin
  2021-03-15  8:47 ` [meta-python][PATCH 07/10] python3-bitarray: Upgrade 1.7.0 -> 1.7.1 Leon Anavi
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.7.0:

- Fix physical checks (such as W191) at end of file
- Add --indent-size option (defaulting to 4)
- W605: fix escaped crlf false positive on windows

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

diff --git a/meta-python/recipes-devtools/python/python3-pycodestyle_2.6.0.bb b/meta-python/recipes-devtools/python/python3-pycodestyle_2.7.0.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python3-pycodestyle_2.6.0.bb
rename to meta-python/recipes-devtools/python/python3-pycodestyle_2.7.0.bb
index 4ad1f5493..611abca6b 100644
--- a/meta-python/recipes-devtools/python/python3-pycodestyle_2.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pycodestyle_2.7.0.bb
@@ -4,8 +4,7 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a8546d0e77f416fb05a26acd89c8b3bd"
 
-SRC_URI[md5sum] = "e2fcdace728267d5fa3aa98e08ee40db"
-SRC_URI[sha256sum] = "c58a7d2815e0e8d7972bf1803331fb0152f867bd89adf8a01dfd55085434192e"
+SRC_URI[sha256sum] = "c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 07/10] python3-bitarray: Upgrade 1.7.0 -> 1.7.1
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
                   ` (4 preceding siblings ...)
  2021-03-15  8:47 ` [meta-python][PATCH 06/10] python3-pycodestyle: Upgrade 2.6.0 -> 2.7.0 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:53   ` [oe] " Trevor Gamblin
  2021-03-15  8:47 ` [meta-python][PATCH 08/10] python3-alembic: Upgrade 1.5.5 -> 1.5.7 Leon Anavi
                   ` (3 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.7.1:

- raise TypeError when incorrect index is used during assignment,
  e.g. `a[1.5] = 1`
- raise TypeError (not IndexError) when assigning slice to
  incorrect type, e.g. `a[1:4] = 1.2`
- improve some docstrings and tests

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

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.7.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_1.7.0.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb
index c91b7443e..f859283ab 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_1.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[sha256sum] = "e31b472ac92e04ea943723cf781ec168e15049d91a3052203defb81652d2b086"
+SRC_URI[sha256sum] = "e4de977d708b7024760266d827b8285e4405dce4293f25508c4556970139018a"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


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

* [meta-python][PATCH 08/10] python3-alembic: Upgrade 1.5.5 -> 1.5.7
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
                   ` (5 preceding siblings ...)
  2021-03-15  8:47 ` [meta-python][PATCH 07/10] python3-bitarray: Upgrade 1.7.0 -> 1.7.1 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:53   ` [oe] " Trevor Gamblin
  2021-03-15  8:47 ` [meta-python][PATCH 09/10] python3-pyflakes: Upgrade 2.2.0 -> 2.3.0 Leon Anavi
                   ` (2 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.5.7:

- Bug fix: adjusted the recently added
  EnvironmentContext.configure.include_name hook to accommodate
  for additional object types such as "views" that don't have a
  parent table, to support third party recipes and extensions.

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

diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.5.5.bb b/meta-python/recipes-devtools/python/python3-alembic_1.5.7.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-alembic_1.5.5.bb
rename to meta-python/recipes-devtools/python/python3-alembic_1.5.7.bb
index 92b691e17..d30e1b696 100644
--- a/meta-python/recipes-devtools/python/python3-alembic_1.5.5.bb
+++ b/meta-python/recipes-devtools/python/python3-alembic_1.5.7.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4ece55266dcdd02ce165b1ee0e490bb"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "df0028c19275a2cff137e39617a39cdcdbd1173733b87b6bfa257b7c0860213b"
+SRC_URI[sha256sum] = "66bbb0e7d6277b007dfe7e27237093c79b76cf4f94e6fbd0f7af6f9409546fe6"
 
 PYPI_PACKAGE = "alembic"
 
-- 
2.17.1


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

* [meta-python][PATCH 09/10] python3-pyflakes: Upgrade 2.2.0 -> 2.3.0
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
                   ` (6 preceding siblings ...)
  2021-03-15  8:47 ` [meta-python][PATCH 08/10] python3-alembic: Upgrade 1.5.5 -> 1.5.7 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:53   ` [oe] " Trevor Gamblin
  2021-03-15  8:47 ` [meta-python][PATCH 10/10] python3-autobahn: Upgrade 21.2.2 -> 21.3.1 Leon Anavi
  2021-03-17 14:52 ` [oe] [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Trevor Gamblin
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.3.0:

- Recognize tuple concatenation in __all__ export definitions
- Better support use of annotation-only assignments when using
  from __future__ import annotations
- Recognize special-case typing for Annotated
- Fix undefined name __qualname__ in class scope
- Recognize special-cased typing for TypeVar
- Errors for undefined exports in __all__ are shown in a
  deterministic order
- Fix false positives in certain typing constructs (TypeVar,
  NamedTuple, TypedDict, cast)

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

diff --git a/meta-python/recipes-devtools/python/python3-pyflakes_2.2.0.bb b/meta-python/recipes-devtools/python/python3-pyflakes_2.3.0.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-pyflakes_2.2.0.bb
rename to meta-python/recipes-devtools/python/python3-pyflakes_2.3.0.bb
index 911cf4ec3..0c8956728 100644
--- a/meta-python/recipes-devtools/python/python3-pyflakes_2.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pyflakes_2.3.0.bb
@@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/dreamhost/cliff"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=690c2d09203dc9e07c4083fc45ea981f"
 
-SRC_URI[md5sum] = "48b1c29732ca810a70cba0e6d0531169"
-SRC_URI[sha256sum] = "35b2d75ee967ea93b55750aa9edbbf72813e06a66ba54438df2cfac9e3c27fc8"
+SRC_URI[sha256sum] = "e59fd8e750e588358f1b8885e5a4751203a0516e0ee6d34811089ac294c8806f"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 10/10] python3-autobahn: Upgrade 21.2.2 -> 21.3.1
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
                   ` (7 preceding siblings ...)
  2021-03-15  8:47 ` [meta-python][PATCH 09/10] python3-pyflakes: Upgrade 2.2.0 -> 2.3.0 Leon Anavi
@ 2021-03-15  8:47 ` Leon Anavi
  2021-03-17 14:53   ` [oe] " Trevor Gamblin
  2021-03-17 14:52 ` [oe] [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Trevor Gamblin
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-03-15  8:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 21.3.1:

- fix: Twisted v21.2.0 breaks Crossbar.io

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

diff --git a/meta-python/recipes-devtools/python/python3-autobahn_21.2.2.bb b/meta-python/recipes-devtools/python/python3-autobahn_21.3.1.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-autobahn_21.2.2.bb
rename to meta-python/recipes-devtools/python/python3-autobahn_21.3.1.bb
index cc3773fc5..daa66ec1a 100644
--- a/meta-python/recipes-devtools/python/python3-autobahn_21.2.2.bb
+++ b/meta-python/recipes-devtools/python/python3-autobahn_21.3.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://crossbar.io/autobahn"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
 
-SRC_URI[sha256sum] = "bf7a9d302a34d0f719d43c57f65ca1f2f5c982dd6ea0c11e1e190ef6f43710fe"
+SRC_URI[sha256sum] = "e126c1f583e872fb59e79d36977cfa1f2d0a8a79f90ae31f406faae7664b8e03"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140
  2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
                   ` (8 preceding siblings ...)
  2021-03-15  8:47 ` [meta-python][PATCH 10/10] python3-autobahn: Upgrade 21.2.2 -> 21.3.1 Leon Anavi
@ 2021-03-17 14:52 ` Trevor Gamblin
  9 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 2.4.140:
>
> - Soft delete object in MISPEvent
> - Add in ability to add a new cluster relation
> - MISP Galaxy 2.0 capability
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pymisp_2.4.138.bb => python3-pymisp_2.4.140.bb}    | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-pymisp_2.4.138.bb => python3-pymisp_2.4.140.bb} (91%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.138.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.140.bb
> similarity index 91%
> rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.138.bb
> rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.140.bb
> index eb7bea834..32e673660 100644
> --- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.138.bb
> +++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.140.bb
> @@ -4,7 +4,7 @@ LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
>
>   SRC_URI = "git://github.com/MISP/PyMISP.git;protocol=https;branch=main"
> -SRCREV = "9316420dc028a1ffc541986fc08793e669f2165e"
> +SRCREV = "39a7b8242f0d3022276d417ec334bb46b890ff23"
>   S = "${WORKDIR}/git"
>
>   inherit setuptools3
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 02/10] python3-jsonpatch: Upgrade 1.31 -> 1.32
  2021-03-15  8:47 ` [meta-python][PATCH 02/10] python3-jsonpatch: Upgrade 1.31 -> 1.32 Leon Anavi
@ 2021-03-17 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.32:
>
> - take_index causing 'move' of incorrect values due to bad
>    True==1 comparison
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-jsonpatch_1.31.bb => python3-jsonpatch_1.32.bb}    | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-jsonpatch_1.31.bb => python3-jsonpatch_1.32.bb} (81%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-jsonpatch_1.31.bb b/meta-python/recipes-devtools/python/python3-jsonpatch_1.32.bb
> similarity index 81%
> rename from meta-python/recipes-devtools/python/python3-jsonpatch_1.31.bb
> rename to meta-python/recipes-devtools/python/python3-jsonpatch_1.32.bb
> index aa3dc8360..0c8624036 100644
> --- a/meta-python/recipes-devtools/python/python3-jsonpatch_1.31.bb
> +++ b/meta-python/recipes-devtools/python/python3-jsonpatch_1.32.bb
> @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=32b15c843b7a329130f4e266a281ebb3"
>
>   inherit pypi setuptools3
>
> -SRC_URI[sha256sum] = "ae6f3686fc71b53a278a9fdeb91afdc0e523e2f8f8a82cb2f04af90413a8eacb"
> +SRC_URI[sha256sum] = "b6ddfe6c3db30d81a96aaeceb6baf916094ffa23d7dd5fa2c13e13f8b6e600c2"
>
>   RDEPENDS_${PN} += " \
>       ${PYTHON_PN}-json \
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 03/10] python3-jsonpointer: Upgrade 2.0 -> 2.1
  2021-03-15  8:47 ` [meta-python][PATCH 03/10] python3-jsonpointer: Upgrade 2.0 -> 2.1 Leon Anavi
@ 2021-03-17 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 2.1:
>
> - Support Python 3.8 and 3.9
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-jsonpointer_2.0.bb => python3-jsonpointer_2.1.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-jsonpointer_2.0.bb => python3-jsonpointer_2.1.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-jsonpointer_2.0.bb b/meta-python/recipes-devtools/python/python3-jsonpointer_2.1.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-jsonpointer_2.0.bb
> rename to meta-python/recipes-devtools/python/python3-jsonpointer_2.1.bb
> index 68bfe9716..a4cc05c94 100644
> --- a/meta-python/recipes-devtools/python/python3-jsonpointer_2.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-jsonpointer_2.1.bb
> @@ -5,8 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=32b15c843b7a329130f4e266a281ebb3"
>
>   inherit pypi ptest setuptools3
>
> -SRC_URI[md5sum] = "741b98d0e693b08b5e44e0a9da5a7bb7"
> -SRC_URI[sha256sum] = "c192ba86648e05fdae4f08a17ec25180a9aef5008d973407b581798a83975362"
> +SRC_URI[sha256sum] = "5a34b698db1eb79ceac454159d3f7c12a451a91f6334a4f638454327b7a89962"
>
>   RDEPENDS_${PN} += " \
>       ${PYTHON_PN}-json \
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 04/10] python3-configargparse: Upgrade 1.3 -> 1.4
  2021-03-15  8:47 ` [meta-python][PATCH 04/10] python3-configargparse: Upgrade 1.3 -> 1.4 Leon Anavi
@ 2021-03-17 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.4:
>
> - Allow nearly all characters in a keyword
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-configargparse_1.3.bb => python3-configargparse_1.4.bb} | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-configargparse_1.3.bb => python3-configargparse_1.4.bb} (85%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-configargparse_1.3.bb b/meta-python/recipes-devtools/python/python3-configargparse_1.4.bb
> similarity index 85%
> rename from meta-python/recipes-devtools/python/python3-configargparse_1.3.bb
> rename to meta-python/recipes-devtools/python/python3-configargparse_1.4.bb
> index aac58de37..393f13874 100644
> --- a/meta-python/recipes-devtools/python/python3-configargparse_1.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-configargparse_1.4.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/bw2/ConfigArgParse"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=da746463714cc35999ed9a42339f2943"
>
> -SRC_URI[sha256sum] = "0428b975ab6c48bb101ccb732e1b5cb616296e28268e032aa806f32b647a1cc1"
> +SRC_URI[sha256sum] = "abef9ff44fb0091f0e3bb2ee7e5b26a02b5b62d45408a5272a9bd461f5b59b4b"
>
>   PYPI_PACKAGE = "ConfigArgParse"
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 05/10] python3-luma-core: Upgrade 2.2.0 -> 2.3.1
  2021-03-15  8:47 ` [meta-python][PATCH 05/10] python3-luma-core: Upgrade 2.2.0 -> 2.3.1 Leon Anavi
@ 2021-03-17 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 2.3.1:
>
> - Add Github publish action
> - Cleanup only GPIO pins used rather than all
>
> License-Update: Update year
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-luma-core_2.2.0.bb => python3-luma-core_2.3.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-luma-core_2.2.0.bb => python3-luma-core_2.3.1.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-luma-core_2.2.0.bb b/meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-luma-core_2.2.0.bb
> rename to meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb
> index b181e0986..47efe8a72 100644
> --- a/meta-python/recipes-devtools/python/python3-luma-core_2.2.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb
> @@ -2,11 +2,11 @@ SUMMARY = "A component library to support SBC display drivers"
>   DESCRIPTION = "A component library to support SBC display drivers"
>   HOMEPAGE = "https://github.com/rm-hull/luma.core"
>   LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=db07e3d471938ea7d7fd2135f88ac9a1"
> +LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=3b1d500f5911ec7522f1f790d616e0ee"
>
>   inherit pypi setuptools3
>
> -SRC_URI[sha256sum] = "62a24518d3aa084d75206a19056eb8aa71b5a3d0c159d2e95b388cb3150a7b1c"
> +SRC_URI[sha256sum] = "f293f5fff8946eea62af3a5d5d7da55c37d2b64aac6c9c90180a385da9f7d003"
>
>   CLEANBROKEN = "1"
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 06/10] python3-pycodestyle: Upgrade 2.6.0 -> 2.7.0
  2021-03-15  8:47 ` [meta-python][PATCH 06/10] python3-pycodestyle: Upgrade 2.6.0 -> 2.7.0 Leon Anavi
@ 2021-03-17 14:53   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:53 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 2.7.0:
>
> - Fix physical checks (such as W191) at end of file
> - Add --indent-size option (defaulting to 4)
> - W605: fix escaped crlf false positive on windows
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...thon3-pycodestyle_2.6.0.bb => python3-pycodestyle_2.7.0.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pycodestyle_2.6.0.bb => python3-pycodestyle_2.7.0.bb} (67%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pycodestyle_2.6.0.bb b/meta-python/recipes-devtools/python/python3-pycodestyle_2.7.0.bb
> similarity index 67%
> rename from meta-python/recipes-devtools/python/python3-pycodestyle_2.6.0.bb
> rename to meta-python/recipes-devtools/python/python3-pycodestyle_2.7.0.bb
> index 4ad1f5493..611abca6b 100644
> --- a/meta-python/recipes-devtools/python/python3-pycodestyle_2.6.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pycodestyle_2.7.0.bb
> @@ -4,8 +4,7 @@ LICENSE = "MIT"
>   SECTION = "devel/python"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=a8546d0e77f416fb05a26acd89c8b3bd"
>
> -SRC_URI[md5sum] = "e2fcdace728267d5fa3aa98e08ee40db"
> -SRC_URI[sha256sum] = "c58a7d2815e0e8d7972bf1803331fb0152f867bd89adf8a01dfd55085434192e"
> +SRC_URI[sha256sum] = "c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 07/10] python3-bitarray: Upgrade 1.7.0 -> 1.7.1
  2021-03-15  8:47 ` [meta-python][PATCH 07/10] python3-bitarray: Upgrade 1.7.0 -> 1.7.1 Leon Anavi
@ 2021-03-17 14:53   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:53 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.7.1:
>
> - raise TypeError when incorrect index is used during assignment,
>    e.g. `a[1.5] = 1`
> - raise TypeError (not IndexError) when assigning slice to
>    incorrect type, e.g. `a[1:4] = 1.2`
> - improve some docstrings and tests
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-bitarray_1.7.0.bb => python3-bitarray_1.7.1.bb}    | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-bitarray_1.7.0.bb => python3-bitarray_1.7.1.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.7.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-bitarray_1.7.0.bb
> rename to meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb
> index c91b7443e..f859283ab 100644
> --- a/meta-python/recipes-devtools/python/python3-bitarray_1.7.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
>   LICENSE = "PSF"
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
>
> -SRC_URI[sha256sum] = "e31b472ac92e04ea943723cf781ec168e15049d91a3052203defb81652d2b086"
> +SRC_URI[sha256sum] = "e4de977d708b7024760266d827b8285e4405dce4293f25508c4556970139018a"
>
>   inherit setuptools3 pypi
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 08/10] python3-alembic: Upgrade 1.5.5 -> 1.5.7
  2021-03-15  8:47 ` [meta-python][PATCH 08/10] python3-alembic: Upgrade 1.5.5 -> 1.5.7 Leon Anavi
@ 2021-03-17 14:53   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:53 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.5.7:
>
> - Bug fix: adjusted the recently added
>    EnvironmentContext.configure.include_name hook to accommodate
>    for additional object types such as "views" that don't have a
>    parent table, to support third party recipes and extensions.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-alembic_1.5.5.bb => python3-alembic_1.5.7.bb}      | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-alembic_1.5.5.bb => python3-alembic_1.5.7.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.5.5.bb b/meta-python/recipes-devtools/python/python3-alembic_1.5.7.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-alembic_1.5.5.bb
> rename to meta-python/recipes-devtools/python/python3-alembic_1.5.7.bb
> index 92b691e17..d30e1b696 100644
> --- a/meta-python/recipes-devtools/python/python3-alembic_1.5.5.bb
> +++ b/meta-python/recipes-devtools/python/python3-alembic_1.5.7.bb
> @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4ece55266dcdd02ce165b1ee0e490bb"
>
>   inherit pypi setuptools3
>
> -SRC_URI[sha256sum] = "df0028c19275a2cff137e39617a39cdcdbd1173733b87b6bfa257b7c0860213b"
> +SRC_URI[sha256sum] = "66bbb0e7d6277b007dfe7e27237093c79b76cf4f94e6fbd0f7af6f9409546fe6"
>
>   PYPI_PACKAGE = "alembic"
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 09/10] python3-pyflakes: Upgrade 2.2.0 -> 2.3.0
  2021-03-15  8:47 ` [meta-python][PATCH 09/10] python3-pyflakes: Upgrade 2.2.0 -> 2.3.0 Leon Anavi
@ 2021-03-17 14:53   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:53 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 2.3.0:
>
> - Recognize tuple concatenation in __all__ export definitions
> - Better support use of annotation-only assignments when using
>    from __future__ import annotations
> - Recognize special-case typing for Annotated
> - Fix undefined name __qualname__ in class scope
> - Recognize special-cased typing for TypeVar
> - Errors for undefined exports in __all__ are shown in a
>    deterministic order
> - Fix false positives in certain typing constructs (TypeVar,
>    NamedTuple, TypedDict, cast)
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pyflakes_2.2.0.bb => python3-pyflakes_2.3.0.bb}   | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pyflakes_2.2.0.bb => python3-pyflakes_2.3.0.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pyflakes_2.2.0.bb b/meta-python/recipes-devtools/python/python3-pyflakes_2.3.0.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-pyflakes_2.2.0.bb
> rename to meta-python/recipes-devtools/python/python3-pyflakes_2.3.0.bb
> index 911cf4ec3..0c8956728 100644
> --- a/meta-python/recipes-devtools/python/python3-pyflakes_2.2.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pyflakes_2.3.0.bb
> @@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/dreamhost/cliff"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=690c2d09203dc9e07c4083fc45ea981f"
>
> -SRC_URI[md5sum] = "48b1c29732ca810a70cba0e6d0531169"
> -SRC_URI[sha256sum] = "35b2d75ee967ea93b55750aa9edbbf72813e06a66ba54438df2cfac9e3c27fc8"
> +SRC_URI[sha256sum] = "e59fd8e750e588358f1b8885e5a4751203a0516e0ee6d34811089ac294c8806f"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 10/10] python3-autobahn: Upgrade 21.2.2 -> 21.3.1
  2021-03-15  8:47 ` [meta-python][PATCH 10/10] python3-autobahn: Upgrade 21.2.2 -> 21.3.1 Leon Anavi
@ 2021-03-17 14:53   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-03-17 14:53 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-03-15 4:47 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 21.3.1:
>
> - fix: Twisted v21.2.0 breaks Crossbar.io
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-autobahn_21.2.2.bb => python3-autobahn_21.3.1.bb}  | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-autobahn_21.2.2.bb => python3-autobahn_21.3.1.bb} (86%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-autobahn_21.2.2.bb b/meta-python/recipes-devtools/python/python3-autobahn_21.3.1.bb
> similarity index 86%
> rename from meta-python/recipes-devtools/python/python3-autobahn_21.2.2.bb
> rename to meta-python/recipes-devtools/python/python3-autobahn_21.3.1.bb
> index cc3773fc5..daa66ec1a 100644
> --- a/meta-python/recipes-devtools/python/python3-autobahn_21.2.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-autobahn_21.3.1.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "http://crossbar.io/autobahn"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
>
> -SRC_URI[sha256sum] = "bf7a9d302a34d0f719d43c57f65ca1f2f5c982dd6ea0c11e1e190ef6f43710fe"
> +SRC_URI[sha256sum] = "e126c1f583e872fb59e79d36977cfa1f2d0a8a79f90ae31f406faae7664b8e03"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

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

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

end of thread, other threads:[~2021-03-17 14:54 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-15  8:47 [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 Leon Anavi
2021-03-15  8:47 ` [meta-python][PATCH 02/10] python3-jsonpatch: Upgrade 1.31 -> 1.32 Leon Anavi
2021-03-17 14:52   ` [oe] " Trevor Gamblin
2021-03-15  8:47 ` [meta-python][PATCH 03/10] python3-jsonpointer: Upgrade 2.0 -> 2.1 Leon Anavi
2021-03-17 14:52   ` [oe] " Trevor Gamblin
2021-03-15  8:47 ` [meta-python][PATCH 04/10] python3-configargparse: Upgrade 1.3 -> 1.4 Leon Anavi
2021-03-17 14:52   ` [oe] " Trevor Gamblin
2021-03-15  8:47 ` [meta-python][PATCH 05/10] python3-luma-core: Upgrade 2.2.0 -> 2.3.1 Leon Anavi
2021-03-17 14:52   ` [oe] " Trevor Gamblin
2021-03-15  8:47 ` [meta-python][PATCH 06/10] python3-pycodestyle: Upgrade 2.6.0 -> 2.7.0 Leon Anavi
2021-03-17 14:53   ` [oe] " Trevor Gamblin
2021-03-15  8:47 ` [meta-python][PATCH 07/10] python3-bitarray: Upgrade 1.7.0 -> 1.7.1 Leon Anavi
2021-03-17 14:53   ` [oe] " Trevor Gamblin
2021-03-15  8:47 ` [meta-python][PATCH 08/10] python3-alembic: Upgrade 1.5.5 -> 1.5.7 Leon Anavi
2021-03-17 14:53   ` [oe] " Trevor Gamblin
2021-03-15  8:47 ` [meta-python][PATCH 09/10] python3-pyflakes: Upgrade 2.2.0 -> 2.3.0 Leon Anavi
2021-03-17 14:53   ` [oe] " Trevor Gamblin
2021-03-15  8:47 ` [meta-python][PATCH 10/10] python3-autobahn: Upgrade 21.2.2 -> 21.3.1 Leon Anavi
2021-03-17 14:53   ` [oe] " Trevor Gamblin
2021-03-17 14:52 ` [oe] [meta-python][PATCH 01/10] python3-pymisp: Upgrade 2.4.138 -> 2.4.140 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.