New upstream version 0.010

This commit is contained in:
zhouganqing 2024-07-09 14:47:05 +08:00
parent 21094f86cd
commit 6e34c82a19
9 changed files with 773 additions and 221 deletions

View File

@ -1,5 +1,8 @@
Revision history for PerlIO-utf8_strict
0.010 2022-10-26 18:57:45+02:00 Europe/Amsterdam
- Re-release with updated pport.h for 5.8.5 compatibility
0.009 2022-01-08 17:26:23+01:00 Europe/Amsterdam
- Mark functions that croak as noreturn

View File

@ -21,8 +21,11 @@ Alternatively, if your CPAN shell is set up, you should just be able to do:
## Manual installation
As a last resort, you can manually install it. Download the tarball, untar it,
install configure prerequisites (see below), then build it:
As a last resort, you can manually install it. If you have not already
downloaded the release tarball, you can find the download link on the module's
MetaCPAN page: https://metacpan.org/pod/PerlIO::utf8_strict
Untar the tarball, install configure prerequisites (see below), then build it:
% perl Makefile.PL
% make && make test

View File

@ -1,4 +1,4 @@
# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.024.
# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.025.
Changes
INSTALL
LICENSE

View File

@ -5,7 +5,7 @@
"Christian Hansen <chansen@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.024, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Dist::Zilla version 6.025, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
@ -57,7 +57,7 @@
"provides" : {
"PerlIO::utf8_strict" : {
"file" : "lib/PerlIO/utf8_strict.pm",
"version" : "0.009"
"version" : "0.010"
}
},
"release_status" : "stable",
@ -72,13 +72,13 @@
"web" : "https://github.com/Leont/perlio-utf8_strict"
}
},
"version" : "0.009",
"version" : "0.010",
"x_contributors" : [
"Andreas V\u00f6gele <voegelas@cpan.org>",
"Leon Timmermans <fawaka@gmail.com>"
],
"x_generated_by_perl" : "v5.32.0",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.19",
"x_generated_by_perl" : "v5.36.0",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.29",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
}

View File

@ -18,7 +18,7 @@ configure_requires:
ExtUtils::MakeMaker: '0'
perl: '5.006'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.024, CPAN::Meta::Converter version 2.150010'
generated_by: 'Dist::Zilla version 6.025, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@ -27,7 +27,7 @@ name: PerlIO-utf8_strict
provides:
PerlIO::utf8_strict:
file: lib/PerlIO/utf8_strict.pm
version: '0.009'
version: '0.010'
requires:
XSLoader: '0'
perl: '5.008'
@ -36,10 +36,10 @@ requires:
resources:
bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=PerlIO-utf8_strict
repository: git://github.com/Leont/perlio-utf8_strict.git
version: '0.009'
version: '0.010'
x_contributors:
- 'Andreas Vögele <voegelas@cpan.org>'
- 'Leon Timmermans <fawaka@gmail.com>'
x_generated_by_perl: v5.32.0
x_generated_by_perl: v5.36.0
x_serialization_backend: 'YAML::Tiny version 1.73'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'

View File

@ -1,4 +1,4 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.024.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.025.
use strict;
use warnings;
@ -32,7 +32,7 @@ my %WriteMakefileArgs = (
"lib" => 0,
"utf8" => 0
},
"VERSION" => "0.009",
"VERSION" => "0.010",
"test" => {
"TESTS" => "t/*.t"
}

4
README
View File

@ -1,5 +1,5 @@
This archive contains the distribution PerlIO-utf8_strict,
version 0.009:
version 0.010:
Fast and correct UTF-8 IO
@ -9,4 +9,4 @@ This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
This README file was generated by Dist::Zilla::Plugin::Readme v6.024.
This README file was generated by Dist::Zilla::Plugin::Readme v6.025.

View File

@ -1,5 +1,5 @@
package PerlIO::utf8_strict;
$PerlIO::utf8_strict::VERSION = '0.009';
$PerlIO::utf8_strict::VERSION = '0.010';
use strict;
use warnings;
@ -23,7 +23,7 @@ PerlIO::utf8_strict - Fast and correct UTF-8 IO
=head1 VERSION
version 0.009
version 0.010
=head1 SYNOPSIS

932
ppport.h

File diff suppressed because it is too large Load Diff