r73029 - in /trunk/libxml-sax-expatxs-perl: Changes ExpatXS.xs MANIFEST META.yml debian/changelog 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:33:27 UTC 2011


Author: periapt-guest
Date: Thu Apr 21 19:33:15 2011
New Revision: 73029

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

Modified:
    trunk/libxml-sax-expatxs-perl/Changes
    trunk/libxml-sax-expatxs-perl/ExpatXS.xs
    trunk/libxml-sax-expatxs-perl/MANIFEST
    trunk/libxml-sax-expatxs-perl/META.yml
    trunk/libxml-sax-expatxs-perl/debian/changelog
    trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS.pm
    trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS/Encoding.pm

Modified: trunk/libxml-sax-expatxs-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-expatxs-perl/Changes?rev=73029&op=diff
==============================================================================
--- trunk/libxml-sax-expatxs-perl/Changes (original)
+++ trunk/libxml-sax-expatxs-perl/Changes Thu Apr 21 19:33:15 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: trunk/libxml-sax-expatxs-perl/ExpatXS.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-expatxs-perl/ExpatXS.xs?rev=73029&op=diff
==============================================================================
--- trunk/libxml-sax-expatxs-perl/ExpatXS.xs (original)
+++ trunk/libxml-sax-expatxs-perl/ExpatXS.xs Thu Apr 21 19:33:15 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: trunk/libxml-sax-expatxs-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-expatxs-perl/MANIFEST?rev=73029&op=diff
==============================================================================
--- trunk/libxml-sax-expatxs-perl/MANIFEST (original)
+++ trunk/libxml-sax-expatxs-perl/MANIFEST Thu Apr 21 19:33:15 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: trunk/libxml-sax-expatxs-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-expatxs-perl/META.yml?rev=73029&op=diff
==============================================================================
--- trunk/libxml-sax-expatxs-perl/META.yml (original)
+++ trunk/libxml-sax-expatxs-perl/META.yml Thu Apr 21 19:33:15 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: trunk/libxml-sax-expatxs-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-expatxs-perl/debian/changelog?rev=73029&op=diff
==============================================================================
--- trunk/libxml-sax-expatxs-perl/debian/changelog (original)
+++ trunk/libxml-sax-expatxs-perl/debian/changelog Thu Apr 21 19:33:15 2011
@@ -1,4 +1,4 @@
-libxml-sax-expatxs-perl (1.31-2) UNRELEASED; urgency=low
+libxml-sax-expatxs-perl (1.32-1) UNRELEASED; urgency=low
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
@@ -13,8 +13,9 @@
 
   [ Nicholas Bamber ]
   * Added myself to Uploaders 
+  * New upstream release
 
- -- Ryan Niebur <ryan at debian.org>  Fri, 25 Sep 2009 00:27:06 -0700
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Thu, 21 Apr 2011 20:36:16 +0100
 
 libxml-sax-expatxs-perl (1.31-1) unstable; urgency=low
 

Modified: trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS.pm?rev=73029&op=diff
==============================================================================
--- trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS.pm (original)
+++ trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS.pm Thu Apr 21 19:33:15 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: trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS/Encoding.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS/Encoding.pm?rev=73029&op=diff
==============================================================================
--- trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS/Encoding.pm (original)
+++ trunk/libxml-sax-expatxs-perl/lib/XML/SAX/ExpatXS/Encoding.pm Thu Apr 21 19:33:15 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