pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases/tokyocabinet Update tokyocabinet to 1.4.41.
details: https://anonhg.NetBSD.org/pkgsrc/rev/62755ba61aa3
branches: trunk
changeset: 569720:62755ba61aa3
user: obache <obache%pkgsrc.org@localhost>
date: Sun Jan 17 02:45:00 2010 +0000
description:
Update tokyocabinet to 1.4.41.
2009-12-07 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* tctdb.c (tctdbidxputtoken, tctdbidxputqgram): domain overflow checking was added.
- Release: 1.4.41
2009-11-24 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* tchdb.c (tchdbputimpl): efficiency of using the free block pool was improved.
* tchdb.c (tchdboptimizeimpl): the behaviour in no lock mode was modified.
- Release: 1.4.40
2009-11-11 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* tcutil.h (TCALIGNOF, tcgeneric_t): new macros.
* tcutil.h (TCALIGNPAD): the alignment is now calculated by the generic union.
* myconf.h (_alignof, _issigned, _maxof): new macros.
- Release: 1.4.39
2009-11-09 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* tcutil.c (tcsysinfo): FreeBSD and Mac OS X are now supported.
* tcutil.c (tcmpoolclear): new function.
* tchdb.c (tchdbputproc): a potential bug of memory aligment violation was fixed.
* tcbdb.c (tcbdbputproc): a potential bug of memory aligment violation was fixed.
* tcfdb.c (tcfdbputproc): a potential bug of memory aligment violation was fixed.
- Release: 1.4.38
2009-10-27 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* tctdb.c (tctdbcacheclear, tctdbcacheclearimpl): new functions.
* tcadb.c (tcadbmisc): "getpart", "cacheclear", and "regex" functions were added.
- Release: 1.4.37
2009-10-26 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* tcutil.c (tcwwwformdecode2): a bug related to multiple cookie handling was fixed.
* tcadb.c (tcadbmisc): the "error" functions were added.
- Release: 1.4.36
2009-10-06 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* tchdb.c (tchdbseekwrite): a bug related to emulation of the UBC was fixed.
* tchdb.c (tchdbvanishimpl): potential memory leak was removed.
* tcfdb.c (tcfdbvanishimpl): potential memory leak was removed.
* tcadb.c (tcadbsetskelmulti, tcadbmulnew, tcadbmuldel): new functions.
* tcadb.c (tcadbmisc): "range" sub function for B+ tree was added.
* tcamgr.c (setskeltran): new function.
* tcamttest.c: new file.
- Release: 1.4.35
2009-09-11 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* myconf.h: a macro for environment without "nanl" was added.
* tctdbmetasearch (tctdbmetasearch): a bug related to the limit parameters was fixed.
- Release: 1.4.34
2009-08-31 Mikio Hirabayashi <hirarin%gmail.com@localhost>
* tcutil.h, tchdb.h, tcbdb.h, tcfdb.h, tctdb.h, tcadb.h: including stdbool.h was wrapped.
* tcutil.c (tccmpdecimal): accuracy was improved and now real number is supported.
* tctdb.c (tctdbqrycondmatch): accuracy of decimal operators was improved.
- Release: 1.4.33
diffstat:
databases/tokyocabinet/Makefile | 7 +++----
databases/tokyocabinet/PLIST | 8 +++++---
databases/tokyocabinet/buildlink3.mk | 4 ++--
databases/tokyocabinet/distinfo | 10 +++++-----
databases/tokyocabinet/patches/patch-aa | 6 +++---
5 files changed, 18 insertions(+), 17 deletions(-)
diffs (91 lines):
diff -r 1208d0e2189c -r 62755ba61aa3 databases/tokyocabinet/Makefile
--- a/databases/tokyocabinet/Makefile Sun Jan 17 02:28:22 2010 +0000
+++ b/databases/tokyocabinet/Makefile Sun Jan 17 02:45:00 2010 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.36 2009/12/19 12:56:45 obache Exp $
+# $NetBSD: Makefile,v 1.37 2010/01/17 02:45:00 obache Exp $
#
-DISTNAME= tokyocabinet-1.4.32
-PKGREVISION= 1
+DISTNAME= tokyocabinet-1.4.41
CATEGORIES= databases
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tokyocabinet/}
+MASTER_SITES= ${HOMEPAGE}
MAINTAINER= obache%NetBSD.org@localhost
HOMEPAGE= http://1978th.net/tokyocabinet/
diff -r 1208d0e2189c -r 62755ba61aa3 databases/tokyocabinet/PLIST
--- a/databases/tokyocabinet/PLIST Sun Jan 17 02:28:22 2010 +0000
+++ b/databases/tokyocabinet/PLIST Sun Jan 17 02:45:00 2010 +0000
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.34 2009/08/22 06:42:35 obache Exp $
+@comment $NetBSD: PLIST,v 1.35 2010/01/17 02:45:00 obache Exp $
bin/tcamgr
+bin/tcamttest
bin/tcatest
bin/tcbmgr
bin/tcbmttest
@@ -24,11 +25,12 @@
include/tcutil.h
lib/libtokyocabinet.a
lib/libtokyocabinet.so
-lib/libtokyocabinet.so.8
-lib/libtokyocabinet.so.8.23.0
+lib/libtokyocabinet.so.9
+lib/libtokyocabinet.so.9.4.0
lib/pkgconfig/tokyocabinet.pc
libexec/tcawmgr.cgi
man/man1/tcamgr.1
+man/man1/tcamttest.1
man/man1/tcatest.1
man/man1/tcbmgr.1
man/man1/tcbmttest.1
diff -r 1208d0e2189c -r 62755ba61aa3 databases/tokyocabinet/buildlink3.mk
--- a/databases/tokyocabinet/buildlink3.mk Sun Jan 17 02:28:22 2010 +0000
+++ b/databases/tokyocabinet/buildlink3.mk Sun Jan 17 02:45:00 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2009/12/19 12:56:45 obache Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2010/01/17 02:45:00 obache Exp $
BUILDLINK_TREE+= tokyocabinet
@@ -6,7 +6,7 @@
TOKYOCABINET_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.tokyocabinet+= tokyocabinet>=1.3.7
-BUILDLINK_ABI_DEPENDS.tokyocabinet+= tokyocabinet>=1.4.32nb1
+BUILDLINK_ABI_DEPENDS.tokyocabinet+= tokyocabinet>=1.4.41
BUILDLINK_PKGSRCDIR.tokyocabinet?= ../../databases/tokyocabinet
pkgbase := tokyocabinet
diff -r 1208d0e2189c -r 62755ba61aa3 databases/tokyocabinet/distinfo
--- a/databases/tokyocabinet/distinfo Sun Jan 17 02:28:22 2010 +0000
+++ b/databases/tokyocabinet/distinfo Sun Jan 17 02:45:00 2010 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.34 2009/08/22 06:42:35 obache Exp $
+$NetBSD: distinfo,v 1.35 2010/01/17 02:45:00 obache Exp $
-SHA1 (tokyocabinet-1.4.32.tar.gz) = 9b2b2774beaa91735502ffbc10b7344dace8ce33
-RMD160 (tokyocabinet-1.4.32.tar.gz) = a213d5e4e7625978186fb05f16b3fae205e0bc74
-Size (tokyocabinet-1.4.32.tar.gz) = 950225 bytes
-SHA1 (patch-aa) = f81f4ff8d80f632e0b06e2aad6050b95a4819c97
+SHA1 (tokyocabinet-1.4.41.tar.gz) = aefd98f86cd86141254978574e10ca58228902a6
+RMD160 (tokyocabinet-1.4.41.tar.gz) = 104f3e3c83caf7f510a64537e8815a7e41fd8e24
+Size (tokyocabinet-1.4.41.tar.gz) = 991669 bytes
+SHA1 (patch-aa) = da66f5289c3e3e5fcbc306422ca69fb46c90b9dd
diff -r 1208d0e2189c -r 62755ba61aa3 databases/tokyocabinet/patches/patch-aa
--- a/databases/tokyocabinet/patches/patch-aa Sun Jan 17 02:28:22 2010 +0000
+++ b/databases/tokyocabinet/patches/patch-aa Sun Jan 17 02:45:00 2010 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.10 2009/05/07 10:55:07 obache Exp $
+$NetBSD: patch-aa,v 1.11 2010/01/17 02:45:00 obache Exp $
---- configure.orig 2009-04-30 09:20:57.000000000 +0000
+--- configure.orig 2009-12-07 03:03:56.000000000 +0000
+++ configure
-@@ -1853,22 +1853,19 @@ MYDOCUMENTFILES="COPYING ChangeLog THANK
+@@ -1855,22 +1855,19 @@ MYDOCUMENTFILES="COPYING ChangeLog THANK
MYPCFILES="tokyocabinet.pc"
# Building flags
Home |
Main Index |
Thread Index |
Old Index