All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0
@ 2020-10-21 11:16 Leon Anavi
  2020-10-21 11:16 ` [meta-python][PATCH 2/7] python3-dominate: Upgrade 2.5.2 -> 2.6.0 Leon Anavi
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Leon Anavi @ 2020-10-21 11:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.1.0:

- Declare support for Python 3.9
- testing/docs: Include doctests in testing
- Allow custom "now" in naturaldelta and naturaltime
- Represent with a zero if the delta is too small

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

diff --git a/meta-python/recipes-devtools/python/python3-humanize_3.0.1.bb b/meta-python/recipes-devtools/python/python3-humanize_3.1.0.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-humanize_3.0.1.bb
rename to meta-python/recipes-devtools/python/python3-humanize_3.1.0.bb
index 92831bf135..43b882cb84 100644
--- a/meta-python/recipes-devtools/python/python3-humanize_3.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-humanize_3.1.0.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "http://github.com/jmoiron/humanize"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
 
-SRC_URI[md5sum] = "53faa88dedddba1227f9c41d65440c54"
-SRC_URI[sha256sum] = "8ff8f292c9bf52bbefdc620410e7defd1c95e7eeb1a5cfc2859aaea4b1877ff5"
+SRC_URI[md5sum] = "bde0a033cf200f2874e6e3fc860bed48"
+SRC_URI[sha256sum] = "fd3eb915310335c63a54d4507289ecc7b3a7454cd2c22ac5086d061a3cbfd592"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 2/7] python3-dominate: Upgrade 2.5.2 -> 2.6.0
  2020-10-21 11:16 [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Leon Anavi
@ 2020-10-21 11:16 ` Leon Anavi
  2020-10-22 23:44   ` [oe] " Trevor Gamblin
  2020-10-21 11:16 ` [meta-python][PATCH 3/7] python3-urllib3: Upgrade 1.25.10 -> 1.25.11 Leon Anavi
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-10-21 11:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.6.0:

- Add get_current() to return the current active element in a with
  context

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

diff --git a/meta-python/recipes-devtools/python/python3-dominate_2.5.2.bb b/meta-python/recipes-devtools/python/python3-dominate_2.6.0.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-dominate_2.5.2.bb
rename to meta-python/recipes-devtools/python/python3-dominate_2.6.0.bb
index 2044338942..b7c738d656 100644
--- a/meta-python/recipes-devtools/python/python3-dominate_2.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-dominate_2.6.0.bb
@@ -2,8 +2,8 @@ SUMMARY = "Dominate is a Python library for creating and manipulating HTML docum
 LICENSE = "LGPLv3"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
 
-SRC_URI[md5sum] = "4a249c71cb009815923e9a47fa03ca08"
-SRC_URI[sha256sum] = "456facce7a7ccfd9363948109cf1e978d48c58e46a46b01c71b4c0adc73b1928"
+SRC_URI[md5sum] = "9f714324ca99eee98bb3c3cdbe838de6"
+SRC_URI[sha256sum] = "76ec2cde23700a6fc4fee098168b9dee43b99c2f1dd0ca6a711f683e8eb7e1e4"
 
 inherit pypi setuptools3 ptest
 
-- 
2.17.1


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

* [meta-python][PATCH 3/7] python3-urllib3: Upgrade 1.25.10 -> 1.25.11
  2020-10-21 11:16 [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Leon Anavi
  2020-10-21 11:16 ` [meta-python][PATCH 2/7] python3-dominate: Upgrade 2.5.2 -> 2.6.0 Leon Anavi
@ 2020-10-21 11:16 ` Leon Anavi
  2020-10-22 23:44   ` [oe] " Trevor Gamblin
  2020-10-21 11:16 ` [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.5.3 -> 1.6.0 Leon Anavi
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-10-21 11:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.25.11:

- Fix retry backoff time parsed from Retry-After header when given
  in the HTTP date format. The HTTP date was parsed as the local
  timezone rather than accounting for the timezone in the HTTP
  date (typically UTC)
- Fix issue where an error would be raised when the SSLKEYLOGFILE
  environment variable was set to the empty string. Now
  SSLContext.keylog_file is not set in this situation

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

diff --git a/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb b/meta-python/recipes-devtools/python/python3-urllib3_1.25.11.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
rename to meta-python/recipes-devtools/python/python3-urllib3_1.25.11.bb
index db985a2ff4..980f4c53d2 100644
--- a/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
+++ b/meta-python/recipes-devtools/python/python3-urllib3_1.25.11.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/shazow/urllib3"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e"
 
-SRC_URI[md5sum] = "94e3d4d472a14e788d4bd1a903fd102b"
-SRC_URI[sha256sum] = "91056c15fa70756691db97756772bb1eb9678fa585d9184f24534b100dc60f4a"
+SRC_URI[md5sum] = "d47dd21a6e66a03c3633cac468ffd010"
+SRC_URI[sha256sum] = "8d7eaa5a82a1cac232164990f04874c594c9453ec55eef02eab885aa02fc17a2"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.5.3 -> 1.6.0
  2020-10-21 11:16 [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Leon Anavi
  2020-10-21 11:16 ` [meta-python][PATCH 2/7] python3-dominate: Upgrade 2.5.2 -> 2.6.0 Leon Anavi
  2020-10-21 11:16 ` [meta-python][PATCH 3/7] python3-urllib3: Upgrade 1.25.10 -> 1.25.11 Leon Anavi
@ 2020-10-21 11:16 ` Leon Anavi
  2020-10-22 23:44   ` [oe] " Trevor Gamblin
  2020-10-21 11:16 ` [meta-python][PATCH 5/7] python3-markdown: Upgrade 3.3.1 -> 3.3.2 Leon Anavi
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-10-21 11:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.6.0:

- add `decodetree` object, for speeding up consecutive calls
  to `.decode()` and `.iterdecode()`, in particular when dealing
  with large prefix codes, see #103
- add optional parameter to `.tolist()` which changes the items in
  the returned list to integers (0 or 1), as opposed to Booleans
- remove deprecated `bitdiff()`, which has been deprecated since
  version 1.2.0, use `bitarray.util.count_xor()` instead
- drop Python 2.6 support

License-Update: Update license file, license remains the same.

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

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.5.3.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.6.0.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-bitarray_1.5.3.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_1.6.0.bb
index e36a17027f..b085cf7c09 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_1.5.3.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_1.6.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[md5sum] = "7cfa242b99351646fab0d76b05aab747"
-SRC_URI[sha256sum] = "567631fc922b1c2c528c376795f18dcc0604d18702e0b8b50e8e35f0474214a5"
+SRC_URI[md5sum] = "08ddac722b139c1544087c4953a6335b"
+SRC_URI[sha256sum] = "ba157ddebddc723fe021fc80595b3c70924d69ee58286b62bfca21da48edfc9d"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


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

* [meta-python][PATCH 5/7] python3-markdown: Upgrade 3.3.1 -> 3.3.2
  2020-10-21 11:16 [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-10-21 11:16 ` [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.5.3 -> 1.6.0 Leon Anavi
@ 2020-10-21 11:16 ` Leon Anavi
  2020-10-22 23:45   ` [oe] " Trevor Gamblin
  2020-10-21 11:16 ` [meta-python][PATCH 6/7] python3-pymisp: Upgrade 2.4.131 -> 2.4.133 Leon Anavi
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-10-21 11:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.3.2:

- Properly parse inline HTML in md_in_html
- Account for Etree Elements in HTML Stash

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

diff --git a/meta-python/recipes-devtools/python/python3-markdown_3.3.1.bb b/meta-python/recipes-devtools/python/python3-markdown_3.3.2.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-markdown_3.3.1.bb
rename to meta-python/recipes-devtools/python/python3-markdown_3.3.2.bb
index 8c6830b47d..d8d5304264 100644
--- a/meta-python/recipes-devtools/python/python3-markdown_3.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-markdown_3.3.2.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.md;md5=745aaad0c69c60039e638bff9ffc59ed"
 inherit pypi setuptools3
 
 PYPI_PACKAGE = "Markdown"
-SRC_URI[md5sum] = "c7b68676df277df34342bb9a27f7fe30"
-SRC_URI[sha256sum] = "c3ce9ebb035c078cac0f2036068d054e7dc34354eeecc49c173c33c96b124af6"
+SRC_URI[md5sum] = "4bdebf1b5c64286c2214c99120da4292"
+SRC_URI[sha256sum] = "4b71fbd2db30c1dfb400f22b25f41cb823fc1db0aa8b7b67d120644f92cc1011"
 
 BBCLASSEXTEND = "native"
 
-- 
2.17.1


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

* [meta-python][PATCH 6/7] python3-pymisp: Upgrade 2.4.131 -> 2.4.133
  2020-10-21 11:16 [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-10-21 11:16 ` [meta-python][PATCH 5/7] python3-markdown: Upgrade 3.3.1 -> 3.3.2 Leon Anavi
@ 2020-10-21 11:16 ` Leon Anavi
  2020-10-22 23:45   ` [oe] " Trevor Gamblin
  2020-10-21 11:16 ` [meta-python][PATCH 7/7] python3-typeguard: Upgrade 2.9.1 -> 2.10.0 Leon Anavi
  2020-10-22 23:44 ` [oe] [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-10-21 11:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.4.133:

- [attribute type] telfhash added.
- [add_gitlab_user] new gitlab user fetch script to MISP object.
- Bump object templates.
- Bump changelog.
- Bump version.
- Bump test cases.
- [type] updated.
- Bump file obj version in tests.
- [data] misp-objects updated.
- Bump build system to poetry 1.1.
- [type] new type added.
- [add_github_user] add ssh keys of the user in the MISP object.
- [add_github_user] more fields added from the GitHub API.
- Bump deps, objects.
- Add test for delete=True in get_event.
- [add_github_user] add following to the MISP object.
- Bump dependencies.
- Pass a list to add_attributes.
- Use MISPObject instead of GenericObjectGenerator.
- [doc] add a reference to the license.
- Add docstrings and extend conf.py for RTD.
- Remove PyMISPExpanded from the docs.
- Add comments to ELF, PE, and MachO object generators.
- Improve error message, add comments, rename whitelist to
  allowedlist.
- Remove SG search for search() func as this doesn't support SG
  searching, but the index does.

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

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


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

* [meta-python][PATCH 7/7] python3-typeguard: Upgrade 2.9.1 -> 2.10.0
  2020-10-21 11:16 [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-10-21 11:16 ` [meta-python][PATCH 6/7] python3-pymisp: Upgrade 2.4.131 -> 2.4.133 Leon Anavi
@ 2020-10-21 11:16 ` Leon Anavi
  2020-10-22 23:45   ` [oe] " Trevor Gamblin
  2020-10-22 23:44 ` [oe] [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-10-21 11:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.10.0:

- Added support for Python 3.9
- Added support for nested Literal
- Added support for TypedDict inheritance (with some caveats; see
  the user guide on that for details)
- An appropriate TypeError is now raised when encountering an
  illegal Literal value
- Fixed checking NoReturn on Python < 3.8 when typing_extensions
  was not installed
- Fixed import hook matching unwanted modules
- Install the pytest plugin earlier in the test run to support
  more use cases

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

diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb
rename to meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
index 3786ccb855..bd92216776 100644
--- a/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://pypi.org/project/typeguard/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53"
 
-SRC_URI[md5sum] = "411df8eefd76ffa014328a46342bdf38"
-SRC_URI[sha256sum] = "529ef3d88189cc457f4340388028412f71be8091c2c943465146d4170fb67288"
+SRC_URI[md5sum] = "cc43e0eb1dea7e409a74c7f1effc4544"
+SRC_URI[sha256sum] = "d830132dcd544d3f8a2a842ea739eaa0d7c099fcebb9dcdf3802f4c9929d8191"
 
 inherit pypi setuptools3 ptest
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0
  2020-10-21 11:16 [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-10-21 11:16 ` [meta-python][PATCH 7/7] python3-typeguard: Upgrade 2.9.1 -> 2.10.0 Leon Anavi
@ 2020-10-22 23:44 ` Trevor Gamblin
  6 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-10-22 23:44 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/21/20 7:16 AM, Leon Anavi wrote:
> - Declare support for Python 3.9
> - testing/docs: Include doctests in testing
> - Allow custom "now" in naturaldelta and naturaltime
> - Represent with a zero if the delta is too small
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-humanize_3.0.1.bb => python3-humanize_3.1.0.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-humanize_3.0.1.bb => python3-humanize_3.1.0.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-humanize_3.0.1.bb b/meta-python/recipes-devtools/python/python3-humanize_3.1.0.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-humanize_3.0.1.bb
> rename to meta-python/recipes-devtools/python/python3-humanize_3.1.0.bb
> index 92831bf135..43b882cb84 100644
> --- a/meta-python/recipes-devtools/python/python3-humanize_3.0.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-humanize_3.1.0.bb
> @@ -4,8 +4,8 @@ HOMEPAGE = "http://github.com/jmoiron/humanize"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
>   
> -SRC_URI[md5sum] = "53faa88dedddba1227f9c41d65440c54"
> -SRC_URI[sha256sum] = "8ff8f292c9bf52bbefdc620410e7defd1c95e7eeb1a5cfc2859aaea4b1877ff5"
> +SRC_URI[md5sum] = "bde0a033cf200f2874e6e3fc860bed48"
> +SRC_URI[sha256sum] = "fd3eb915310335c63a54d4507289ecc7b3a7454cd2c22ac5086d061a3cbfd592"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/7] python3-dominate: Upgrade 2.5.2 -> 2.6.0
  2020-10-21 11:16 ` [meta-python][PATCH 2/7] python3-dominate: Upgrade 2.5.2 -> 2.6.0 Leon Anavi
@ 2020-10-22 23:44   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-10-22 23:44 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/21/20 7:16 AM, Leon Anavi wrote:
> - Add get_current() to return the current active element in a with
>    context
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-dominate_2.5.2.bb => python3-dominate_2.6.0.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-dominate_2.5.2.bb => python3-dominate_2.6.0.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-dominate_2.5.2.bb b/meta-python/recipes-devtools/python/python3-dominate_2.6.0.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-dominate_2.5.2.bb
> rename to meta-python/recipes-devtools/python/python3-dominate_2.6.0.bb
> index 2044338942..b7c738d656 100644
> --- a/meta-python/recipes-devtools/python/python3-dominate_2.5.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-dominate_2.6.0.bb
> @@ -2,8 +2,8 @@ SUMMARY = "Dominate is a Python library for creating and manipulating HTML docum
>   LICENSE = "LGPLv3"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
>   
> -SRC_URI[md5sum] = "4a249c71cb009815923e9a47fa03ca08"
> -SRC_URI[sha256sum] = "456facce7a7ccfd9363948109cf1e978d48c58e46a46b01c71b4c0adc73b1928"
> +SRC_URI[md5sum] = "9f714324ca99eee98bb3c3cdbe838de6"
> +SRC_URI[sha256sum] = "76ec2cde23700a6fc4fee098168b9dee43b99c2f1dd0ca6a711f683e8eb7e1e4"
>   
>   inherit pypi setuptools3 ptest
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 3/7] python3-urllib3: Upgrade 1.25.10 -> 1.25.11
  2020-10-21 11:16 ` [meta-python][PATCH 3/7] python3-urllib3: Upgrade 1.25.10 -> 1.25.11 Leon Anavi
@ 2020-10-22 23:44   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-10-22 23:44 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/21/20 7:16 AM, Leon Anavi wrote:
> - Fix retry backoff time parsed from Retry-After header when given
>    in the HTTP date format. The HTTP date was parsed as the local
>    timezone rather than accounting for the timezone in the HTTP
>    date (typically UTC)
> - Fix issue where an error would be raised when the SSLKEYLOGFILE
>    environment variable was set to the empty string. Now
>    SSLContext.keylog_file is not set in this situation
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-urllib3_1.25.10.bb => python3-urllib3_1.25.11.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-urllib3_1.25.10.bb => python3-urllib3_1.25.11.bb} (79%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb b/meta-python/recipes-devtools/python/python3-urllib3_1.25.11.bb
> similarity index 79%
> rename from meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
> rename to meta-python/recipes-devtools/python/python3-urllib3_1.25.11.bb
> index db985a2ff4..980f4c53d2 100644
> --- a/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb
> +++ b/meta-python/recipes-devtools/python/python3-urllib3_1.25.11.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/shazow/urllib3"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e"
>   
> -SRC_URI[md5sum] = "94e3d4d472a14e788d4bd1a903fd102b"
> -SRC_URI[sha256sum] = "91056c15fa70756691db97756772bb1eb9678fa585d9184f24534b100dc60f4a"
> +SRC_URI[md5sum] = "d47dd21a6e66a03c3633cac468ffd010"
> +SRC_URI[sha256sum] = "8d7eaa5a82a1cac232164990f04874c594c9453ec55eef02eab885aa02fc17a2"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.5.3 -> 1.6.0
  2020-10-21 11:16 ` [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.5.3 -> 1.6.0 Leon Anavi
@ 2020-10-22 23:44   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-10-22 23:44 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/21/20 7:16 AM, Leon Anavi wrote:
> - add `decodetree` object, for speeding up consecutive calls
>    to `.decode()` and `.iterdecode()`, in particular when dealing
>    with large prefix codes, see #103
> - add optional parameter to `.tolist()` which changes the items in
>    the returned list to integers (0 or 1), as opposed to Booleans
> - remove deprecated `bitdiff()`, which has been deprecated since
>    version 1.2.0, use `bitarray.util.count_xor()` instead
> - drop Python 2.6 support
>
> License-Update: Update license file, license remains the same.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-bitarray_1.5.3.bb => python3-bitarray_1.6.0.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-bitarray_1.5.3.bb => python3-bitarray_1.6.0.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.5.3.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.6.0.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-bitarray_1.5.3.bb
> rename to meta-python/recipes-devtools/python/python3-bitarray_1.6.0.bb
> index e36a17027f..b085cf7c09 100644
> --- a/meta-python/recipes-devtools/python/python3-bitarray_1.5.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-bitarray_1.6.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
>   LICENSE = "PSF"
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
>   
> -SRC_URI[md5sum] = "7cfa242b99351646fab0d76b05aab747"
> -SRC_URI[sha256sum] = "567631fc922b1c2c528c376795f18dcc0604d18702e0b8b50e8e35f0474214a5"
> +SRC_URI[md5sum] = "08ddac722b139c1544087c4953a6335b"
> +SRC_URI[sha256sum] = "ba157ddebddc723fe021fc80595b3c70924d69ee58286b62bfca21da48edfc9d"
>   
>   inherit setuptools3 pypi
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 5/7] python3-markdown: Upgrade 3.3.1 -> 3.3.2
  2020-10-21 11:16 ` [meta-python][PATCH 5/7] python3-markdown: Upgrade 3.3.1 -> 3.3.2 Leon Anavi
@ 2020-10-22 23:45   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-10-22 23:45 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/21/20 7:16 AM, Leon Anavi wrote:
> - Properly parse inline HTML in md_in_html
> - Account for Etree Elements in HTML Stash
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-markdown_3.3.1.bb => python3-markdown_3.3.2.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-markdown_3.3.1.bb => python3-markdown_3.3.2.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-markdown_3.3.1.bb b/meta-python/recipes-devtools/python/python3-markdown_3.3.2.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-markdown_3.3.1.bb
> rename to meta-python/recipes-devtools/python/python3-markdown_3.3.2.bb
> index 8c6830b47d..d8d5304264 100644
> --- a/meta-python/recipes-devtools/python/python3-markdown_3.3.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-markdown_3.3.2.bb
> @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.md;md5=745aaad0c69c60039e638bff9ffc59ed"
>   inherit pypi setuptools3
>   
>   PYPI_PACKAGE = "Markdown"
> -SRC_URI[md5sum] = "c7b68676df277df34342bb9a27f7fe30"
> -SRC_URI[sha256sum] = "c3ce9ebb035c078cac0f2036068d054e7dc34354eeecc49c173c33c96b124af6"
> +SRC_URI[md5sum] = "4bdebf1b5c64286c2214c99120da4292"
> +SRC_URI[sha256sum] = "4b71fbd2db30c1dfb400f22b25f41cb823fc1db0aa8b7b67d120644f92cc1011"
>   
>   BBCLASSEXTEND = "native"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 6/7] python3-pymisp: Upgrade 2.4.131 -> 2.4.133
  2020-10-21 11:16 ` [meta-python][PATCH 6/7] python3-pymisp: Upgrade 2.4.131 -> 2.4.133 Leon Anavi
@ 2020-10-22 23:45   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-10-22 23:45 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/21/20 7:16 AM, Leon Anavi wrote:
> - [attribute type] telfhash added.
> - [add_gitlab_user] new gitlab user fetch script to MISP object.
> - Bump object templates.
> - Bump changelog.
> - Bump version.
> - Bump test cases.
> - [type] updated.
> - Bump file obj version in tests.
> - [data] misp-objects updated.
> - Bump build system to poetry 1.1.
> - [type] new type added.
> - [add_github_user] add ssh keys of the user in the MISP object.
> - [add_github_user] more fields added from the GitHub API.
> - Bump deps, objects.
> - Add test for delete=True in get_event.
> - [add_github_user] add following to the MISP object.
> - Bump dependencies.
> - Pass a list to add_attributes.
> - Use MISPObject instead of GenericObjectGenerator.
> - [doc] add a reference to the license.
> - Add docstrings and extend conf.py for RTD.
> - Remove PyMISPExpanded from the docs.
> - Add comments to ELF, PE, and MachO object generators.
> - Improve error message, add comments, rename whitelist to
>    allowedlist.
> - Remove SG search for search() func as this doesn't support SG
>    searching, but the index does.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pymisp_2.4.131.bb => python3-pymisp_2.4.133.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pymisp_2.4.131.bb => python3-pymisp_2.4.133.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb
> rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb
> index 82ab80314a..28a24fed55 100644
> --- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb
> +++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.133.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/MISP/PyMISP"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
>   
> -SRC_URI[md5sum] = "8844204f8b059ff2fc508ba9ac07dcb2"
> -SRC_URI[sha256sum] = "59adb7ee95bfb1b5c35abbc01b5372df7327baea4a8df9efe30140ea64b73c18"
> +SRC_URI[md5sum] = "00e258da18f59845687f58389a2e8e12"
> +SRC_URI[sha256sum] = "4a2a8a4da78c6321550522d5cf1575c095773d0867c0a4f5157a658f6e1994d5"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 7/7] python3-typeguard: Upgrade 2.9.1 -> 2.10.0
  2020-10-21 11:16 ` [meta-python][PATCH 7/7] python3-typeguard: Upgrade 2.9.1 -> 2.10.0 Leon Anavi
@ 2020-10-22 23:45   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-10-22 23:45 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/21/20 7:16 AM, Leon Anavi wrote:
> - Added support for Python 3.9
> - Added support for nested Literal
> - Added support for TypedDict inheritance (with some caveats; see
>    the user guide on that for details)
> - An appropriate TypeError is now raised when encountering an
>    illegal Literal value
> - Fixed checking NoReturn on Python < 3.8 when typing_extensions
>    was not installed
> - Fixed import hook matching unwanted modules
> - Install the pytest plugin earlier in the test run to support
>    more use cases
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>

Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>

> ---
>   ...python3-typeguard_2.9.1.bb => python3-typeguard_2.10.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-typeguard_2.9.1.bb => python3-typeguard_2.10.0.bb} (82%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
> similarity index 82%
> rename from meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb
> rename to meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
> index 3786ccb855..bd92216776 100644
> --- a/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://pypi.org/project/typeguard/"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53"
>   
> -SRC_URI[md5sum] = "411df8eefd76ffa014328a46342bdf38"
> -SRC_URI[sha256sum] = "529ef3d88189cc457f4340388028412f71be8091c2c943465146d4170fb67288"
> +SRC_URI[md5sum] = "cc43e0eb1dea7e409a74c7f1effc4544"
> +SRC_URI[sha256sum] = "d830132dcd544d3f8a2a842ea739eaa0d7c099fcebb9dcdf3802f4c9929d8191"
>   
>   inherit pypi setuptools3 ptest
>   
>
> 
>

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

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

end of thread, other threads:[~2020-10-22 23:45 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-21 11:16 [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 Leon Anavi
2020-10-21 11:16 ` [meta-python][PATCH 2/7] python3-dominate: Upgrade 2.5.2 -> 2.6.0 Leon Anavi
2020-10-22 23:44   ` [oe] " Trevor Gamblin
2020-10-21 11:16 ` [meta-python][PATCH 3/7] python3-urllib3: Upgrade 1.25.10 -> 1.25.11 Leon Anavi
2020-10-22 23:44   ` [oe] " Trevor Gamblin
2020-10-21 11:16 ` [meta-python][PATCH 4/7] python3-bitarray: Upgrade 1.5.3 -> 1.6.0 Leon Anavi
2020-10-22 23:44   ` [oe] " Trevor Gamblin
2020-10-21 11:16 ` [meta-python][PATCH 5/7] python3-markdown: Upgrade 3.3.1 -> 3.3.2 Leon Anavi
2020-10-22 23:45   ` [oe] " Trevor Gamblin
2020-10-21 11:16 ` [meta-python][PATCH 6/7] python3-pymisp: Upgrade 2.4.131 -> 2.4.133 Leon Anavi
2020-10-22 23:45   ` [oe] " Trevor Gamblin
2020-10-21 11:16 ` [meta-python][PATCH 7/7] python3-typeguard: Upgrade 2.9.1 -> 2.10.0 Leon Anavi
2020-10-22 23:45   ` [oe] " Trevor Gamblin
2020-10-22 23:44 ` [oe] [meta-python][PATCH 1/7] python3-humanize: Upgrade 3.0.1 -> 3.1.0 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.