indexed-gzip 0.8.6-1.1 source package in Ubuntu

Changelog

indexed-gzip (0.8.6-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Drop python2 support; Closes: #936732
  * debian/patches/fix-fixtures.patch
    - fix how fixtures are used, needed by pytest >= 4

 -- Sandro Tosi <email address hidden>  Sat, 19 Oct 2019 17:02:11 -0400

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
indexed-gzip_0.8.6-1.1.dsc 2.1 KiB 1982c0bbb30485447a5dbd8dbb0bb5d635c6ccb97a114b1e40b022ee5a255cd8
indexed-gzip_0.8.6.orig.tar.gz 75.0 KiB 117d947aa76a89b80852ec177adc170a6d0af8c3589150631e8cb164af8eb8e6
indexed-gzip_0.8.6-1.1.debian.tar.xz 4.3 KiB 90b45e11d4b8030ade74be6318cc82125bdf634fc069b064eb18bbcb0a500181

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