r73122 - in /trunk/libxml-encoding-perl: Changes Encoding.pm MANIFEST META.yml Makefile.PL README debian/changelog lib/ t/ test.pl

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Fri Apr 22 18:48:02 UTC 2011


Author: periapt-guest
Date: Fri Apr 22 18:47:48 2011
New Revision: 73122

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73122
Log:
New upstream release

Added:
    trunk/libxml-encoding-perl/lib/
      - copied from r73121, branches/upstream/libxml-encoding-perl/current/lib/
    trunk/libxml-encoding-perl/t/
      - copied from r73121, branches/upstream/libxml-encoding-perl/current/t/
Removed:
    trunk/libxml-encoding-perl/Encoding.pm
    trunk/libxml-encoding-perl/test.pl
Modified:
    trunk/libxml-encoding-perl/Changes
    trunk/libxml-encoding-perl/MANIFEST
    trunk/libxml-encoding-perl/META.yml
    trunk/libxml-encoding-perl/Makefile.PL
    trunk/libxml-encoding-perl/README
    trunk/libxml-encoding-perl/debian/changelog

Modified: trunk/libxml-encoding-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-encoding-perl/Changes?rev=73122&op=diff
==============================================================================
--- trunk/libxml-encoding-perl/Changes (original)
+++ trunk/libxml-encoding-perl/Changes Fri Apr 22 18:47:48 2011
@@ -1,5 +1,9 @@
 Revision history for Perl extension XML::Encoding.
 
+2.08 20 Sep 2010
+	- Changed test script to use Test::More, renamed it to test.t and moved
+	  it into the t/ folder. (Fixes [cpan #61369].)
+	- Moved the perl module into the lib/ folder.
 2.07 29 Jan 2009
 	- Minor correction to POD from Daniel Leidert <daniel.leidert at wgdd.de>.
 2.06 20 Jan 2009

Modified: trunk/libxml-encoding-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-encoding-perl/MANIFEST?rev=73122&op=diff
==============================================================================
--- trunk/libxml-encoding-perl/MANIFEST (original)
+++ trunk/libxml-encoding-perl/MANIFEST Fri Apr 22 18:47:48 2011
@@ -1,5 +1,4 @@
 Changes					Change log
-Encoding.pm				XML::Encoding module
 MANIFEST				This file
 Makefile.PL				ExtUtils::MakeMaker script
 META.yml                                Module meta-data (added by MakeMaker)
@@ -7,6 +6,7 @@
 bin/compile_encoding			script to make foo.enc from foo.xml
 bin/make_encmap				script to generate foo.xml
 encoding.h				Header file describing foo.enc format
+lib/XML/Encoding.pm			XML::Encoding module
 maps/IANA-assigned-character-sets	The name describes it
 maps/Japanese_Encodings.msg		Message about Japanese encodings
 maps/README				A word about how maps were generated
@@ -48,4 +48,4 @@
 maps/x-sjis-jdk117.xml			x-sjis-jdk117 encoding map
 maps/x-sjis-jisx0221.xml		x-sjis-jisx0221 encoding map
 maps/x-sjis-unicode.xml			x-sjis-unicode encoding map
-test.pl					Test script
+t/test.t				Test script

Modified: trunk/libxml-encoding-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-encoding-perl/META.yml?rev=73122&op=diff
==============================================================================
--- trunk/libxml-encoding-perl/META.yml (original)
+++ trunk/libxml-encoding-perl/META.yml Fri Apr 22 18:47:48 2011
@@ -1,14 +1,22 @@
 --- #YAML:1.0
-name:                XML-Encoding
-version:             2.07
-abstract:            A perl module for parsing XML encoding maps.
-license:             perl
-author:              
+name:               XML-Encoding
+version:            2.08
+abstract:           A perl module for parsing XML encoding maps.
+author:
     - Clark Cooper (coopercc at netheaven.com), Steve Hay (shay at cpan.org)
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    XML::Parser:                   2.18
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    XML::Parser:  2.18
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.55_02
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: trunk/libxml-encoding-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-encoding-perl/Makefile.PL?rev=73122&op=diff
==============================================================================
--- trunk/libxml-encoding-perl/Makefile.PL (original)
+++ trunk/libxml-encoding-perl/Makefile.PL Fri Apr 22 18:47:48 2011
@@ -3,7 +3,7 @@
 @extras = ();
 
 push(@extras,
-     ABSTRACT_FROM => 'Encoding.pm',
+     ABSTRACT_FROM => 'lib/XML/Encoding.pm',
      AUTHOR        => 'Clark Cooper (coopercc at netheaven.com), Steve Hay (shay at cpan.org)')
     if ($ExtUtils::MakeMaker::VERSION >= 5.4301);
      
@@ -14,7 +14,7 @@
 WriteMakefile(
               NAME	   => 'XML::Encoding',
               dist         => {COMPRESS => 'gzip', SUFFIX => '.gz'},
-	      VERSION_FROM => 'Encoding.pm',
+	      VERSION_FROM => 'lib/XML/Encoding.pm',
 	      PREREQ_PM    => {XML::Parser => 2.18},
 	      EXE_FILES    => [qw(bin/compile_encoding bin/make_encmap)],
 	      @extras

Modified: trunk/libxml-encoding-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-encoding-perl/README?rev=73122&op=diff
==============================================================================
--- trunk/libxml-encoding-perl/README (original)
+++ trunk/libxml-encoding-perl/README Fri Apr 22 18:47:48 2011
@@ -1,7 +1,7 @@
 			XML::Encoding
 
 Version 1.x Copyright (c) 1998 Clark Cooper <coopercc at netheaven.com>
-Changes in Version 2.00 onwards Copyright (C) 2007-2009 Steve Hay
+Changes in Version 2.00 onwards Copyright (C) 2007-2010 Steve Hay
 All rights reserved.
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself. 

Modified: trunk/libxml-encoding-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-encoding-perl/debian/changelog?rev=73122&op=diff
==============================================================================
--- trunk/libxml-encoding-perl/debian/changelog (original)
+++ trunk/libxml-encoding-perl/debian/changelog Fri Apr 22 18:47:48 2011
@@ -1,8 +1,9 @@
-libxml-encoding-perl (2.07-3) UNRELEASED; urgency=low
+libxml-encoding-perl (2.08-1) UNRELEASED; urgency=low
 
   * Moved package to Debian Perl Group
+  * New upstream release
 
- -- Nicholas Bamber <nicholas at periapt.co.uk>  Fri, 22 Apr 2011 19:46:50 +0100
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Fri, 22 Apr 2011 19:50:46 +0100
 
 libxml-encoding-perl (2.07-2) unstable; urgency=low
 




More information about the Pkg-perl-cvs-commits mailing list