indexed-gzip 1.7.0-1.1ubuntu1 source package in Ubuntu

Changelog

indexed-gzip (1.7.0-1.1ubuntu1) noble; urgency=medium

  * Cherry-pick upstream commit for Python 3.12 compatibility

 -- Graham Inggs <email address hidden>  Wed, 17 Apr 2024 20:10:38 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Noble
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc

Downloads

File Size SHA-256 Checksum
indexed-gzip_1.7.0.orig.tar.gz 101.4 KiB dbe9f4040c46574c894cb4a96a0fffce82ff672caec78753d76d906189ade4d5
indexed-gzip_1.7.0-1.1ubuntu1.debian.tar.xz 6.3 KiB 073a0baa4a85da7922f6a13e0511287212176811bb2a53487cc2897865f62f80
indexed-gzip_1.7.0-1.1ubuntu1.dsc 2.3 KiB f19cc8c3fa428848c1c695a48d2746a3e46013972396eb2a5fcbe7cfaf7d5500

View changes file

Binary packages built by this source

python3-indexed-gzip: fast random access of gzip files in Python

 Drop-in replacement `IndexedGzipFile` for the built-in Python `gzip.GzipFile`
 class that does not need to start decompressing from the beginning of the
 file when for every `seek()`. It gets around this performance limitation by
 building an index, which contains *seek points*, mappings between
 corresponding locations in the compressed and uncompressed data streams. Each
 seek point is accompanied by a chunk (32KB) of uncompressed data which is
 used to initialise the decompression algorithm, allowing to start reading
 from any seek point. If the index is built with a seek point spacing of 1MB,
 only 512KB (on average) of data have to be decompressed to read from any
 location in the file.
 .
 This package provides the Python 3 module.

python3-indexed-gzip-dbgsym: debug symbols for python3-indexed-gzip