Port details |
- dbtool Store and retrieve data in a key/value format in a hash database
- 1.9.1_2 databases =6 1.9.1_2Version of this port present on the latest quarterly branch.
- There is no maintainer for this port.
- Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org
- Port Added: 2001-04-29 13:58:46
- Last Update: 2024-02-24 19:25:26
- Commit Hash: 3c3c71c
- People watching this port, also watch:: gdbm, sendmail, libunicode, xpdf, libxml2
- License: GPLv2
- WWW:
- https://www.daemon.de/DBTOOL
- Description:
- dbtool can be used to store and retrieve data in a key/value format in a
hash database. Perl compatible regular expressions are supported both for
storing and retrieving of data. It's main advantages are the ability to
maintain huge amounts of data and speed.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- dbtool>0:databases/dbtool
- To install the port:
- cd /usr/ports/databases/dbtool/ && make install clean
- To add the package, run one of these commands:
- pkg install databases/dbtool
- pkg install dbtool
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: dbtool
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (dbtool-1.9.1.tar.gz) = afd3fa03d4b69f25c689817dc1b6ac452eb16ed4b9712c20695b3b4d13a5e647
SIZE (dbtool-1.9.1.tar.gz) = 965751
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.3 : devel/gmake
- Runtime dependencies:
-
- bash : shells/bash
- Library dependencies:
-
- libpcre.so : devel/pcre
- libgdbm.so : databases/gdbm
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for dbtool-1.9.1_2:
EXAMPLES=on: Build and/or install examples
====> Database backend: you have to select exactly one of them
BDB=off: Berkeley DB support
GDBM=on: GNU dbm library support
===> Use 'make config' to modify these settings
- Options name:
- databases_dbtool
- USES:
- gmake localbase shebangfix
- 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.9.1_2 24 Feb 2024 19:25:26 |
Muhammad Moinur Rahman (bofh) |
databases/dbtool: Moved man to share/man
Approved by: portmgr (blanket) |
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.9.1_1 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.9.1_1 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.9.1_1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.9.1_1 11 Nov 2018 15:38:51 |
danfe |
Update `databases/gdbm' to version 1.18.1, an important bugfix release
which restores compatibility with old databases (version 1.8) and some
later versions which were built without mmap(2) support. Due to shlib
version change, bump port revisions of the consumer ports.
PR: 233059
Exp-run by: antoine
Approved by: maintainer (johans, numerous timeouts) |
1.9.1 17 Jun 2018 19:06:51 |
tobik |
databases/dbtool: Unbreak with Clang 6
engine.cc:539:46: error: non-constant-expression cannot be narrowed from type
'std::__1::basic_string<char, std::__1::char_traits<char>,
std::__1::allocator<char> >::size_type' (aka 'unsigned long') to 'int' in
initializer list [-Wc++11-narrowing]
datum key = {(char *)config.key.c_str(), config.key.length()};
^~~~~~~~~~~~~~~~~~~
engine.cc:539:46: note: insert an explicit cast to silence this issue
datum key = {(char *)config.key.c_str(), config.key.length()};
^~~~~~~~~~~~~~~~~~~
static_cast<int>( )
http://beefy12.nyi.freebsd.org/data/head-amd64-default/p472224_s334983/logs/dbtool-1.9.1.log |
1.9.1 08 Aug 2016 13:46:50 |
mat |
USE_BDB cleanup.
- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx -> USES=bdb:xx.
Other modernisations when I see them.
PR: 209183
Sponsored by: Absolight |
1.9.1 19 May 2016 10:21:25 |
amdmi3 |
- Fix trailing whitespace in pkg-descrs, categories [a-f]*
Approved by: portmgr blanket |
1.9.1 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
1.9.1 30 Dec 2015 10:43:50 |
rakuco |
Unmark BROKEN.
The port can be fetched just fine. |
1.9.1 24 Oct 2015 00:32:33 |
bapt |
Mark as broken: does not fetch |
1.9.1 16 Oct 2015 19:09:53 |
pawel |
- Update to version 1.9.1
- Add LICENSE_FILE
- Convert to USES=shebangfix, option helpers, PLIST_FILES
PR: 203242
Submitted by: tkato432@yahoo.com |
1.8 14 Apr 2015 20:21:24 |
mi |
Upgrade from 1.7 to 1.8. While here, please portlint and unroll some
loops in Makefile. |
1.7_5 20 Oct 2014 10:41:13 |
bapt |
Cleanup plist |
1.7_5 22 Aug 2014 06:56:48 |
mandree |
Fix up missed or botched PORTREVISION bumps from r365599.
Apparently Tools/scripts/bump-revision.sh isn't too robust...
PR: 192690 |
1.7_4 21 Aug 2014 22:50:30 |
mandree |
Berkeley DB cleanup, remove versions 4.0 ... 4.7.
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
for new Berkeley DB, but are untested.
NOTE: please read UPDATING and the Wiki page before proceeding!
Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR: 192690
Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports) |
1.7_4 03 Jul 2014 21:48:44 |
adamw |
Nuke NOPORTDOCS. While, here, correct a couple offenders who label examples
with PORTDOCS. And, fix a couple WITH_foo invocations. |
1.7_4 11 Jun 2014 18:55:30 |
marino |
Reset the 99 ports still listed under sylvio@
Sylvio's last commit was 17 months ago, a full 5 months after all of his
ports could have been reset per policy. Given the push to complete
staging (48 ports are still unstaged, something like 70+ have already
been staged by other committers) and given that PRs are automatically
assigned but never addressed, it's better just to reset all the ports and
PRs so that it's clear to others that these ports are free to maintain.
Approved by: portmgr (implicit) |
1.7_4 11 Jun 2014 14:50:00 |
tijl |
Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS. Also remove references to
PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
required additional patches.
Somewhat simplified a linker command line looks like:
${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}
where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us. If possible -L and -l flags need to be (Only the first 15 lines of the commit message are shown above ) |
1.7_4 07 May 2014 23:49:46 |
bapt |
Support stage
Use option framework
Convert to USES=gmake |
1.7_4 12 Feb 2014 14:03:25 |
mat |
Fix old makeplist bug.
Pointy hat to: people who blindly use makeplist
Sponsored by: Absolight |
1.7_3 11 Dec 2013 18:08:53 |
bapt |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in databases |
1.7_3 20 Sep 2013 16:13:49 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases) |
1.7_3 10 Dec 2012 19:11:12 |
mm |
Update PCRE to 8.32
Introduces the UTF-32 library pcre32
Bump PORTREVISION in dependent ports |
1.7_2 14 Feb 2012 12:45:35 |
mm |
Bump pcre library dependency due to 8.30 update |
1.7_1 23 Sep 2011 22:26:39 |
amdmi3 |
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead
PR: 157936
Submitted by: myself
Exp-runs by: pav
Approved by: pav |
1.7_1 12 Sep 2011 13:46:59 |
gabor |
- Track dependencies after databases/gdbm update |
1.7 19 May 2011 18:25:58 |
sylvio |
- Add license |
1.7 20 Mar 2011 12:54:45 |
miwi |
- Get Rid MD5 support |
1.7 27 Nov 2009 22:52:30 |
sylvio |
- Update my mail address to FreeBSD
Approved by: miwi (mentor) |
1.7 30 Jun 2009 17:46:26 |
araujo |
- Update to 1.7.
- Pass maintainer to submitter.
PR: ports/136074
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> |
1.6_3 31 Jan 2009 21:59:35 |
pav |
- Update download location |
1.6_3 06 Jun 2008 13:17:10 |
edwin |
Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).
PR: ports/124340
Submitted by: edwin@
Approved by: portmgr (pav) |
1.6_2 15 Feb 2007 19:38:54 |
jmelo |
- Fix mastersite.
PR: ports/109190
Submitted by: Thomas Abthorpe <thomas@goodking.ca> |
1.6_2 22 Dec 2006 21:33:42 |
bsam |
In preparation to deprecate shells/bash2:
- change RUN_DEPENDS: shells/bash2 -> shells/bash;
- bump PORTREVISION. |
1.6_1 21 Dec 2006 13:45:17 |
arved |
Fix build with gcc41 |
1.6_1 04 May 2006 21:41:12 |
edwin |
Remove USE_REINPLACE from all categories starting with D |
1.6_1 24 Nov 2005 01:23:57 |
pav |
- Add SHA256 |
1.6_1 10 Jun 2004 21:56:49 |
tobez |
Update WWW. |
1.6_1 04 Feb 2004 05:21:48 |
marcus |
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2) |
1.6 29 Jan 2004 07:24:56 |
trevor |
SIZEify. |
1.6 30 Mar 2003 03:40:04 |
edwin |
databases/dbtool: upgrading to 1.6 and fixing on -CURRENT.
PR: ports/50213
Submitted by: Thierry Thomas <thierry@pompo.net> |
1.5 20 Feb 2003 17:00:26 |
knu |
De-pkg-comment. |
1.5 05 Feb 2003 18:15:57 |
naddy |
URL fixes.
PR: 47848, 47853, 47855
Submitted by: tadalunch@s5.xrea.com |
1.5 03 Jan 2003 08:26:35 |
ijliao |
chase gdbm lib version |
1.5 01 Sep 2002 16:07:59 |
dwcjr |
${PERL} -> ${REINPLACE_CMD}
PR: 40784
Submitted by: corecode@corecode.ath.cx
Reviewed by: flynn@energyhq.homeip.net |
1.5 22 Aug 2002 19:31:21 |
ade |
Fix typo that would have meant this port would not have compiled
if db3 support had been selected. |
1.5 13 Jun 2002 13:58:31 |
ijliao |
upgrade to 1.5
PR: 39224
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de> |
1.4 17 Apr 2002 09:41:33 |
ijliao |
upgrade to 1.4
drop maintainership |
01 Aug 2001 12:56:25 |
knu |
Back out the db3 port update because some of these dependent ports had been
broken by the incompatibility between db3.2 and db3.3. |
25 Jul 2001 16:05:11 |
knu |
Reflect databases/db3's shlib version bump from 2 to 3. |
29 Apr 2001 17:58:46 |
ijliao |
add dbtool Store and retrieve data in a key/value format in a hash database
|