rev 10792 - in people/modax/copyright-helper/trunk: . parsers

Modestas Vainius modax-guest at alioth.debian.org
Thu May 29 18:35:40 UTC 2008


Author: modax-guest
Date: 2008-05-29 18:35:40 +0000 (Thu, 29 May 2008)
New Revision: 10792

Modified:
   people/modax/copyright-helper/trunk/CHCopyright.pm
   people/modax/copyright-helper/trunk/CHCore.pm
   people/modax/copyright-helper/trunk/CHLicenses.pm
   people/modax/copyright-helper/trunk/CHParsers.pm
   people/modax/copyright-helper/trunk/copyright-helper.pl
   people/modax/copyright-helper/trunk/parsers/c_cpp.pm
   people/modax/copyright-helper/trunk/parsers/po.pm
Log:
Some compatibility fixes for perl 5.10. It should not crash at least

Modified: people/modax/copyright-helper/trunk/CHCopyright.pm
===================================================================
--- people/modax/copyright-helper/trunk/CHCopyright.pm	2008-05-29 15:18:57 UTC (rev 10791)
+++ people/modax/copyright-helper/trunk/CHCopyright.pm	2008-05-29 18:35:40 UTC (rev 10792)
@@ -15,7 +15,6 @@
 
 package CHCopyright;
 use strict;
-use encoding "utf8";
 use utf8;
 
 # Perl does not seem to match (regex) © without this trick in utf8 mode

Modified: people/modax/copyright-helper/trunk/CHCore.pm
===================================================================
--- people/modax/copyright-helper/trunk/CHCore.pm	2008-05-29 15:18:57 UTC (rev 10791)
+++ people/modax/copyright-helper/trunk/CHCore.pm	2008-05-29 18:35:40 UTC (rev 10792)
@@ -15,7 +15,6 @@
 
 package CHCore;
 use strict;
-use encoding "utf8";
 use utf8;
 
 @CHCore::Directory::ISA = qw( CHCore::File );

Modified: people/modax/copyright-helper/trunk/CHLicenses.pm
===================================================================
--- people/modax/copyright-helper/trunk/CHLicenses.pm	2008-05-29 15:18:57 UTC (rev 10791)
+++ people/modax/copyright-helper/trunk/CHLicenses.pm	2008-05-29 18:35:40 UTC (rev 10792)
@@ -16,7 +16,6 @@
 package CHLicenses;
 use strict;
 use File::Basename qw( basename fileparse );
-use encoding "utf8";
 use utf8;
 
 require Exporter;

Modified: people/modax/copyright-helper/trunk/CHParsers.pm
===================================================================
--- people/modax/copyright-helper/trunk/CHParsers.pm	2008-05-29 15:18:57 UTC (rev 10791)
+++ people/modax/copyright-helper/trunk/CHParsers.pm	2008-05-29 18:35:40 UTC (rev 10792)
@@ -15,7 +15,6 @@
 
 package CHParsers;
 use strict;
-use encoding "utf8";
 use utf8;
 
 require Exporter;

Modified: people/modax/copyright-helper/trunk/copyright-helper.pl
===================================================================
--- people/modax/copyright-helper/trunk/copyright-helper.pl	2008-05-29 15:18:57 UTC (rev 10791)
+++ people/modax/copyright-helper/trunk/copyright-helper.pl	2008-05-29 18:35:40 UTC (rev 10792)
@@ -16,7 +16,6 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>
 
 use strict;
-use encoding "utf8";
 use utf8;
 
 use CHParsers("parsers/*");

Modified: people/modax/copyright-helper/trunk/parsers/c_cpp.pm
===================================================================
--- people/modax/copyright-helper/trunk/parsers/c_cpp.pm	2008-05-29 15:18:57 UTC (rev 10791)
+++ people/modax/copyright-helper/trunk/parsers/c_cpp.pm	2008-05-29 18:35:40 UTC (rev 10792)
@@ -15,7 +15,6 @@
 
 package CHParsers::c_cpp;
 use strict;
-use encoding "utf8";
 use utf8;
 our @ISA = qw( CHParsers::ParserBase );
 

Modified: people/modax/copyright-helper/trunk/parsers/po.pm
===================================================================
--- people/modax/copyright-helper/trunk/parsers/po.pm	2008-05-29 15:18:57 UTC (rev 10791)
+++ people/modax/copyright-helper/trunk/parsers/po.pm	2008-05-29 18:35:40 UTC (rev 10792)
@@ -15,7 +15,6 @@
 
 package CHParsers::po;
 use strict;
-use encoding "utf8";
 use utf8;
 
 our @ISA = qw( CHParsers::ParserBase );




More information about the pkg-kde-commits mailing list