Port details |
- kyotocabinet Straightforward implementation of DBM
- 1.2.80 databases =2 1.2.80Version of this port present on the latest quarterly branch.
- Maintainer: sunpoet@FreeBSD.org
- Port Added: 2010-04-23 10:42:55
- Last Update: 2024-04-13 13:03:19
- Commit Hash: 62ed195
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- License: GPLv3
- WWW:
- https://dbmx.net/kyotocabinet/
- Description:
- Kyoto Cabinet is a library of routines for managing a database. The
database is a simple data file containing records, each is a pair of a
key and a value. Every key and value is serial bytes with variable
length. Both binary data and character string can be used as a key and
a value. Each key must be unique within a database. There is neither
concept of data tables nor data types. Records are organized in hash
table or B+ tree.
Kyoto Cabinet runs very fast. For example, elapsed time to store one
million records is 0.9 seconds for hash database, and 1.1 seconds for
B+ tree database. Moreover, the size of database of Kyoto Cabinet is
very small. For example, overhead for a record is 16 bytes for hash
database, and 4 bytes for B+ tree database. Furthermore, scalability
of Kyoto Cabinet is great. The database size can be up to 8EB (9.22e18
bytes).
Kyoto Cabinet is written in the C++ language, and provided as API of
C++, C, Java, Python, Ruby, Perl, and Lua. Kyoto Cabinet is available
on platforms which have API conforming to C++03 with the TR1 library
extensions. Kyoto Cabinet is a free software licensed under the GNU
General Public License.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- kyotocabinet>0:databases/kyotocabinet
- To install the port:
- cd /usr/ports/databases/kyotocabinet/ && make install clean
- To add the package, run one of these commands:
- pkg install databases/kyotocabinet
- pkg install kyotocabinet
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: kyotocabinet
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1681843824
SHA256 (kyotocabinet-1.2.80.tar.gz) = 4c85d736668d82920bfdbdb92ac3d66b7db1108f09581a769dd9160a02def349
SIZE (kyotocabinet-1.2.80.tar.gz) = 942543
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- gmake>=4.4.1 : devel/gmake
- This port is required by:
- for Libraries
-
- chinese/libpinyin
- databases/kyototycoon
- databases/p5-KyotoCabinet
- databases/py-kyotocabinet
- mail/bogofilter-kc
-
Deleted ports which required this port:
- * - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...
Configuration Options:
- ===> The following configuration options are available for kyotocabinet-1.2.80:
DOCS=on: Build and/or install documentation
===> Use 'make config' to modify these settings
- Options name:
- databases_kyotocabinet
- USES:
- compiler:c++11-lang gmake
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.2.80 13 Apr 2024 13:03:19 |
Po-Chuan Hsieh (sunpoet) |
*/*: Remove GNU_CONFIGURE_MANPREFIX=${PREFIX}/share after
9fd7ee1cdf6cbd5528159b58a966e1a40e2909a9 |
1.2.80 21 Feb 2024 15:06:17 |
Po-Chuan Hsieh (sunpoet) |
databases/kyotocabinet: Update manpage location
(003a571d1d6585196545295efc181514f171c4c4, r523104) |
1.2.80 18 Apr 2023 21:37:41 |
Po-Chuan Hsieh (sunpoet) |
databases/kyotocabinet: Update to 1.2.80
Changes:
- configure.in supports strict C99 rules. |
1.2.79 16 Dec 2022 23:42:54 |
Matthias Andree (mandree) |
databases/kyotocabinet: revert "add prototypes to kclangc.h declarations."
This reverts commit 8b60e005cdb55fcf5100bd295bb9b8940515f63a,
not approved, and escaped after messing up my branches. |
1.2.79_1 16 Dec 2022 22:08:29 |
Matthias Andree (mandree) |
databases/kyotocabinet: add prototypes to kclangc.h declarations.
Some function declarations just use () as argument list. This is
valid C++, but not C, and clang-15 complains with -Wstrict-prototypes:
/usr/local/include/kclangc.h:261:13: warning: a function declaration without a
prototype is deprecated in all versions of C [-Wstrict-prototypes]
double kcnan();
^
void
/usr/local/include/kclangc.h:268:13: warning: a function declaration without a
prototype is deprecated in all versions of C [-Wstrict-prototypes]
double kcinf();
^
void
/usr/local/include/kclangc.h:1525:18: warning: a function declaration without a
prototype is deprecated in all versions of C [-Wstrict-prototypes]
KCLIST* kclistnew();
^
void
Add the missing void.
PR: 268313 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.2.79 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.2.79 20 Jul 2022 14:21:07 |
Tobias C. Berner (tcberner) |
databases: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Choe, Cheng-Dae" whitekid
* "Mahdi Mokhtari <mokhi64@gmail.com>"
* "Meikel Brandmeyer" <ocaml-sqlite3-port@kotka.de>
* <hvo.pm@xs4all.nl>
* <jsmith@resonatingmedia.com>
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alan Snelson <Alan@Wave2.org> (Only the first 15 lines of the commit message are shown above ) |
1.2.79 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.2.79 12 Jan 2021 17:45:11 |
pkubaj |
databases/kyotocabinet: fix build on GCC architectures
kcdirtest.cc: In member function 'virtual const char* procorder(const char*,
int64_t, int32_t, bool, int32_t, bool, int32_t, int32_t,
bool)::VisitorIterator::visit_full(const char*, size_t, const char*, size_t,
size_t*)':
kcdirtest.cc:1030: error: 'class std::set<std::basic_string<char,
std::char_traits<char>, std::allocator<char> >,
std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char> >
>, std::allocator<std::basic_string<char, std::char_traits<char>,
std::allocator<char> > > >' has no member named 'emplace'
kcdirtest.cc: In member function 'virtual const char* procorder(const char*,
int64_t, int32_t, bool, int32_t, bool, int32_t, int32_t,
bool)::VisitorCursor::visit_full(const char*, size_t, const char*, size_t,
size_t*)':
kcdirtest.cc:1095: error: 'class std::set<std::basic_string<char,
std::char_traits<char>, std::allocator<char> >,
std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char> >
>, std::allocator<std::basic_string<char, std::char_traits<char>,
std::allocator<char> > > >' has no member named 'emplace'
MFH: 2021Q1 |
1.2.79 19 Dec 2020 20:06:00 |
sunpoet |
Update to 1.2.79
- Fixed errors of kcdirtest on BtrFS. |
1.2.78 24 Jul 2020 18:58:47 |
sunpoet |
Update to 1.2.78
- Update MASTER_SITES
- Update WWW
- Fixed build warnings. |
1.2.77 30 Jan 2019 19:21:51 |
sunpoet |
Convert to options target helper |
1.2.77 29 Oct 2018 22:12:03 |
sunpoet |
Update to 1.2.77
- Update MASTER_SITES
- Update WWW
- Fixed build errors. |
1.2.76_1 01 Jul 2018 09:17:46 |
linimon |
Mark these ports broken on mips64 and/or mips.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket) |
1.2.76_1 14 Jan 2018 07:07:03 |
sunpoet |
Fix build with Clang 6
Reported by: ler
Tested by: ler |
1.2.76_1 01 Dec 2016 11:18:04 |
mat |
Don't quote {} in find -exec calls.
Braces are not shell metacharacters, and they do not need to be quoted.
By the time find parses its arguments and dicovers them, the quoting
will have been removed by the shell anyway.
Sponsored by: Absolight |
1.2.76_1 04 Oct 2015 18:00:10 |
sunpoet |
- Convert to new test framework
- Pet portlint: fix diff header of patch files |
1.2.76_1 18 Jan 2015 22:48:40 |
sunpoet |
- Use INSTALL_TARGET=install-strip instead of STRIP_CMD |
1.2.76_1 20 Oct 2014 10:41:13 |
bapt |
Cleanup plist |
1.2.76_1 04 Apr 2014 09:48:36 |
sunpoet |
- Use MAKE_CMD |
1.2.76_1 18 Mar 2014 16:13:58 |
sunpoet |
- Strip binary executable and shared library in post-install: phase
- Add regression-test: |
1.2.76_1 01 Mar 2014 07:24:12 |
sunpoet |
- Allow "make package" as user
- Use BINMODE and DOCMODE
- Simplify Makefile |
1.2.76_1 30 Dec 2013 09:08:08 |
sunpoet |
- Allow build with clang [1]
- Remove explicit -lstdc++
- Bump PORTREVISION for package change
Submitted by: vanilla [1] |
1.2.76 27 Dec 2013 02:16:28 |
sunpoet |
- Use USE_GCC=any
- Change -lpthread to -pthread
- Strip binary executable and shared library
- Use NOT_FOR_ARCHS
- Remove outdated ARCH check and pkg-message
- Support STAGEDIR |
1.2.76 20 Sep 2013 16:13:49 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases) |
1.2.76 25 Aug 2013 16:12:33 |
sunpoet |
- Remove USE_GCC=4.2+
- Use !${PORT_OPTIONS:Mfoo} instead of empty(PORT_OPTIONS:Mfoo)
- Use single space after WWW: |
1.2.76 21 Aug 2013 17:17:26 |
sunpoet |
- Remove leading indefinite article from COMMENT |
1.2.76 21 Aug 2013 12:03:52 |
sunpoet |
- Use USES=gmake |
1.2.76 14 Aug 2013 22:35:54 |
ak |
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery) |
1.2.76 09 Oct 2012 13:59:42 |
sunpoet |
- Convert to new options framework
- Cleanup Makefile header |
1.2.76 28 May 2012 17:12:11 |
sunpoet |
- Update to 1.2.76
Changes:
- kcthread.cc (CondVar::wait): a bug on Win32 was fixed.
- kcdbext.h (IndexDB::set, IndexDB::replace): a bug of updating existing records
was fixed.
- kcdb.h (DB::check): new function. |
1.2.75 03 May 2012 09:50:02 |
sunpoet |
- Update to 1.2.75
Changes:
- kcpolydb.h (PolyDB::match_similar): supressed warnings on signedness. |
1.2.74 28 Mar 2012 19:05:24 |
sunpoet |
- Update to 1.2.74
Changes:
- kcpolydb.h (PolyDB::SimilarKey): the type of a member was modified for c++0x
mode.
Feature safe: yes |
1.2.73 15 Mar 2012 17:33:03 |
sunpoet |
- Update to 1.2.73
Changes:
- kcutil.h (memdist, strutfdist, strucsdist): new functions.
- kcpolydb.h (PolyDB::match_similar): new funcion.
- kclangc.h (kclevdist, kcdbmatchsimilar): new functions.
- kcfile.cc (File::open): LOCKFILE_FAIL_IMMEDIATELY support was added for Win32.
Feature safe: yes |
1.2.72 18 Dec 2011 14:13:48 |
sunpoet |
- Update to 1.2.72
Changes:
- kcfile.h (File::read, File::read_rast): a bug of invalid memory deletion was
fixed. |
1.2.71 07 Dec 2011 13:54:36 |
sunpoet |
- Update to 1.2.71
- Cosmetic change
Changes:
- kclang.cc (kcdbcas): the erroneous order of parameters was rectified.
Feature safe: yes |
1.2.70_1 10 Nov 2011 21:31:27 |
linimon |
Mark as broken on powerpc: fails to link.
Hat: portmgr
Feature safe: yes |
1.2.70_1 09 Nov 2011 12:22:34 |
sunpoet |
- Change PORTDOCS handling: kyotocabinet.idl is now installed to DOCSDIR
- Bump PORTREVISION for package change |
1.2.70 25 Aug 2011 03:39:03 |
sunpoet |
- Add my LOCAL to MASTER_SITES
- Take maintainership |
1.2.70 22 Aug 2011 15:53:26 |
knu |
Drop maintainership. I'm not interested in this any more. |
1.2.70 22 Aug 2011 15:52:10 |
knu |
Update to 1.2.70 and add LICENSE.
This commit is based on the following PR.
PR: ports/158887
Submitted by: Jin-Sih Lin <linpct@gmail.com> |
1.2.7 12 Dec 2010 03:25:54 |
pgollucci |
- Fix fetch
Reported by: QAT |
1.2.7 10 Sep 2010 04:16:57 |
pgollucci |
- Update to 1.2.7
- MASTER_SITES udated
- MAN1 list updated
- THANKS removed from list of docs added to DOCSDIR
(not present in vendor's archive anymore)
- files/patch-Makefile.in updated
- pkg-descr and pkg-plist updated
PR: ports/149876
Submitted by: Frederic Culot <frederic@culot.org>
Approved by: maintainer timeout (knu ; 19 days) |
1.0.1 08 Jun 2010 02:21:26 |
knu |
Update to 1.0.1. |
1.0.0 22 May 2010 15:25:10 |
knu |
Update to 1.0.0. |
0.9.18 21 May 2010 03:55:56 |
knu |
Update to 0.9.18. |
0.9.17 07 May 2010 17:34:52 |
knu |
Update to 0.9.17. |
0.9.15 07 May 2010 16:56:42 |
knu |
Unbreak for i386 by forcing CPUTYPE=i586 if not defined.
Give caution to user using PKGMESSAGE that this library relies on some
kinds of CPU instructions that i386 and i486 do not have. |
0.9.15 05 May 2010 15:47:14 |
knu |
This port does not compile with gcc older than 4.2. |
0.9.15 28 Apr 2010 04:16:47 |
knu |
Update to 0.9.15. (Forgot to commit this file) |
0.9.15 28 Apr 2010 03:44:40 |
knu |
Update to 0.9.15. |
0.9.14 23 Apr 2010 10:42:27 |
knu |
Add kyotocabinet, a straightforward implementation of DBM. |