NOTICE: This package has been removed from pkgsrc

./devel/p5-IO-Compress-Base, Base class for IO::Compress and IO::Uncompress modules

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 2.015nb1, Package name: p5-IO-Compress-Base-2.015nb1, Maintainer: pkgsrc-users

This module is the base class for all IO::Compress and IO::Uncompress
modules.


Required to run:
[lang/perl5]

Master sites: (Expand)

SHA1: 595529168a46e8b195b7b0942c107f5fa2206af2
RMD160: 85a9033066a5c030e673c7e328f867608eb29fd6
Filesize: 93.598 KB

Version history: (Expand)


CVS history: (Expand)


   2009-04-12 01:15:22 by Jens Rehsack | Files touched by this commit (34) | Package removed
Log message:
PkgSrc changes:
  - removed packages p5-IO-Compress-Base, p5-IO-Compress-Zlib,
    p5-IO-Compress-Bzip2 and p5-Compress-Zlib because they are
    merged into p5-IO-Compress
  - Updated dependend packages to depend on p5-IO-Compress
    and bump PKGREVISION

Upstream changes:
  2.017 30 March 2009

      * Merged IO-Compress-Base, IO-Compress-Bzip2, IO-Compress-Zlib &
        Compress-Zlib into IO-Compress.
      * The interface to Compress-Raw-Zlib now uses the new LimitOutput
        feature. This will make all of the zlib-related IO-Compress modules
        less greedy in their memory consumption.
      * Removed MAN3PODS from Makefile.PL
      * A few changes to get the test harness to work on VMS courtesy of
        Craig. A. Berry.
      * IO::Compress::Base & IO::Uncompress::Base
        Downgraded some croaks in the constructors to just set $! (by letting
        the code attempt to open a file and fail).
        This makes the behavior more consistent to a standard open.
        [RT #42657]
      * IO::Uncompress::Base
        Doing a seek with MultiStream could drop some of the uncompressed
        data. Fixed.
      * IO::Compress::Zip
        - Fixed problem with the uncompressed & uncompressed fields when
          zip64 is enabled. They were set to 0x0000FFFF instead of
          0xFFFFFFFF. Also the ZIP64 extra field was 4 bytes short.
          Problem spotted by Dino Chiesa.
      * IO::Uncompress::Unzip
        - use POSIX::mktime instead of Time::Local::timelocal to convert
          the zip DOS time field into Unix time.
      * Compress::Zlib
        - Documented Compress::Zlib::zlib_version()
   2008-10-19 21:19:25 by Havard Eidnes | Files touched by this commit (1179)
Log message:
Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
   2008-10-13 14:37:58 by OBATA Akio | Files touched by this commit (2)
Log message:
Update p5-IO-Compress-Base to 2.015.
Based on PR 39555.

CHANGES
-------

  2.015 3 September 2008

      * Makefile.PL
        Backout changes made in 2.014

  2.014 2 September 2008

      * Makefile.PL
        Updated to check for indirect dependencies.

  2.013 18 July 2008

      * IO::Compress::Base
        - Allow IO::Compress::Base::Parameters::parse to accept an \ 
IO::Compress::Base::Parameters object.
   2008-07-17 19:10:18 by Klaus Heinz | Files touched by this commit (2)
Log message:
Updated to version 2.012.

Pkgsrc changes:
  - none

Changes since version 2.011:
============================
  2.012 15 July 2008
      * IO::Compress::Base
        - Silenced an uninitialised value warning when reading a line
          at a time from a zip file where the content uses ZIP_CM_STORE.
          [Problem spotted & fixed by Jeff Holt]
      * IO::Compress::Base & IO::Uncompress::Base
        - local-ise $!, $? et al in the DESTROY methods.
   2008-05-29 00:13:22 by David Brownlee | Files touched by this commit (2)
Log message:
Updated devel/p5-IO-Compress-Zlib to 2.011

  2.011 17 May 2008

      * No Changes

  2.010 5 May 2008

      * Fixed problem that meant Perl 5.10 could not upgrade this module.
        [RT #35341]

  2.009 20 April 2008

      * Minor documentation issue with flush.
        [rt.cpan.org #31446]
   2007-11-30 16:29:52 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 2.008:

  2.008 2 November 2007

      * Minor documentation changes in README

  2.006 1 September 20007

      * Makefile.PL
        Added INSTALLDIRS directive to install as a core module when built
        on a perl >= 5.9.

  2.005 18 June 2007

      * Stephen Turner reported a problem when using IO::Uncompress::Gunzip
        with XML::Parser. Turns out there were two issues.

        Firstly an IO::Uncompress object isn't an IO::Handle. It is now.

        Secondly the implementation of "read" wasn't honouring this

            SCALAR will be grown or shrunk to the length actually read.

        In particular it didn't do the right thing on EOF.
        This has been fixed.
   2007-10-25 18:59:59 by Johnny C. Lam | Files touched by this commit (980)
Log message:
Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk
can handle packages having no PLIST files.
   2007-03-08 19:59:47 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 2.004:

  2.004 3 March 2007

      * Made seek less wasteful of memory.