Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Dave Cross
3b9f1e1b5a Only test on Perl 5.30. Add compat::p7 to lib 2020-07-13 14:23:49 +01:00
Dave Cross
b7949c6de4 Start Perl 7 testing 2020-06-28 18:25:13 +01:00
3 changed files with 52 additions and 5 deletions

View file

@ -1,10 +1,6 @@
language: perl
perl:
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.30"
before_install:
cpanm -n Devel::Cover::Report::Coveralls

View file

@ -1,3 +1,5 @@
use compat::perl7;
package Parse::RPM::Spec;
use 5.006000;

49
lib/compat/perl7.pm Normal file
View file

@ -0,0 +1,49 @@
=head1 compat::perl7
=head2 Subroutines
=head3 import
Do the clever stuff.
=cut
package compat::perl7;
# use compat::perl7 enables perl 5 code to function in a perl 7-ish way as much as possible compared to the version you are running.
# it also is a hint to both tools and the compiler what the level of compatibility is with future versions of the language.
BEGIN {
# This code is a proof of concept provided against 5.30. In order for this code to work on other versions of perl
# we would need to generate it via p7.pm.PL as part of shipping it to CPAN.
$] >= 5.030 && $] < 5.031 or die("Perl 5.30 is required to use this module.");
}
sub import {
# use warnings; no warnings qw/experimental/;
# perl -e'use warnings; no warnings qw/experimental/; my $w; BEGIN {$w = ${^WARNING_BITS} } print unpack("H*", $w) . "\n"'
${^WARNING_BITS} = pack( "H*", "55555555555555555555555515000440050454" );
# use strict; use utf8;
# perl -MData::Dumper -e'my $h; use strict; use utf8; use feature (qw/bitwise current_sub declared_refs evalbytes fc postderef_qq refaliasing say signatures state switch unicode_eval unicode_strings/); BEGIN { $h = $^H } printf("\$^H = 0x%08X\n", $h); print Dumper \%^H; '
$^H = 0x1C820FE2;
%^H = (
'feature___SUB__' => 1,
'feature_bitwise' => 1,
'feature_evalbytes' => 1,
'feature_fc' => 1,
'feature_myref' => 1,
'feature_postderef_qq' => 1,
'feature_refaliasing' => 1,
'feature_say' => 1,
'feature_signatures' => 1,
'feature_state' => 1,
'feature_switch' => 1,
'feature_unicode' => 1,
'feature_unieval' => 1
);
}
1;