indexed-gzip 1.8.7-1 source package in Ubuntu

Changelog

indexed-gzip (1.8.7-1) unstable; urgency=medium

  [ Matthias Klose ]
  * New upstream version 1.8.7
    Closes: #1070442

  [ Étienne Mollier ]
  * d/control: add myself to uploaders.
  * d/control: declare compliance to standards version 4.7.0.
  * d/{control,rules}: move to dh-sequence-python3.
  * d/copyright: remove reference to compat/ and BSD-3-Clauses.
  * d/control: mark build-time test dependencies.
  * d/control: tests depend on python3-pytest-cov.

 -- Étienne Mollier <email address hidden>  Sat, 25 May 2024 10:16:31 +0200

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Downloads

File Size SHA-256 Checksum
indexed-gzip_1.8.7-1.dsc 2.3 KiB e1d6b1d840538ee88c20738c9c29b82713c3652fa0f17a2287c2ffbd3d546933
indexed-gzip_1.8.7.orig.tar.gz 98.8 KiB 1c2ab8335a29a312e8c69afaa94aec56dd5910b14e6488e67ac1d400c62455fd
indexed-gzip_1.8.7-1.debian.tar.xz 5.2 KiB 252dd6a4077d2b8180d2b10369f4b8a5b9621e97b8f9fd9b53134a4bb916097f

No changes file available.

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