Subject: | Latin1 characters in author name |
Hi,
Please find attached a patch that converts é ("e" with small line above,
falling from right to left) in author's name from Latin-1 to utf-8 encoding.
It is used in the Debian package of File-Read, as Debian aims at 100%
utf-8 content.
Please apply it to the next release of File-Read if you find it useful.
Oh, and in case that I got the character wrong, please accept my
apologies and tell me what it should be.
Thanks,
dam
Subject: | authors_name_in_utf8.patch |
--- libfile-read-perl-0.0700.orig/META.yml
+++ libfile-read-perl-0.0700/META.yml
@@ -2,7 +2,7 @@
name: File-Read
version: 0.07
author:
- - 'Sébastien Aperghis-Tramoni <sebastien@aperghis.net>'
+ - 'Sébastien Aperghis-Tramoni <sebastien@aperghis.net>'
abstract: Unique interface for reading one or more files
license: perl
resources:
--- libfile-read-perl-0.0700.orig/README
+++ libfile-read-perl-0.0700/README
@@ -68,7 +68,7 @@
COPYRIGHT AND LICENCE
- Copyright (C) 2006 Sébastien Aperghis-Tramoni
+ Copyright (C) 2006 Sébastien Aperghis-Tramoni
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
--- libfile-read-perl-0.0700.orig/lib/File/Read.pm
+++ libfile-read-perl-0.0700/lib/File/Read.pm
@@ -278,7 +278,7 @@
=head1 AUTHOR
-Sébastien Aperghis-Tramoni, C<< <sebastien at aperghis.net> >>
+Sébastien Aperghis-Tramoni, C<< <sebastien at aperghis.net> >>
=head1 BUGS
@@ -322,7 +322,7 @@
=head1 COPYRIGHT & LICENSE
-Copyright 2006 Sébastien Aperghis-Tramoni, all rights reserved.
+Copyright 2006 Sébastien Aperghis-Tramoni, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
--- libfile-read-perl-0.0700.orig/Makefile.PL
+++ libfile-read-perl-0.0700/Makefile.PL
@@ -5,7 +5,7 @@
WriteMakefile(
NAME => 'File::Read',
LICENSE => 'perl',
- AUTHOR => 'Sébastien Aperghis-Tramoni <sebastien@aperghis.net>',
+ AUTHOR => 'Sébastien Aperghis-Tramoni <sebastien@aperghis.net>',
VERSION_FROM => 'lib/File/Read.pm',
ABSTRACT_FROM => 'lib/File/Read.pm',
PL_FILES => {},
--- libfile-read-perl-0.0700.orig/Build.PL
+++ libfile-read-perl-0.0700/Build.PL
@@ -4,7 +4,7 @@
my $builder = Module::Build->new(
module_name => 'File::Read',
license => 'perl',
- dist_author => 'Sébastien Aperghis-Tramoni <sebastien@aperghis.net>',
+ dist_author => 'Sébastien Aperghis-Tramoni <sebastien@aperghis.net>',
dist_version_from => 'lib/File/Read.pm',
build_requires => {
'File::Slurp' => 0,