Skip to content

Commit

Permalink
cpan/Compress-Raw-Bzip2 - Update to version 2.213
Browse files Browse the repository at this point in the history
  2.213 28 August 2024

      * version 2.213
        Wed Aug 28 15:48:25 2024 +0100
        63a2ca4e124d88914c000742f082126db9a99c03

      * Use -xc++ when building with C++
        Mon Jun 17 10:47:25 2024 +0100
        85daf683caff0fe1b2dafc49998fd6355bdf0da0

      * more fixes
        Sun Jun 16 11:32:20 2024 +0100
        3353249cb9e6e25e06aa9ee4d5c74d0cbb45b5a3

      * upstream fixes
        Sun Jun 16 11:20:58 2024 +0100

      * version 2.213
        Wed Aug 28 15:48:25 2024 +0100
        63a2ca4e124d88914c000742f082126db9a99c03

      * Use -xc++ when building with C++
        Mon Jun 17 10:47:25 2024 +0100
        85daf683caff0fe1b2dafc49998fd6355bdf0da0

      * more fixes
        Sun Jun 16 11:32:20 2024 +0100
        3353249cb9e6e25e06aa9ee4d5c74d0cbb45b5a3

      * upstream fixes
        Sun Jun 16 11:20:58 2024 +0100
        f01726f4ab5b1a229d710d45cf310018185ea744

      * rework upstream workflow
        Sun Jun 16 09:56:02 2024 +0100
        4c1ba3c333de52e9ec32356c3f720bdccd8f2481

      * rework upstream workflows
        Sun Jun 16 09:42:05 2024 +0100
        54cb21c1ac4b795fcd32306c91d07b68b6c8411d

      * no werror for main macos workflow
        Sun Jun 16 09:36:51 2024 +0100
        cb9ae2fbec6fa6f0f196cc133ada3e282b80c96f

      * fix  workflows
        Sun Jun 16 09:33:04 2024 +0100
        809481c0f36e640c70c24d07401bf2b8b06038a1

      * Merge remote-tracking branch 'origin/master'
        Sun Jun 16 09:24:46 2024 +0100
        791d14716523804153a09ffb689b39143807b749

      * Add workflow for perl 5.40
        Sun Jun 16 09:19:11 2024 +0100
        e94d2dac2dd3a04e7af5bb8efd461d188d14d21a

      * Merge pull request #15 from haarg-contrib/silence-unused-var
        Mon Jun 10 21:33:59 2024 +0100
        a536bcd45bd65a0be8ca8b17fad11ecf0e7d75ef

      * silence unused variable warnings
        Mon Jun 10 21:15:34 2024 +0200
        7798ad06a2b184112bffa54a7339771bfeec65c4

  2.213 27 April 2024

      * no functional changes
  • Loading branch information
pmqs authored and jkeenan committed Aug 28, 2024
1 parent a9ad3a3 commit 201354f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Porting/Maintainers.pl
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ package Maintainers;
},

'Compress::Raw::Bzip2' => {
'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.212.tar.gz',
'SYNCINFO' => 'LeoNerd on Sat Apr 27 14:06:26 2024',
'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.213.tar.gz',
'SYNCINFO' => 'jkeenan on Wed Aug 28 14:11:20 2024',
'FILES' => q[cpan/Compress-Raw-Bzip2],
'EXCLUDED' => [
qr{^t/Test/},
Expand Down
3 changes: 0 additions & 3 deletions cpan/Compress-Raw-Bzip2/Bzip2.xs
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,6 @@ new(className, appendOut=1, blockSize100k=1, workfactor=0, verbosity=0)
s = NULL ;
}
else {
int flags = 0 ;
if (appendOut)
flags |= FLAG_APPEND_OUTPUT;
PostInitStream(s, appendOut ? FLAG_APPEND_OUTPUT :0) ;
}
}
Expand Down
3 changes: 3 additions & 0 deletions cpan/Compress-Raw-Bzip2/bzip2-src/blocksort.c
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,9 @@ void mainSort ( UInt32* ptr,
UChar c1;
Int32 numQSorted;
UInt16 s;

((void)numQSorted); /* Silence variable ‘numQSorted’ set but not used warning */

if (verb >= 4) VPrintf0 ( " main sort initialise ...\n" );

/*-- set up the 2-byte frequency table --*/
Expand Down
1 change: 1 addition & 0 deletions cpan/Compress-Raw-Bzip2/bzip2-src/compress.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ void sendMTFValues ( EState* s )
UInt16* mtfv = s->mtfv;

((void)nBytes); /* Silence variable ‘nBytes’ set but not used warning */
((void)totc); /* Silence variable ‘totc’ set but not used warning */
if (s->verbosity >= 3)
VPrintf3( " %d in block, %d after MTF & 1-2 coding, "
"%d+2 syms in use\n",
Expand Down
2 changes: 1 addition & 1 deletion cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Carp ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);

$VERSION = '2.212';
$VERSION = '2.213';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;

Expand Down
2 changes: 1 addition & 1 deletion cpan/Compress-Raw-Bzip2/t/000prereq.t
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ BEGIN
if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };


my $VERSION = '2.212';
my $VERSION = '2.213';
my @NAMES = qw(
);
Expand Down

0 comments on commit 201354f

Please sign in to comment.