Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-utf8-all-0.24.0-3.mga8 RPM for noarch

From Mageia 8 for armv7hl / media / core / release

Name: perl-utf8-all Distribution: Mageia
Version: 0.24.0 Vendor: Mageia.Org
Release: 3.mga8 Build date: Wed Feb 12 15:33:27 2020
Group: Development/Perl Build host: localhost
Size: 53142 Source RPM: perl-utf8-all-0.24.0-3.mga8.src.rpm
Packager: umeabot <umeabot>
Url: http://search.cpan.org/dist/utf8-all
Summary: Turn on Unicode - all of it
the utf8 manpage allows you to write your Perl encoded in UTF-8. That means
UTF-8 strings, variable names, and regular expressions. 'utf8::all' goes
further, and makes '@ARGV' encoded in UTF-8, and filehandles are opened
with UTF-8 encoding turned on by default (including STDIN, STDOUT, STDERR),
and charnames are imported so '\N{...}' sequences can be used to compile
Unicode characters based on names. If you _don't_ want UTF-8 for a
particular filehandle, you'll have to set 'binmode $filehandle'.

The pragma is lexically-scoped, so you can do the following if you had some
reason to:

    {
        use utf8::all;
        open my $out, '>', 'outfile';
        my $utf8_str = 'føø bār';
        print length $utf8_str, "\n"; # 7
        print $out $utf8_str;         # out as utf8
    }
    open my $in, '<', 'outfile';      # in as raw
    my $text = do { local $/; <$in>};
    print length $text, "\n";         # 10, not 7!

Provides

Requires

License

GPL+ or Artistic

Changelog

* Wed Feb 12 2020 umeabot <umeabot> 0.24.0-3.mga8
  + Revision: 1507176
  - Mageia 8 Mass Rebuild
* Thu Sep 20 2018 umeabot <umeabot> 0.24.0-2.mga7
  + Revision: 1287513
  - Mageia 7 Mass Rebuild
* Mon Apr 09 2018 kekepower <kekepower> 0.24.0-1.mga7
  + Revision: 1216719
  - Update to version 0.024

Files

/usr/share/doc/perl-utf8-all
/usr/share/doc/perl-utf8-all/Changes
/usr/share/doc/perl-utf8-all/LICENSE
/usr/share/doc/perl-utf8-all/META.json
/usr/share/doc/perl-utf8-all/META.yml
/usr/share/doc/perl-utf8-all/README.mkdn
/usr/share/man/man3/utf8::all.3pm.xz
/usr/share/perl5/vendor_perl/utf8
/usr/share/perl5/vendor_perl/utf8/all.pm


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 16:03:47 2024