Fri, 17 May 2024 12:47:25 UTC | login

Information for build python-indexed_gzip-0.8.10-5.fc32

ID131986
Package Namepython-indexed_gzip
Version0.8.10
Release5.fc32
Epoch
Sourcegit+https://src.fedoraproject.org/rpms/python-indexed_gzip.git#20acfccf83bc4ff3f51fadc74b887c5d390116fa
SummaryFast random access of gzip files in Python
Description The indexed_gzip project is a Python extension which aims to provide a drop-in replacement for the built-in Python gzip.GzipFile class, the IndexedGzipFile. indexed_gzip was written to allow fast random access of compressed NIFTI image files (for which GZIP is the de-facto compression standard), but will work with any GZIP file. indexed_gzip is easy to use with nibabel. The standard gzip.GzipFile class exposes a random access-like interface (via its seek and read methods), but every time you seek to a new point in the uncompressed data stream, the GzipFile instance has to start decompressing from the beginning of the file, until it reaches the requested location. An IndexedGzipFile instance 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 us to start reading from any seek point. If the index is built with a seek point spacing of 1MB, we only have to decompress (on average) 512KB of data to read from any location in the file.
Built bydavidlt
State failed
Volume DEFAULT
StartedTue, 03 Dec 2019 11:25:48 UTC
CompletedTue, 03 Dec 2019 11:41:08 UTC
Taskbuild (f32-candidate, /rpms/python-indexed_gzip.git:20acfccf83bc4ff3f51fadc74b887c5d390116fa)
Extra{'source': {'original_url': 'git+https://src.fedoraproject.org/rpms/python-indexed_gzip.git#20acfccf83bc4ff3f51fadc74b887c5d390116fa'}}
Tags No tags
RPMs No RPMs
Changelog * Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.8.10-5 - Rebuilt for Python 3.8.0rc1 (#1748018) * Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.8.10-4 - Rebuilt for Python 3.8 * Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Mon May 20 2019 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 0.8.10-2 - Remove cythonised sources * Fri May 17 2019 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 0.8.10-1 - Update to newest release - rhbz: 1710384 * Wed Apr 10 2019 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 0.8.8-1 - Update to latest upstream release * Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Fri Nov 09 2018 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 0.8.7-1 - Initial build