Next | Query returned 43 messages, browsing 31 to 40 | Previous

History of commit frequency

CVS Commit History:


   2011-04-16 06:36:05 by OBATA Akio | Files touched by this commit (1)
Log message:
Require same version p5-Compress-Raw-{Zlib,Bzip2}.

Bump PKGREVISION.
   2011-04-11 11:07:38 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
Changes 2.033:
* Fixed typos & spelling errors.

Changes 2.032:
* IO::Uncompress::Base
  - An input file that had a valid header, and so would allow
    creation of the uncompression object, but was then followed by
    corrupt data would trigger an infinite loop when using the
    input line oprator.
* IO::Compress::Gzip
  - XFL default settings for max compression & fastest algorithm were
    the wrong way around. Thanks to Andrey Zholos for spotting this.
* IO::Compress::Base::Common
  - Fixed precedence problem in parameter parsing code.
   2010-08-21 18:37:14 by Stoned Elipot | Files touched by this commit (1724) | Package updated
Log message:
Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

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=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
   2010-07-31 12:08:47 by Jens Rehsack | Files touched by this commit (2) | Package updated
Log message:
Updating devel/p5-IO-Compress from 2.024 to 2.030

pkgsrc changes:
- adjusting dependencies

Upstream changes:
  2.030 22 July 2010
      * IO::Compress::Zip
        - Updates to documentation.
        - Changes default value for ExtAttr on Unix to 0100644
      * IO::Uncompress::Unzip
        Reworked the "Name" option and examples in the pod.
      * IO::Uncompress::Base
        Fixed problem with nextStream not returning 0 when there is no
        next stream and Transparent is false.

  2.027 24 April 2010
      * Compress::Zlib
        Remove autoload code from Zlib.pm.
        [perl #74088]

  2.026 7 April 2010
      * IO::Uncompress::Zip
        - Some updates to IO::Compress::Zip documentation.
        - Fixed default setting for ExtAttr.

  2.025 27 March 2010
      * IO::Uncompress::Unzip
        The "Name" option wasn't documented.
      * Allow zlib version check to be disabled by setting
        TEST_SKIP_VERSION_CHECK environment variable.
        [RT #54510]
   2010-01-20 16:07:19 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 2.024:

  2.024 7 January 2010

      * Compress::Zlib
        Get memGunzip & memGzip to set $gzerrno
        [RT# 47283]

      * Compress::Zlib
        Export memGunzip, memGzip and zlib_version on demand
        [RT# 52992]

      * examples/io/anycat
        This sample was using IO::Uncompress::AnyInflate. Much better to
        use IO::Uncompress::AnyUncompress.
   2009-11-15 16:55:04 by Jens Rehsack | Files touched by this commit (2)
Log message:
Updating package devel/p5-IO-Compress from 2.022 to 2.023

Upstream changes:
  2.023 9 November 2009
      * IO::Compress::AnyUncompress
        Added support for lzma_alone & xz.
   2009-10-25 14:00:49 by Jens Rehsack | Files touched by this commit (2)
Log message:
Updating devel/p5-IO-Compress from 2.021 to 2.022

Upstream changes:
  2.022 9 October 2009
      * IO::Compress - Makefile.PL
        Fix for core.
   2009-09-12 20:26:32 by Jens Rehsack | Files touched by this commit (2)
Log message:
Updating package devel/p5-IO-Compress from 2.020 to 2.021

pkgsrc changes:
  - Adjusting dependencies

Upstream changes:
2.021 30 August 2009
      * IO::Compress::Base.pm
        - Less warnnings when reading from a closed filehandle.
          [RT# 48350]
        - Fixed minor typo in an error message.
          [RT# 39719]

      * Makefile.PL
        The PREREQ_PM dependency on Scalar::Util got dropped when
        IO-Compress was created in 2.017.
        [RT# 47509]

      * IO::Compress::Zip.pm
        - Removed restriction that zip64 is only supported in streaming
          mode.
        - The "version made by" and "extract" fields in the \ 
zip64 end
          central record were swapped.
        - In the End Central Header record the "offset to the start of the
          central directory" will now always be set to 0xFFFFFFFF when
          zip64 is enabled.
        - In the End Central Header record the "total entries in the
          central directory" field will be set to 0xFFFF if zip64 is
          enabled AND there are more than 0xFFFF entries present.

      * IO::Uncompress::Unzip.pm
        - Don't consume lots of memory when walking a zip file. This makes
          life more bearable when dealing with zip64.

      * Compress::Zlib.pm
        - documented that memGunzip cannot cope with concatenated gzip data
          streams.

      * Changed test harness so that it can cope with PERL5OPT=-MCarp=verbose
        [RT# 47225]

      * IO::Compress::Gzip::Constants.pm
        - GZIP_FEXTRA_MAX_SIZE was set to 0xFF. Should be 0xFFFF.  This
          issue came up when attempting to unzip a file created by MS
          Office 2007.
   2009-06-11 13:25:57 by Jens Rehsack | Files touched by this commit (2) | Package updated
Log message:
pkgsrc changes:
  - Updating package for p5 modules belonging to IO::Compress from 2.019
    to 2.020
  - changes license to ${PERL5_LICENSE} according to META.yaml
  - update dependencies according to META.yaml

Upstream changes:
  2.020 3 June 2009
      * IO::Uncompress::Base.pm
        - Fixed problem with LimitOutput where a call to uncompress
          created more uncompressed output, but didn't consume any of
          the input buffer. The symptom is the underlying compression
          library (zlib or bzip2) thinks the input stream is corrupt.
          [RT #46582]
   2009-05-05 07:49:54 by Jens Rehsack | Files touched by this commit (2)
Log message:
PkgSrc changes:
  - Updating package for p5 modules IO::Compress, IO::Uncompress and
    derived from 2.018 to 2.019

Upstream changes:
  2.019 4 May 2009
      * IO::Uncompress::Adapter::Bunzip2
        - Fixed problem with EOF check.

Next | Query returned 43 messages, browsing 31 to 40 | Previous