diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2021-11-15 20:56:49 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-11-16 08:25:15 -0800 |
commit | 1f5e1d37f8e6605e71b6c8fa2e4ac72ef0c52f84 (patch) | |
tree | 4da78d7bcc20a52ec97b5b9c56457090485ae9b0 /meta-python | |
parent | 464f4c2de45a69934b47ce5553bcd63272f61922 (diff) | |
download | meta-openembedded-1f5e1d37f8e6605e71b6c8fa2e4ac72ef0c52f84.tar.gz |
python3-charset-normalizer: Add recipe
Package for encoding & language detection. Charset detection.
Version 2.0.7:
- Add support for Kazakh (Cyrillic) language detection
- Further improve inferring the language from a given code page
(single-byte)
- Remove redundant logging entry about detected language(s)
- Trying to leverage PEP263 when PEP3120 is not supported
- Refactoring for potential performance improvements in loops
- Various detection improvement (MD+CD)
- Fix a minor inconsistency between Python 3.5 and other versions
regarding language detection
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.7.bb | 8 |
1 files changed, 8 insertions, 0 deletions
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.7.bb new file mode 100644 index 0000000000..7db1063981 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.7.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | SUMMARY = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." | ||
2 | HOMEPAGE = "https://github.com/ousret/charset_normalizer" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=0974a390827087287db39928f7c524b5" | ||
5 | |||
6 | SRC_URI[sha256sum] = "e019de665e2bcf9c2b64e2e5aa025fa991da8720daa3c1138cadd2fd1856aed0" | ||
7 | |||
8 | inherit pypi setuptools3 | ||