From eac1995a2cd58945e59d9684ba61cce593a73266 Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 23 Jul 2021 22:24:39 +0800 Subject: [PATCH 1/5] python3-qrcode: upgrade 7.1 -> 7.2 7.2 (19 July 2021) ================== - Add Styled PIL image factory, allowing different color masks and shapes in QR codes - Small performance inprovement - Add check for border size parameter Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-qrcode_7.1.bb => python3-qrcode_7.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-qrcode_7.1.bb => python3-qrcode_7.2.bb} (73%) diff --git a/meta-python/recipes-devtools/python/python3-qrcode_7.1.bb b/meta-python/recipes-devtools/python/python3-qrcode_7.2.bb similarity index 73% rename from meta-python/recipes-devtools/python/python3-qrcode_7.1.bb rename to meta-python/recipes-devtools/python/python3-qrcode_7.2.bb index 329bf3e4fa0..d5f54e60a02 100644 --- a/meta-python/recipes-devtools/python/python3-qrcode_7.1.bb +++ b/meta-python/recipes-devtools/python/python3-qrcode_7.2.bb @@ -4,7 +4,7 @@ LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=4b802d2a65df4626623c79757f486af9" PYPI_PACKAGE = "qrcode" -SRC_URI[sha256sum] = "59ba630fa2adb637b06571e6ceec1bb0ecf372c458c4447ceba763061bd3af72" +SRC_URI[sha256sum] = "153ad96f5892e6fe2f3699296240976ac3a6d068e2eb48bbfc64b4c4c4d675ea" inherit pypi setuptools3 From 77923351edf2941299209785ea1b6118282133f1 Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 23 Jul 2021 22:25:20 +0800 Subject: [PATCH 2/5] python3-rdflib: upgrade 5.0.0 -> 6.0.0 -License-Update: Copyright year updated to 2021. 2021/07/20 RELEASE 6.0.0 ======================== 6.0.0 is a major stable release that drops support for Python 2 and Python 3 < 3.7. Type hinting is now present in much of the toolkit as a result. It includes the formerly independent JSON-LD parser/serializer, improvements to Namespaces that allow for IDE namespace prompting, simplified use of `g.serialize()` (turtle default, no need to `decode()`) and many other updates to documentation, store backends and so on. Performance of the in-memory store has also improved since Python 3.6 dictionary improvements. There are numerous supplementary improvements to the toolkit too, such as: * inclusion of Docker files for easier CI/CD * black config files for standardised code formatting * improved testing with mock SPARQL stores, rather than a reliance on DBPedia etc Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/python3-rdflib_5.0.0.bb | 15 --------------- .../python/python3-rdflib_6.0.0.bb | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 15 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb create mode 100644 meta-python/recipes-devtools/python/python3-rdflib_6.0.0.bb diff --git a/meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb b/meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb deleted file mode 100644 index d037a74bfa5..00000000000 --- a/meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb +++ /dev/null @@ -1,15 +0,0 @@ -SUMMARY = "RDFLib is a pure Python package for working with RDF" -LICENSE = "BSD-3-Clause" -LIC_FILES_CHKSUM = "file://LICENSE;md5=68c1a3bb687bd63b8e5552f3ea249840" - -SRC_URI[md5sum] = "80d7c6adc2e4040cdd8dade2e0e61403" -SRC_URI[sha256sum] = "78149dd49d385efec3b3adfbd61c87afaf1281c30d3fcaf1b323b34f603fb155" - -inherit pypi setuptools3 - -RDEPENDS_${PN} += " \ - ${PYTHON_PN}-isodate \ - ${PYTHON_PN}-pyparsing \ -" - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta-python/recipes-devtools/python/python3-rdflib_6.0.0.bb b/meta-python/recipes-devtools/python/python3-rdflib_6.0.0.bb new file mode 100644 index 00000000000..47cdc49d97a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-rdflib_6.0.0.bb @@ -0,0 +1,17 @@ +SUMMARY = "RDFLib is a pure Python package for working with RDF" +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=89aa9a14f80a6ac70e1d5da763a309ed" + +SRC_URI[sha256sum] = "7ce4d757eb26f4dd43205ec340d8c097f29e5adfe45d6ea20238c731dc679879" + +inherit pypi setuptools3 + +RDEPENDS_${PN} += " \ + ${PYTHON_PN}-isodate \ + ${PYTHON_PN}-pyparsing \ + ${PYTHON_PN}-logging \ + ${PYTHON_PN}-numbers \ + ${PYTHON_PN}-xml \ +" + +BBCLASSEXTEND = "native nativesdk" From 6a709fea6a7c151f117715847fabb589041b8c54 Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 23 Jul 2021 22:25:39 +0800 Subject: [PATCH 3/5] python3-simplejson: upgrade 3.17.2 -> 3.17.3 Version 3.17.3 released 2021-07-09 * Replaced Travis-CI and AppVeyor with Github Actions, adding wheels for Python 3.9. https://github.com/simplejson/simplejson/pull/283 Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...thon3-simplejson_3.17.2.bb => python3-simplejson_3.17.3.bb} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-simplejson_3.17.2.bb => python3-simplejson_3.17.3.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb b/meta-python/recipes-devtools/python/python3-simplejson_3.17.3.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb rename to meta-python/recipes-devtools/python/python3-simplejson_3.17.3.bb index cab0da6a15d..11b057743cc 100644 --- a/meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb +++ b/meta-python/recipes-devtools/python/python3-simplejson_3.17.3.bb @@ -4,8 +4,7 @@ HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e" -SRC_URI[md5sum] = "27fba3bc75a32318bd3b163b8a31aa7e" -SRC_URI[sha256sum] = "75ecc79f26d99222a084fbdd1ce5aad3ac3a8bd535cd9059528452da38b68841" +SRC_URI[sha256sum] = "da72a452bcf4349fc467a12b54ab0e63e654a571cacc44084826d52bde12b6ee" inherit pypi setuptools3 From 6deb32098b40fbfc36131f1b369a2c5d1a608a07 Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 23 Jul 2021 22:23:54 +0800 Subject: [PATCH 4/5] python3-bitstring: upgrade 3.1.7 -> 3.1.9 -License-Update: Copyright year updated to 2016. July 20th 2021: version 3.1.9 released (version 3.1.8 was pulled due to serious issues) Another maintenance release. Fixed a couple of outdated results in the readme (Issue 214). Some more documentation tidying. Turned off some debug code by default. Fixed a couple of failing tests in different Python versions. Fix for consistent pos initialisation semantics for different types. Change to allow wheels to be uploaded to PyPI. More work for LSB0 mode, but still not finished or documented (sorry). Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...python3-bitstring_3.1.7.bb => python3-bitstring_3.1.9.bb} | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename meta-python/recipes-devtools/python/{python3-bitstring_3.1.7.bb => python3-bitstring_3.1.9.bb} (64%) diff --git a/meta-python/recipes-devtools/python/python3-bitstring_3.1.7.bb b/meta-python/recipes-devtools/python/python3-bitstring_3.1.9.bb similarity index 64% rename from meta-python/recipes-devtools/python/python3-bitstring_3.1.7.bb rename to meta-python/recipes-devtools/python/python3-bitstring_3.1.9.bb index eae8275d6db..9c80013eb52 100644 --- a/meta-python/recipes-devtools/python/python3-bitstring_3.1.7.bb +++ b/meta-python/recipes-devtools/python/python3-bitstring_3.1.9.bb @@ -2,10 +2,9 @@ SUMMARY = "Simple construction, analysis and modification of binary data." HOMEPAGE = "https://github.com/scott-griffiths/bitstring" AUTHOR = "Scott Griffiths " LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=d973e8e0c311da41424357236b7b8908" +LIC_FILES_CHKSUM = "file://LICENSE;md5=f7f2fd3f1cd52b5ccd39d76fb3568d3f" -SRC_URI[md5sum] = "18661a3e5c47c59bd926dd0fefae0baa" -SRC_URI[sha256sum] = "fdf3eb72b229d2864fb507f8f42b1b2c57af7ce5fec035972f9566de440a864a" +SRC_URI[sha256sum] = "a5848a3f63111785224dca8bb4c0a75b62ecdef56a042c8d6be74b16f7e860e7" PYPI_PACKAGE = "bitstring" From 137b8fb650c3d2b23c90109f2887a7cb5a0f0f2e Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 23 Jul 2021 22:24:15 +0800 Subject: [PATCH 5/5] python3-iso8601: upgrade 0.1.14 -> 0.1.16 Add docs/ to sdist Addresses part of #14 Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-iso8601_0.1.14.bb => python3-iso8601_0.1.16.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-iso8601_0.1.14.bb => python3-iso8601_0.1.16.bb} (78%) diff --git a/meta-python/recipes-devtools/python/python3-iso8601_0.1.14.bb b/meta-python/recipes-devtools/python/python3-iso8601_0.1.16.bb similarity index 78% rename from meta-python/recipes-devtools/python/python3-iso8601_0.1.14.bb rename to meta-python/recipes-devtools/python/python3-iso8601_0.1.16.bb index c531fcc6d8b..c72a10882b7 100644 --- a/meta-python/recipes-devtools/python/python3-iso8601_0.1.14.bb +++ b/meta-python/recipes-devtools/python/python3-iso8601_0.1.16.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://pyiso8601.readthedocs.org/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=b05625f2336fa024e8d57e65c6595844" -SRC_URI[sha256sum] = "8aafd56fa0290496c5edbb13c311f78fa3a241f0853540da09d9363eae3ebd79" +SRC_URI[sha256sum] = "36532f77cc800594e8f16641edae7f1baf7932f05d8e508545b95fc53c6dc85b" inherit pypi setuptools3