| CARVIEW |
Select Language
HTTP/2 200
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
set-cookie: PHPSESSID=1jdm4ug8mlad7fk1is67tjum9r; path=/
content-type: text/html; charset=UTF-8
date: Sat, 27 Dec 2025 00:02:06 GMT
server: Apache
pkgsrc.se | The NetBSD package collection
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
gdbm_com..
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
mail
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
print
regress
security
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./databases/gdbm_compat, The GNU database manager Compat library for dbm and ndbm
[
Branch: CURRENT, Version: 1.24, Package name: gdbm_compat-1.24, Maintainer: pkgsrc-users
GNU `dbm' is a library of functions implementing a hashed database
on a disk file. The software was written by Philip A. Nelson.
This is the optional dbm and ndbm API compatibility library and headers.
Required to run:
[databases/gdbm]
Required to build:
[pkgtools/cwrappers]
Navigation:
-
Browse pkgsrc
(this page)
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
gdbm_com..devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
regress
security
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./databases/gdbm_compat, The GNU database manager Compat library for dbm and ndbm
[
CVSweb ] [
Homepage ] [
RSS ] [
Required by ] [
Add to tracker ]
Branch: CURRENT, Version: 1.24, Package name: gdbm_compat-1.24, Maintainer: pkgsrc-users
GNU `dbm' is a library of functions implementing a hashed database
on a disk file. The software was written by Philip A. Nelson.
This is the optional dbm and ndbm API compatibility library and headers.
Required to run:
[databases/gdbm]
Required to build:
[pkgtools/cwrappers]
Master sites: (Expand)
- https://mirrors.dotsrc.org/gnu/gdbm/ (Download)
- https://ftp.nluug.nl/pub/gnu/gdbm/ (Download)
- https://mirrors.kernel.org/gnu/gdbm/ (Download)
Version history: (Expand)
- (2025-07-15) Package has been reborn
- (2025-07-15) Updated to version: gdbm_compat-1.24
- (2025-07-15) Package deleted from pkgsrc
- (2021-11-30) Updated to version: gdbm_compat-1.22
- (2020-08-24) Updated to version: gdbm_compat-1.18.1
- (2018-01-28) Updated to version: gdbm_compat-1.14.1nb1
CVS history: (Expand)
| 2020-08-24 09:59:27 by Thomas Klausner | Files touched by this commit (1) | |
Log message: gdbm_compat: reset PKGREVISION after update |
| 2019-11-02 16:38:12 by Roland Illig | Files touched by this commit (115) |
Log message: databases: align variable assignments pkglint -Wall -F --only aligned -r No manual corrections. |
| 2018-01-28 21:11:10 by Thomas Klausner | Files touched by this commit (462) |
Log message: Bump PKGREVISION for gdbm shlib major bump |
| 2017-03-20 07:02:27 by Adam Ciarcinski | Files touched by this commit (9) |
Log message: Version 1.13 - 2017-03-11 * gdbm_fetch, gdbm_firstkey, and gdbm_nextkey behavior If the requested key was not found, these functions return datum with dptr pointing to NULL and set gdbm_errno to GDBM_ITEM_NOT_FOUND (in prior releases, gdbm_errno was set to GDBM_NO_ERROR), If an error occurred, dptr is set to NULL, and gdbm_errno to the error code. In any case gdbm_errno is guaranteed to have meaningful value upon return. * Error handling In previous versions of GDBM, fatal errors (such as write error while storing the key/data pair or bucket) caused immediate termination of the program via call to exit(3). This is no longer the case. Starting from this version, if a fatal error occurrs while modifying the database file, that database is marked as needing recovery and gdbm_errno is set to GDBM_NEED_RECOVERY. Calls to any GDBM functions, except gdbm_recover, will then return immediately with the same error code. The function gdbm_recover examines the database file and fixes eventual inconsistencies. Upon successful return it clears the error state and makes the database operational again. For backward compatibility, the fatal_func argument to gdbm_open is retained and its functionality is not changed. If it is not NULL, the new error handling procedures are disabled, the function it points to will be called upon fatal errors. When it returns, exit(1) will be called. * Per-database error codes In addition to gdbm_error global variable, the most recent error state is saved in the GDBM_FILE structure. This facilitates error handling when operating multiple GDBM databases simultaneously. |
| 2014-10-09 16:07:17 by Thomas Klausner | Files touched by this commit (1163) |
Log message: Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. |
| 2014-05-23 22:49:15 by Thomas Klausner | Files touched by this commit (6) |
Log message:
Update gdbm packages to 1.11, after martin@ diagnosed the compilation
problem. Thanks, martin!
Changes:
Version 1.11, 2013-12-25
* Improved dump format.
A new dump format is implemented, which encodes all data in base64 and
stores not only key/data pairs, but also the original database file
metadata, such as file name, mode and ownership. Files in this format
can be sent without additional encapsulation over transmission
channels that normally allow only ASCII data. Dumps in this format
allow for restoring an exact copy of the database, including file
ownership and privileges.
* New function: gdbm_count
int gdbm_count (GDBM_FILE *file, gdbm_count *count);
Counts records in `file' and stores the result in the memory location
pointed to by `count'.
* New utilities: gdbm_dump and gdbm_load.
Gdbm_dump creates a plain-text dump of the GDBM database. This dump
can be used to create an exact copy of the database afterward.
The gdbm_load performs the reverse: given the dump file, it creates a
GDBM database. Apart from native GDBM dump formats, it also understands
the format generated by Berkeley DB db_dump utility. Thus, an easy
way to convert a Berkeley DB database to GDBM is:
db_dump input.db | gdbm_load output.db
* gdbmtool
The gdbmtool utility allows you to examine, modify or create GDBM
databases. It provides an easy-to-use interactive shell and can
be used for scripting. One of the unique features of gdbmtool is that
it allows to define datum structures for key and content parts, similarly
to the C "struct" declarations, and to input and display such
structured data.
|
| 2013-11-23 12:29:36 by OBATA Akio | Files touched by this commit (16) |
Log message: Use find-headers instead of find-files to detect builtin header files. |
| 2013-04-08 13:17:26 by Blue Rats | Files touched by this commit (109) |
Log message: Remove "Trailing empty lines." and/or "Trailing white-space." |
