r18671 - in /branches/upstream/libcache-mmap-perl/current: Changes META.yml Mmap.pm README
gregoa-guest at users.alioth.debian.org
gregoa-guest at users.alioth.debian.org
Wed Apr 16 15:23:50 UTC 2008
Author: gregoa-guest
Date: Wed Apr 16 15:23:49 2008
New Revision: 18671
URL: http://svn.debian.org/wsvn/?sc=1&rev=18671
Log:
[svn-upgrade] Integrating new upstream version, libcache-mmap-perl (0.11)
Modified:
branches/upstream/libcache-mmap-perl/current/Changes
branches/upstream/libcache-mmap-perl/current/META.yml
branches/upstream/libcache-mmap-perl/current/Mmap.pm
branches/upstream/libcache-mmap-perl/current/README
Modified: branches/upstream/libcache-mmap-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-mmap-perl/current/Changes?rev=18671&op=diff
==============================================================================
--- branches/upstream/libcache-mmap-perl/current/Changes (original)
+++ branches/upstream/libcache-mmap-perl/current/Changes Wed Apr 16 15:23:49 2008
@@ -1,4 +1,12 @@
-$Id: Changes,v 1.9 2005/11/15 18:35:19 pmh Exp $
+$Id: Changes,v 1.10 2008/04/15 09:46:23 pmh Exp $
+
+2008-04-15 0.11
+ Doc fix:
+ Add 0.10's changes to this list :-)
+
+2008-04-15 0.11
+ Bug fix:
+ Fix the perl version check to something which doesn't complain with 5.10
2005-11-15 0.09
Bug fix:
Modified: branches/upstream/libcache-mmap-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-mmap-perl/current/META.yml?rev=18671&op=diff
==============================================================================
--- branches/upstream/libcache-mmap-perl/current/META.yml (original)
+++ branches/upstream/libcache-mmap-perl/current/META.yml Wed Apr 16 15:23:49 2008
@@ -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-Mmap
-version: 0.09
+version: 0.11
version_from: Mmap.pm
installdirs: site
requires:
@@ -11,4 +11,4 @@
Test::More: 0
distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
+generated_by: ExtUtils::MakeMaker version 6.30
Modified: branches/upstream/libcache-mmap-perl/current/Mmap.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-mmap-perl/current/Mmap.pm?rev=18671&op=diff
==============================================================================
--- branches/upstream/libcache-mmap-perl/current/Mmap.pm (original)
+++ branches/upstream/libcache-mmap-perl/current/Mmap.pm Wed Apr 16 15:23:49 2008
@@ -1,4 +1,4 @@
-# $Id: Mmap.pm,v 1.13 2005/11/15 18:33:29 pmh Exp $
+# $Id: Mmap.pm,v 1.15 2008/04/15 09:41:26 pmh Exp $
=head1 NAME
@@ -32,7 +32,7 @@
package Cache::Mmap;
# Do we need to worry about UTF-8?
-use constant has_utf8 => defined($^V) && $^V ge "\5\6\0";
+use constant has_utf8 => has_utf8 => $] >= 5.006_000;
use Carp qw(croak);
use DynaLoader();
@@ -48,7 +48,7 @@
@EXPORT_OK
);
-$VERSION='0.09';
+$VERSION='0.11';
@ISA=qw(DynaLoader Exporter);
@EXPORT_OK=qw(CMM_keep_expired CMM_keep_expired_refresh);
@@ -1092,7 +1092,7 @@
=head1 AUTHOR
-Copyright (C) Institute of Physics Publishing 2002-2005
+Copyright (C) Institute of Physics Publishing 2002-2008
Peter Haworth <pmh at edison.ioppublishing.com>
Modified: branches/upstream/libcache-mmap-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-mmap-perl/current/README?rev=18671&op=diff
==============================================================================
--- branches/upstream/libcache-mmap-perl/current/README (original)
+++ branches/upstream/libcache-mmap-perl/current/README Wed Apr 16 15:23:49 2008
@@ -4,12 +4,15 @@
handles all the details of refreshing cache contents, and updating underlying
data, if necessary.
+Changes between versions 0.10 and 0.11
+ Add 0.10's changes to this list
+
+Changes between versions 0.09 and 0.10
+ Check perl's version number in a way that works on perl 5.10
+
Changes between versions 0.081 and 0.09
Behave correctly on systems which don't allow mmap()ing of locked files
Minor documentation improvements
-
-Changes between versions 0.08 and 0.081
- Make t/03corrupt.t work in UTF8 locales
INSTALLING
@@ -22,8 +25,8 @@
make install
-$Id: README,v 1.9 2005/11/15 18:34:47 pmh Exp $
+$Id: README,v 1.10 2008/04/15 09:47:46 pmh Exp $
-Copyright (C) Institute of Physics Publishing 2002-2005
+Copyright (C) Institute of Physics Publishing 2002-2008
You may distribute under the terms of the GPL or the Artistic License,
as distributed with Perl.
More information about the Pkg-perl-cvs-commits
mailing list