Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmqs/io-compress
IO-Compress - Perl5 module to read/write compressed data in multiple formats
https://github.com/pmqs/io-compress
bzip2 compression deflate gunzip gzip inflate perl perl5 perl5-module streaming uncompress unzip zip zip64
Last synced: 2 months ago
JSON representation
IO-Compress - Perl5 module to read/write compressed data in multiple formats
- Host: GitHub
- URL: https://github.com/pmqs/io-compress
- Owner: pmqs
- Created: 2019-02-23T17:10:18.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T15:42:36.000Z (4 months ago)
- Last Synced: 2024-10-12T11:42:15.582Z (2 months ago)
- Topics: bzip2, compression, deflate, gunzip, gzip, inflate, perl, perl5, perl5-module, streaming, uncompress, unzip, zip, zip64
- Language: Perl
- Homepage:
- Size: 1.8 MB
- Stars: 14
- Watchers: 4
- Forks: 16
- Open Issues: 13
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
IO-Compress
Version 2.213
28 August 2024
Copyright (c) 1995-2024 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.DESCRIPTION
-----------This distribution provides a Perl interface to allow reading and writing of
compressed data created with the zlib and bzip2.IO-Compress supports reading and writing of the following compressed data formats
* bzip2
* RFC 1950
* RFC 1951
* RFC 1952 (i.e. gzip)
* zipThere are a number of companion modules for IO-Compress that extend
the suite of compression formats available.* IO-Compress-Zstd
Adds support for zstd (Zstandard).
* IO-Compress-Lzma
Adds support for lzma, xz and lzip.
* IO-Compress-Lzf
Adds support for lzf.
* IO-Compress-Lzop
Adds support for lzop.Note that the following modules used to be distributed separately, but are now
included with the IO-Compress distribution.Compress-Zlib
IO-Compress-Zlib
IO-Compress-Bzip2
IO-Compress-BasePREREQUISITES
-------------Before you can build IO-Compress you need to have the following
installed on your system:* Perl 5.006 or better.
* Compress::Raw::Zlib
* Compress::Raw::Bzip2BUILDING THE MODULE
-------------------Assuming you have met all the prerequisites, the module can now be built
using this sequence of commands:perl Makefile.PL
make
make testINSTALLATION
------------To install IO-Compress, run the command below:
make install
TROUBLESHOOTING
---------------SUPPORT
-------General feedback/questions/bug reports should be sent to
https://github.com/pmqs/IO-Compress/issuesFEEDBACK
--------How to report a problem with IO-Compress.
To help me help you, I need all of the following information:
1. The Versions of everything relevant.
This includes:a. The *complete* output from running this
perl -V
Do not edit the output in any way.
Note, I want you to run "perl -V" and NOT "perl -v".If your perl does not understand the "-V" option it is too
old. This module needs Perl version 5.004 or better.b. The version of IO-Compress you have.
If you have successfully installed IO-Compress, this one-liner
will tell you:perl -MIO::Compress::Gzip -e 'print qq[ver $IO::Compress::Gzip::VERSION\n]'
If you are running windows use this
perl -MIO::Compress::Gzip -e "print qq[ver $IO::Compress::Gzip::VERSION\n]"
If you haven't installed IO-Compress then search IO::Compress::Gzip.pm
for a line like this:$VERSION = "2.213" ;
2. If you are having problems building IO-Compress, send me a
complete log of what happened. Start by unpacking the IO-Compress
module into a fresh directory and keep a log of all the steps, including
the setting of configuration environment variables (if applicable).[edit config.in or set environment varialbes, if necessary]
perl Makefile.PL
make
make test TEST_VERBOSE=1Paul Marquess