Skip to content

Commit 201354f

Browse files
pmqsjkeenan
authored andcommitted
cpan/Compress-Raw-Bzip2 - Update to version 2.213
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
1 parent a9ad3a3 commit 201354f

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

Porting/Maintainers.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ package Maintainers;
214214
},
215215

216216
'Compress::Raw::Bzip2' => {
217-
'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.212.tar.gz',
218-
'SYNCINFO' => 'LeoNerd on Sat Apr 27 14:06:26 2024',
217+
'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.213.tar.gz',
218+
'SYNCINFO' => 'jkeenan on Wed Aug 28 14:11:20 2024',
219219
'FILES' => q[cpan/Compress-Raw-Bzip2],
220220
'EXCLUDED' => [
221221
qr{^t/Test/},

cpan/Compress-Raw-Bzip2/Bzip2.xs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,9 +373,6 @@ new(className, appendOut=1, blockSize100k=1, workfactor=0, verbosity=0)
373373
s = NULL ;
374374
}
375375
else {
376-
int flags = 0 ;
377-
if (appendOut)
378-
flags |= FLAG_APPEND_OUTPUT;
379376
PostInitStream(s, appendOut ? FLAG_APPEND_OUTPUT :0) ;
380377
}
381378
}

cpan/Compress-Raw-Bzip2/bzip2-src/blocksort.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,9 @@ void mainSort ( UInt32* ptr,
764764
UChar c1;
765765
Int32 numQSorted;
766766
UInt16 s;
767+
768+
((void)numQSorted); /* Silence variable ‘numQSorted’ set but not used warning */
769+
767770
if (verb >= 4) VPrintf0 ( " main sort initialise ...\n" );
768771

769772
/*-- set up the 2-byte frequency table --*/

cpan/Compress-Raw-Bzip2/bzip2-src/compress.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ void sendMTFValues ( EState* s )
266266
UInt16* mtfv = s->mtfv;
267267

268268
((void)nBytes); /* Silence variable ‘nBytes’ set but not used warning */
269+
((void)totc); /* Silence variable ‘totc’ set but not used warning */
269270
if (s->verbosity >= 3)
270271
VPrintf3( " %d in block, %d after MTF & 1-2 coding, "
271272
"%d+2 syms in use\n",

cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Carp ;
1111
use bytes ;
1212
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
1313

14-
$VERSION = '2.212';
14+
$VERSION = '2.213';
1515
$XS_VERSION = $VERSION;
1616
$VERSION = eval $VERSION;
1717

cpan/Compress-Raw-Bzip2/t/000prereq.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ BEGIN
1919
if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };
2020

2121

22-
my $VERSION = '2.212';
22+
my $VERSION = '2.213';
2323
my @NAMES = qw(
2424
2525
);

0 commit comments

Comments
 (0)