pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases/kyotocabinet kyotocabinet: Update to 1.2.79
details: https://anonhg.NetBSD.org/pkgsrc/rev/e56aeee0bf5e
branches: trunk
changeset: 447270:e56aeee0bf5e
user: nia <nia%pkgsrc.org@localhost>
date: Thu Feb 18 18:02:46 2021 +0000
description:
kyotocabinet: Update to 1.2.79
Delete patches for unsupported NetBSD releases.
2020-12-09 FAL Labs <info%fallabs.com@localhost>
- Fixed errors of kcdirtest on BtrFS.
- Release: 1.2.79
diffstat:
databases/kyotocabinet/Makefile | 4 +-
databases/kyotocabinet/PLIST | 4 +-
databases/kyotocabinet/distinfo | 12 ++++------
databases/kyotocabinet/patches/patch-kccommon.h | 25 ------------------------
databases/kyotocabinet/patches/patch-kcthread.cc | 15 --------------
5 files changed, 9 insertions(+), 51 deletions(-)
diffs (97 lines):
diff -r 13e3d3f980b0 -r e56aeee0bf5e databases/kyotocabinet/Makefile
--- a/databases/kyotocabinet/Makefile Thu Feb 18 17:37:00 2021 +0000
+++ b/databases/kyotocabinet/Makefile Thu Feb 18 18:02:46 2021 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.9 2020/12/31 20:04:11 nia Exp $
+# $NetBSD: Makefile,v 1.10 2021/02/18 18:02:46 nia Exp $
#
-DISTNAME= kyotocabinet-1.2.78
+DISTNAME= kyotocabinet-1.2.79
CATEGORIES= databases
MASTER_SITES= https://dbmx.net/kyotocabinet/pkg/
diff -r 13e3d3f980b0 -r e56aeee0bf5e databases/kyotocabinet/PLIST
--- a/databases/kyotocabinet/PLIST Thu Feb 18 17:37:00 2021 +0000
+++ b/databases/kyotocabinet/PLIST Thu Feb 18 18:02:46 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2014/11/21 11:29:52 obache Exp $
+@comment $NetBSD: PLIST,v 1.2 2021/02/18 18:02:46 nia Exp $
bin/kccachetest
bin/kcdirmgr
bin/kcdirtest
@@ -38,7 +38,7 @@
lib/libkyotocabinet.a
lib/libkyotocabinet.so
lib/libkyotocabinet.so.16
-lib/libkyotocabinet.so.16.13.0
+lib/libkyotocabinet.so.16.14.0
lib/pkgconfig/kyotocabinet.pc
man/man1/kccachetest.1
man/man1/kcdirmgr.1
diff -r 13e3d3f980b0 -r e56aeee0bf5e databases/kyotocabinet/distinfo
--- a/databases/kyotocabinet/distinfo Thu Feb 18 17:37:00 2021 +0000
+++ b/databases/kyotocabinet/distinfo Thu Feb 18 18:02:46 2021 +0000
@@ -1,9 +1,7 @@
-$NetBSD: distinfo,v 1.8 2020/11/23 14:00:39 nia Exp $
+$NetBSD: distinfo,v 1.9 2021/02/18 18:02:46 nia Exp $
-SHA1 (kyotocabinet-1.2.78.tar.gz) = c5022c8565ae4c6536a39052695258698c577462
-RMD160 (kyotocabinet-1.2.78.tar.gz) = 100079ce8a6ba6a01292fe9e3658d887b109e5a0
-SHA512 (kyotocabinet-1.2.78.tar.gz) = 57971a231998574678d38d4b4aaffa0dafcac17416a05a42e1204d54e8d81ac1044ea703dd62f1d23c9385b5b18775918b722f428f14078451af83c29354db53
-Size (kyotocabinet-1.2.78.tar.gz) = 954490 bytes
+SHA1 (kyotocabinet-1.2.79.tar.gz) = 21a2d05bfe66775334c21009dac5016e5410ddb3
+RMD160 (kyotocabinet-1.2.79.tar.gz) = aa8ba2f5ff503828c709c8effea1f6df7d845059
+SHA512 (kyotocabinet-1.2.79.tar.gz) = 9243192c81d3aa37cc8c80eb3bdf235192a0919b134cededa2b4178be515d148916e7405e094cbcdd7dbf13bf38a569bf21863afac7cc05d6418cca5853a2ff4
+Size (kyotocabinet-1.2.79.tar.gz) = 943804 bytes
SHA1 (patch-configure) = 67f2a01332236f7db88a5714ced8662b1c82a467
-SHA1 (patch-kccommon.h) = 93a4c003aa6bf069cf65f2a943314f2a332790c6
-SHA1 (patch-kcthread.cc) = d09d280cd9589b10bbc10b29dc51d40ce074cc7f
diff -r 13e3d3f980b0 -r e56aeee0bf5e databases/kyotocabinet/patches/patch-kccommon.h
--- a/databases/kyotocabinet/patches/patch-kccommon.h Thu Feb 18 17:37:00 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +0,0 @@
-$NetBSD: patch-kccommon.h,v 1.3 2014/11/24 07:05:49 obache Exp $
-
-* NetBSD also missing modfl(3)
-* XXX: (will be removed in future update).
-
---- kccommon.h.orig 2012-05-24 16:27:59.000000000 +0000
-+++ kccommon.h
-@@ -68,7 +68,7 @@ extern "C" {
- #define snprintf _snprintf
- #endif
-
--#if defined(__CYGWIN__)
-+#if defined(__CYGWIN__) || defined(__NetBSD__)
- inline long double modfl(long double val, long double* iptr) {
- double integ;
- double fract = std::modf(val, &integ);
-@@ -82,7 +82,7 @@ using ::modfl;
- using ::snprintf;
- }
-
--#if __cplusplus > 199711L || defined(__GXX_EXPERIMENTAL_CXX0X__) || defined(_MSC_VER)
-+#if __cplusplus > 199711L || defined(__GXX_EXPERIMENTAL_CXX0X__) || defined(_MSC_VER) || defined(_LIBCPP_VERSION)
-
- #include <unordered_map>
- #include <unordered_set>
diff -r 13e3d3f980b0 -r e56aeee0bf5e databases/kyotocabinet/patches/patch-kcthread.cc
--- a/databases/kyotocabinet/patches/patch-kcthread.cc Thu Feb 18 17:37:00 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-kcthread.cc,v 1.1 2014/11/21 11:29:52 obache Exp $
-
-* NetBSD also use generic method
-
---- kcthread.cc.orig 2012-05-24 16:27:59.000000000 +0000
-+++ kcthread.cc
-@@ -402,7 +402,7 @@ bool Mutex::lock_try() {
- * Try to get the lock.
- */
- bool Mutex::lock_try(double sec) {
--#if defined(_SYS_MSVC_) || defined(_SYS_MINGW_) || defined(_SYS_CYGWIN_) || defined(_SYS_MACOSX_)
-+#if defined(_SYS_MSVC_) || defined(_SYS_MINGW_) || defined(_SYS_CYGWIN_) || defined(_SYS_MACOSX_) || defined(_SYS_NETBSD_)
- _assert_(sec >= 0.0);
- if (lock_try()) return true;
- double end = time() + sec;
Home |
Main Index |
Thread Index |
Old Index