diff options
| author | Derek Straka <derek@asterius.io> | 2023-09-20 16:38:59 +0000 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-09-20 22:15:39 -0700 |
| commit | 1f49f47ce8746c98aab782e75b4dbb000889e4b0 (patch) | |
| tree | 08b6b8c0733217d236fff1b0cf17a65894b1842c /meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb | |
| parent | d3a53e9b933a3639be658ff9f0c0178223345905 (diff) | |
| download | meta-openembedded-1f49f47ce8746c98aab782e75b4dbb000889e4b0.tar.gz | |
python3-brotli: Update version 1.0.9 -> 1.1.0
Removed override for package extension as it is now a tgz
Changelog
=========
Added
decoder: BrotliDecoderAttachDictionary
decoder: BrotliDecoderOnFinish callback behind BROTLI_REPORTING
decoder: BrotliDecoderSetMetadataCallbacks
encoder: BrotliEncoderPrepareDictionary,
BrotliEncoderDestroyPreparedDictionary,
BrotliEncoderAttachPreparedDictionary
decoder: BrotliEncoderOnFinish callback behind BROTLI_REPORTING
common: BrotliSharedDictionaryCreateInstance,
BrotliSharedDictionaryDestroyInstance,
BrotliSharedDictionaryAttach
CLI: --dictionary option
java: encoder wrapper: Parameters.mode
java: Brotli{Input|Output}Stream.attachDictionary
java: wrapper: partial byte array input
typescript: decoder (transpiled from Java)
Removed
build: BROTLI_BUILD_PORTABLE option
Fixed
java: JNI decoder failed sometimes on power of 2 payloads
Improved
java / js: smaller decoder footprint
decoder: faster decoding
encoder: faster encoding
encoder: smaller stack frames
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb b/meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb new file mode 100644 index 0000000000..0f639f33e7 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | SUMMARY = "Brotli compression format" | ||
| 2 | HOMEPAGE = "https://pypi.org/project/Brotli/" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=941ee9cd1609382f946352712a319b4b" | ||
| 6 | |||
| 7 | PYPI_PACKAGE = "Brotli" | ||
| 8 | |||
| 9 | SRC_URI[sha256sum] = "81de08ac11bcb85841e440c13611c00b67d3bf82698314928d0b676362546724" | ||
| 10 | |||
| 11 | inherit pypi setuptools3 | ||
| 12 | |||
| 13 | RDEPENDS:${PN} = "\ | ||
| 14 | ${PYTHON_PN}-cffi \ | ||
| 15 | " | ||
| 16 | |||
| 17 | BBCLASSEXTEND = "native nativesdk" | ||
