r34964 - in /branches/upstream/libcache-fastmmap-perl/current: Cache-FastMmap-CImpl/CImpl.pm Cache-FastMmap-CImpl/CImpl.xs Changes FastMmap.pm META.yml

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Fri May 8 08:56:33 UTC 2009


Author: eloy
Date: Fri May  8 08:56:28 2009
New Revision: 34964

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=34964
Log:
[svn-upgrade] Integrating new upstream version, libcache-fastmmap-perl (1.30)

Modified:
    branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm
    branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.xs
    branches/upstream/libcache-fastmmap-perl/current/Changes
    branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm
    branches/upstream/libcache-fastmmap-perl/current/META.yml

Modified: branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm?rev=34964&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm (original)
+++ branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm Fri May  8 08:56:28 2009
@@ -15,7 +15,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '1.29';
+our $VERSION = '1.30';
 
 require XSLoader;
 XSLoader::load('Cache::FastMmap::CImpl', $VERSION);

Modified: branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.xs?rev=34964&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.xs (original)
+++ branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.xs Fri May  8 08:56:28 2009
@@ -57,7 +57,7 @@
     RETVAL = mmc_set_param(cache, param, val);
   POSTCALL:
     if (RETVAL != 0) {
-      croak(mmc_error(cache));
+      croak("%s", mmc_error(cache));
     }
 
 NO_OUTPUT int
@@ -84,7 +84,7 @@
     RETVAL = mmc_init(cache);
   POSTCALL:
     if (RETVAL != 0) {
-      croak(mmc_error(cache));
+      croak("%s", mmc_error(cache));
     }
 
 
@@ -178,7 +178,7 @@
     RETVAL = mmc_lock(cache, (MU32)page);
   POSTCALL:
     if (RETVAL != 0) {
-      croak(mmc_error(cache));
+      croak("%s", mmc_error(cache));
     }
 
 
@@ -207,7 +207,7 @@
     RETVAL = mmc_unlock(cache);
   POSTCALL:
     if (RETVAL != 0) {
-      croak(mmc_error(cache));
+      croak("%s", mmc_error(cache));
     }
 
 

Modified: branches/upstream/libcache-fastmmap-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcache-fastmmap-perl/current/Changes?rev=34964&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/Changes (original)
+++ branches/upstream/libcache-fastmmap-perl/current/Changes Fri May  8 08:56:28 2009
@@ -1,4 +1,7 @@
 Revision history for Perl extension Cache::FastMmap.
+
+1.30 Fri May 8  11:10 2009
+  - Fix for Mandriva compiler (thanks Jean-Christian Hassler)
 
 1.29 Fri May 1  17:20 2009
   - Support for Windows (thanks to Ash & kmx.at.volny.cz)

Modified: branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm?rev=34964&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm (original)
+++ branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm Fri May  8 08:56:28 2009
@@ -287,7 +287,7 @@
 use warnings;
 use bytes;
 
-our $VERSION = '1.29';
+our $VERSION = '1.30';
 
 use Cache::FastMmap::CImpl;
 

Modified: branches/upstream/libcache-fastmmap-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcache-fastmmap-perl/current/META.yml?rev=34964&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/META.yml (original)
+++ branches/upstream/libcache-fastmmap-perl/current/META.yml Fri May  8 08:56:28 2009
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Cache-FastMmap
-version:      1.29
+version:      1.30
 version_from: FastMmap.pm
 installdirs:  site
 requires:




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