All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10
@ 2022-01-13 13:25 Leon Anavi
  2022-01-13 13:25 ` [meta-python][PATCH 2/3] python3-wtforms: Upgrade 3.0.0 -> 3.0.1 Leon Anavi
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Leon Anavi @ 2022-01-13 13:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2021.11.10:

- Minor changes to some tests
- Removed unused functions
- Fuzzy regex matching doesn't seem to test insertions correctly

License-Update: Use LICENSE.txt

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

diff --git a/meta-python/recipes-devtools/python/python3-regex_2021.10.8.bb b/meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb
similarity index 58%
rename from meta-python/recipes-devtools/python/python3-regex_2021.10.8.bb
rename to meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb
index e7978970c..dce232ba6 100644
--- a/meta-python/recipes-devtools/python/python3-regex_2021.10.8.bb
+++ b/meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb
@@ -1,11 +1,11 @@
 SUMMARY = "Alternative regular expression module, to replace re."
 HOMEPAGE = "https://bitbucket.org/mrabarnett/mrab-regex/src"
 LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=f0a3e4a2554ebb89c046c93d45d8e4bc"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7b5751ddd6b643203c31ff873051d069"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "26895d7c9bbda5c52b3635ce5991caa90fbb1ddfac9c9ff1c7ce505e2282fb2a"
+SRC_URI[sha256sum] = "f341ee2df0999bfdf7a95e448075effe0db212a59387de1a70690e4acb03d4c6"
 
 RDEPENDS:${PN} += " \
 	python3-stringold \
-- 
2.30.2



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

* [meta-python][PATCH 2/3] python3-wtforms: Upgrade 3.0.0 -> 3.0.1
  2022-01-13 13:25 [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10 Leon Anavi
@ 2022-01-13 13:25 ` Leon Anavi
  2022-01-13 13:25 ` [meta-python][PATCH 3/3] python3-charset-normalizer: Upgarde 2.0.7 -> 2.0.10 Leon Anavi
  2022-01-13 16:30 ` [oe] [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10 Khem Raj
  2 siblings, 0 replies; 4+ messages in thread
From: Leon Anavi @ 2022-01-13 13:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.0.1:

- Fixed :class:`~fields.DateTimeField` and other similar fields
  can handle multiple formats
- Stop support for python 3.6

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

diff --git a/meta-python/recipes-devtools/python/python3-wtforms_3.0.0.bb b/meta-python/recipes-devtools/python/python3-wtforms_3.0.1.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-wtforms_3.0.0.bb
rename to meta-python/recipes-devtools/python/python3-wtforms_3.0.1.bb
index c72af7451..36a0191dc 100644
--- a/meta-python/recipes-devtools/python/python3-wtforms_3.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-wtforms_3.0.1.bb
@@ -3,10 +3,9 @@ HOMEPAGE = "https://pypi.python.org/pypi/WTForms"
 SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 
-
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a9f8f0d527c043d"
 
-SRC_URI[sha256sum] = "4abfbaa1d529a1d0ac927d44af8dbb9833afd910e56448a103f1893b0b176886"
+SRC_URI[sha256sum] = "6b351bbb12dd58af57ffef05bc78425d08d1914e0fd68ee14143b7ade023c5bc"
 
 PYPI_PACKAGE = "WTForms"
 
-- 
2.30.2



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

* [meta-python][PATCH 3/3] python3-charset-normalizer: Upgarde 2.0.7 -> 2.0.10
  2022-01-13 13:25 [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10 Leon Anavi
  2022-01-13 13:25 ` [meta-python][PATCH 2/3] python3-wtforms: Upgrade 3.0.0 -> 3.0.1 Leon Anavi
@ 2022-01-13 13:25 ` Leon Anavi
  2022-01-13 16:30 ` [oe] [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10 Khem Raj
  2 siblings, 0 replies; 4+ messages in thread
From: Leon Anavi @ 2022-01-13 13:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.0.10:

- Fallback match entries might lead to UnicodeDecodeError for
  large bytes sequence
- Skipping the language-detection (CD) on ASCII

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...zer_2.0.7.bb => python3-charset-normalizer_2.0.10.bb} | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-charset-normalizer_2.0.7.bb => python3-charset-normalizer_2.0.10.bb} (58%)

diff --git a/meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.7.bb b/meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.10.bb
similarity index 58%
rename from meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.7.bb
rename to meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.10.bb
index 7db106398..3c1e6804e 100644
--- a/meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.7.bb
+++ b/meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.10.bb
@@ -3,6 +3,13 @@ HOMEPAGE = "https://github.com/ousret/charset_normalizer"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0974a390827087287db39928f7c524b5"
 
-SRC_URI[sha256sum] = "e019de665e2bcf9c2b64e2e5aa025fa991da8720daa3c1138cadd2fd1856aed0"
+SRC_URI[sha256sum] = "876d180e9d7432c5d1dfd4c5d26b72f099d503e8fcc0feb7532c9289be60fcbd"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+	${PYTHON_PN}-core \
+	${PYTHON_PN}-logging \
+	${PYTHON_PN}-codecs \
+	${PYTHON_PN}-json \
+"
-- 
2.30.2



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

* Re: [oe] [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10
  2022-01-13 13:25 [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10 Leon Anavi
  2022-01-13 13:25 ` [meta-python][PATCH 2/3] python3-wtforms: Upgrade 3.0.0 -> 3.0.1 Leon Anavi
  2022-01-13 13:25 ` [meta-python][PATCH 3/3] python3-charset-normalizer: Upgarde 2.0.7 -> 2.0.10 Leon Anavi
@ 2022-01-13 16:30 ` Khem Raj
  2 siblings, 0 replies; 4+ messages in thread
From: Khem Raj @ 2022-01-13 16:30 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel



On 1/13/22 5:25 AM, Leon Anavi wrote:
> Upgrade to release 2021.11.10:
> 
> - Minor changes to some tests
> - Removed unused functions
> - Fuzzy regex matching doesn't seem to test insertions correctly
> 
> License-Update: Use LICENSE.txt
> 
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>   ...python3-regex_2021.10.8.bb => python3-regex_2021.11.10.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-regex_2021.10.8.bb => python3-regex_2021.11.10.bb} (58%)
> 
> diff --git a/meta-python/recipes-devtools/python/python3-regex_2021.10.8.bb b/meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb
> similarity index 58%
> rename from meta-python/recipes-devtools/python/python3-regex_2021.10.8.bb
> rename to meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb
> index e7978970c..dce232ba6 100644
> --- a/meta-python/recipes-devtools/python/python3-regex_2021.10.8.bb
> +++ b/meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb
> @@ -1,11 +1,11 @@
>   SUMMARY = "Alternative regular expression module, to replace re."
>   HOMEPAGE = "https://bitbucket.org/mrabarnett/mrab-regex/src"
>   LICENSE = "Apache-2.0"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=f0a3e4a2554ebb89c046c93d45d8e4bc"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7b5751ddd6b643203c31ff873051d069"

I hope the license terms and conditions are still same as it was before 
using LICENSE.txt ?

>   
>   inherit pypi setuptools3
>   
> -SRC_URI[sha256sum] = "26895d7c9bbda5c52b3635ce5991caa90fbb1ddfac9c9ff1c7ce505e2282fb2a"
> +SRC_URI[sha256sum] = "f341ee2df0999bfdf7a95e448075effe0db212a59387de1a70690e4acb03d4c6"
>   
>   RDEPENDS:${PN} += " \
>   	python3-stringold \
> 
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#94806): https://lists.openembedded.org/g/openembedded-devel/message/94806
> Mute This Topic: https://lists.openembedded.org/mt/88396262/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


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

end of thread, other threads:[~2022-01-13 16:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-13 13:25 [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10 Leon Anavi
2022-01-13 13:25 ` [meta-python][PATCH 2/3] python3-wtforms: Upgrade 3.0.0 -> 3.0.1 Leon Anavi
2022-01-13 13:25 ` [meta-python][PATCH 3/3] python3-charset-normalizer: Upgarde 2.0.7 -> 2.0.10 Leon Anavi
2022-01-13 16:30 ` [oe] [meta-python][PATCH 1/3] python3-regex: Upgrade 2021.10.8 -> 2021.11.10 Khem Raj

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.