r73027 - in /branches/upstream/libxml-sax-expatxs-perl/current: Changes ExpatXS.xs MANIFEST META.yml lib/XML/SAX/ExpatXS.pm lib/XML/SAX/ExpatXS/Encoding.pm

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Thu Apr 21 19:31:58 UTC 2011


Author: periapt-guest
Date: Thu Apr 21 19:31:38 2011
New Revision: 73027

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73027
Log:
[svn-upgrade] new version libxml-sax-expatxs-perl (1.32)

Modified:
    branches/upstream/libxml-sax-expatxs-perl/current/Changes
    branches/upstream/libxml-sax-expatxs-perl/current/ExpatXS.xs
    branches/upstream/libxml-sax-expatxs-perl/current/MANIFEST
    branches/upstream/libxml-sax-expatxs-perl/current/META.yml
    branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS.pm
    branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS/Encoding.pm

Modified: branches/upstream/libxml-sax-expatxs-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-sax-expatxs-perl/current/Changes?rev=73027&op=diff
==============================================================================
--- branches/upstream/libxml-sax-expatxs-perl/current/Changes (original)
+++ branches/upstream/libxml-sax-expatxs-perl/current/Changes Thu Apr 21 19:31:38 2011
@@ -1,5 +1,9 @@
 Revision history for Perl extension XML::SAX::ExpatXS
 =====================================================
+
+1.32 Apr 12, 2011
+	- NoExpand option test added
+	- type warnings fixed (gcc 4.4)
 
 1.31 July 3, 2007
     - Security fix: namespace separator in XML_ParserCreate_MM

Modified: branches/upstream/libxml-sax-expatxs-perl/current/ExpatXS.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-sax-expatxs-perl/current/ExpatXS.xs?rev=73027&op=diff
==============================================================================
--- branches/upstream/libxml-sax-expatxs-perl/current/ExpatXS.xs (original)
+++ branches/upstream/libxml-sax-expatxs-perl/current/ExpatXS.xs Thu Apr 21 19:31:38 2011
@@ -304,9 +304,9 @@
   msg = (char *)mymalloc(strlen(err) + 50);
   sprintf(msg, "%s at line %d, column %d, byte %d",
           err,
-          XML_GetCurrentLineNumber(parser),
-          XML_GetCurrentColumnNumber(parser)+1,
-          XML_GetCurrentByteIndex(parser));
+          (int)XML_GetCurrentLineNumber(parser),
+          (int)XML_GetCurrentColumnNumber(parser)+1,
+          (int)XML_GetCurrentByteIndex(parser));
 
   public = hv_fetch(cbv->locator_hv, "PublicId", 8, 0);
   system = hv_fetch(cbv->locator_hv, "SystemId", 8, 0);
@@ -383,17 +383,17 @@
 parse_stream(XML_Parser parser, SV * ioref)
 {
   dSP;
-  SV *        tbuff;
-  SV *        tsiz;
+  SV *      tbuff;
+  SV *      tsiz;
   char *    linebuff;
   STRLEN    lblen;
   STRLEN    br = 0;
-  int        buffsize;
-  int        done = 0;
-  int        ret = 1;
+  int       buffsize;
+  int       done = 0;
+  int       ret = 1;
   char *    msg = NULL;
   CallbackVector * cbv;
-  char        *buff = (char *) 0;
+  char      *buff = (char *) 0;
 
   cbv = (CallbackVector*) XML_GetUserData(parser);
 
@@ -402,7 +402,7 @@
 
   if (cbv->delim) {
     int cnt;
-    SV * tline;
+    SV *tline;
 
     PUSHMARK(SP);
     XPUSHs(ioref);
@@ -1377,7 +1377,7 @@
 
 	if (SvTRUE(ERRSV)) {
 	  char  *hold;
-	  int   len;
+	  STRLEN   len;
 
 	  POPs;
           hold = SvPV(ERRSV, len);
@@ -1715,7 +1715,7 @@
         {
       CallbackVector * cbv;
       char * s;
-      int len;
+      STRLEN len;
       
       s = SvPV(str, len);
 
@@ -1763,7 +1763,7 @@
     {
       CallbackVector * cbv = (CallbackVector *) XML_GetUserData(parser);
       char * s;
-      int len;
+      STRLEN len;
       
       s = SvPV(str, len);
 

Modified: branches/upstream/libxml-sax-expatxs-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-sax-expatxs-perl/current/MANIFEST?rev=73027&op=diff
==============================================================================
--- branches/upstream/libxml-sax-expatxs-perl/current/MANIFEST (original)
+++ branches/upstream/libxml-sax-expatxs-perl/current/MANIFEST Thu Apr 21 19:31:38 2011
@@ -65,6 +65,7 @@
 t/f06ext-general.t
 t/f07ext-param.t
 t/f08expatversion.t
+t/f08noexpand.t
 t/external.xml
 t/file.xml
 t/file2.xml

Modified: branches/upstream/libxml-sax-expatxs-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-sax-expatxs-perl/current/META.yml?rev=73027&op=diff
==============================================================================
--- branches/upstream/libxml-sax-expatxs-perl/current/META.yml (original)
+++ branches/upstream/libxml-sax-expatxs-perl/current/META.yml Thu Apr 21 19:31:38 2011
@@ -1,11 +1,21 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         XML-SAX-ExpatXS
-version:      1.31
-version_from: lib/XML/SAX/ExpatXS.pm
-installdirs:  site
+--- #YAML:1.0
+name:               XML-SAX-ExpatXS
+version:            1.32
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
 requires:
-    XML::SAX:                      0.13
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
+    XML::SAX:  0.13
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.55_02
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS.pm?rev=73027&op=diff
==============================================================================
--- branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS.pm (original)
+++ branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS.pm Thu Apr 21 19:31:38 2011
@@ -9,7 +9,7 @@
 use Carp;
 use IO::File;
 
-$VERSION = '1.31';
+$VERSION = '1.32';
 @ISA = qw(DynaLoader XML::SAX::Base XML::SAX::ExpatXS::Preload);
 
 XML::SAX::ExpatXS->bootstrap($VERSION);
@@ -18,9 +18,9 @@
 	['http://xml.org/sax/features/namespaces', 1],
 	['http://xml.org/sax/features/external-general-entities', 1],
 	['http://xml.org/sax/features/external-parameter-entities', 0],
-        ['http://xml.org/sax/features/xmlns-uris', 0],
-        ['http://xmlns.perl.org/sax/xmlns-uris', 1],
-        ['http://xmlns.perl.org/sax/version-2.1', 1],
+    ['http://xml.org/sax/features/xmlns-uris', 0],
+    ['http://xmlns.perl.org/sax/xmlns-uris', 1],
+    ['http://xmlns.perl.org/sax/version-2.1', 1],
 	['http://xmlns.perl.org/sax/join-character-data', 1],
 	['http://xmlns.perl.org/sax/ns-attributes', 1],
 	['http://xmlns.perl.org/sax/locator', 1],

Modified: branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS/Encoding.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS/Encoding.pm?rev=73027&op=diff
==============================================================================
--- branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS/Encoding.pm (original)
+++ branches/upstream/libxml-sax-expatxs-perl/current/lib/XML/SAX/ExpatXS/Encoding.pm Thu Apr 21 19:31:38 2011
@@ -1,3 +1,5 @@
+# $Id: Encoding.pm,v 1.2 2004/05/15 15:56:26 cvspetr Exp $
+
 package XML::SAX::ExpatXS::Encoding;
 require 5.004;
 




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