Update p5-MMapDB to 0.15.

Changes from previsou:
----------------------
0.15  Mon Sep 10 10:37:44 CEST 2012
      - make "map {local $_} values %{$d->main_index}" work
        map creates an alias ($_) and local tries to assign to it.
        Prior this threw an exception.

0.14  Sun Apr  3 20:57:57 CEST 2011
      - index_lookup and index_lookup_position now accept 0 or undef in
      	place of the index parameter. In this case the mainidx is looked up.
	Should be a bit faster than passing $db->mainidx.
      - index_lookup_records(), index_lookup_values(), index_lookup_sorts()
      - speed up writing: mmap _tmpfh and _stringfh to avoid sysseek+syswrite

        v0.13: 20.7612 (19.09 usr +  1.63 sys = 20.72 CPU) @  1.06/s (n=22)
        v0.14: 20.299 (20.20 usr +  0.05 sys = 20.25 CPU) @  1.68/s (n=34)
                Rate v0.13 v0.14
        v0.13 1.06/s    --  -37%
        v0.14 1.68/s   58%    --

0.13  Thu Mar 31 12:27:39 CEST 2011
      - MMDB-lookup tool
      - data_record, data_value and data_sort now work on a position list
        instead of a single position.

0.12  Sun Oct 31 14:22:53 CET 2010
      - fixed subtle UTF8 problem: 2 strings consisting of the same ascii
      	characters were considered different if one of them had the UTF8
	flag set while the other had not.

	Example:

	  no utf8;      # just to make sure
	  Encode::decode_utf8('hello') eq 'hello'

	In Perl this is true. The MMapDB index_lookup function reported them
	as different up to version 0.11.

0.11  Sat Jun  5 16:37:48 CEST 2010
      - removed _rwdata, since File::Map provides protect() now (since 0.21)
      - avoid lvalue substr() in invalidate since this prevents the
        file map to be destroyed in time.

0.10  Fri May 14 13:58:13 CEST 2010
      - make references to the MMapDB object from MMapDB::_base objects
        (tied interface) weak.

0.09  Mon May  3 19:54:25 CEST 2010
      - declare @attributes as 'our'
      - data_value, data_sort accessors
      - DATAMODE_SIMPLE
      - untie in stop() to break circular refs
This commit is contained in:
Hiramatsu Yoshifumi 2013-04-25 02:11:21 +00:00 committed by Thomas Klausner
parent 15657f7f7f
commit c1b55d5323
2 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.2 2012/10/04 18:42:21 asau Exp $
# $NetBSD: Makefile,v 1.3 2013/04/25 02:11:21 jgoamakf Exp $
#
DISTNAME= MMapDB-0.08
DISTNAME= MMapDB-0.15
PKGNAME= p5-${DISTNAME}
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/O/OP/OPI/}

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.1.1.1 2010/04/21 15:33:55 uccwen Exp $
$NetBSD: distinfo,v 1.2 2013/04/25 02:11:21 jgoamakf Exp $
SHA1 (MMapDB-0.08.tar.gz) = 739df90665c0ae738583909e935ae20501b5f778
RMD160 (MMapDB-0.08.tar.gz) = f396ad4bb92cfe8b7730a2cfdc3fbcf199ffbcd7
Size (MMapDB-0.08.tar.gz) = 78627 bytes
SHA1 (MMapDB-0.15.tar.gz) = c6e72eafdd661b56804d00aad1c5b35e8d4c0e6a
RMD160 (MMapDB-0.15.tar.gz) = 4fdfeb75f0794075110755df091001e70f69ffd8
Size (MMapDB-0.15.tar.gz) = 90206 bytes