r34966 - in /trunk/libcache-fastmmap-perl: Cache-FastMmap-CImpl/CImpl.pm Cache-FastMmap-CImpl/CImpl.xs Changes FastMmap.pm META.yml debian/changelog
eloy at users.alioth.debian.org
eloy at users.alioth.debian.org
Fri May 8 09:00:34 UTC 2009
Author: eloy
Date: Fri May 8 09:00:26 2009
New Revision: 34966
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=34966
Log:
new upstream version
Modified:
trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.pm
trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.xs
trunk/libcache-fastmmap-perl/Changes
trunk/libcache-fastmmap-perl/FastMmap.pm
trunk/libcache-fastmmap-perl/META.yml
trunk/libcache-fastmmap-perl/debian/changelog
Modified: trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.pm?rev=34966&op=diff
==============================================================================
--- trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.pm (original)
+++ trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.pm Fri May 8 09:00:26 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: trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.xs?rev=34966&op=diff
==============================================================================
--- trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.xs (original)
+++ trunk/libcache-fastmmap-perl/Cache-FastMmap-CImpl/CImpl.xs Fri May 8 09:00:26 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: trunk/libcache-fastmmap-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcache-fastmmap-perl/Changes?rev=34966&op=diff
==============================================================================
--- trunk/libcache-fastmmap-perl/Changes (original)
+++ trunk/libcache-fastmmap-perl/Changes Fri May 8 09:00:26 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: trunk/libcache-fastmmap-perl/FastMmap.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcache-fastmmap-perl/FastMmap.pm?rev=34966&op=diff
==============================================================================
--- trunk/libcache-fastmmap-perl/FastMmap.pm (original)
+++ trunk/libcache-fastmmap-perl/FastMmap.pm Fri May 8 09:00:26 2009
@@ -287,7 +287,7 @@
use warnings;
use bytes;
-our $VERSION = '1.29';
+our $VERSION = '1.30';
use Cache::FastMmap::CImpl;
Modified: trunk/libcache-fastmmap-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcache-fastmmap-perl/META.yml?rev=34966&op=diff
==============================================================================
--- trunk/libcache-fastmmap-perl/META.yml (original)
+++ trunk/libcache-fastmmap-perl/META.yml Fri May 8 09:00:26 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:
Modified: trunk/libcache-fastmmap-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcache-fastmmap-perl/debian/changelog?rev=34966&op=diff
==============================================================================
--- trunk/libcache-fastmmap-perl/debian/changelog (original)
+++ trunk/libcache-fastmmap-perl/debian/changelog Fri May 8 09:00:26 2009
@@ -1,3 +1,9 @@
+libcache-fastmmap-perl (1.30-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Krzysztof Krzyżaniak (eloy) <eloy at debian.org> Fri, 08 May 2009 10:57:07 +0200
+
libcache-fastmmap-perl (1.29-1) unstable; urgency=low
[ Krzysztof Krzyżaniak (eloy) ]
More information about the Pkg-perl-cvs-commits
mailing list