Codebase list gdbm / fd887e8
Update upstream source from tag 'upstream/1.18.1' Update to upstream version '1.18.1' with Debian dir 2e98c4999e5ad84034d58f054fdc8c0dabaf984f Dmitry Bogatov 5 years ago
40 changed file(s) with 285 addition(s) and 94 deletion(s). Raw diff Collapse all Expand all
0 2018-10-27 Sergey Poznyakoff <gray@gnu.org>
1
2 Version 1.18.1
3
4 2018-10-18 Sergey Poznyakoff <gray@gnu.org>
5
6 Restore backward compatibility with older databases
7
8 * src/gdbmopen.c (validate_header): Silently accept databases with next_block
9 pointing beyond end of file.
10
11 Attempt recovery in case of invalid next_block header field
12
13 * src/gdbmopen.c (validate_header): Return GDBM_NEED_RECOVERY
14 if next_block is invalid.
15 (_gdbm_validate_header): New function.
16 (gdbm_fd_open): Set need_recovery depending on return from validate_header.
17 (gdbm_open): Bail out on invalid value of GDBM_OPENMASK bits.
18 * src/proto.h (_gdbm_validate_header): New proto.
19 * src/recover.c (check_db): Re-validate the header.
20 * src/gdbmtool.c (export_handler): Fix option processing.
21
22 2018-08-31 Sergey Poznyakoff <gray@gnu.org>
23
24 Various bugfixes.
25
26 * compat/dbmopen.c (ndbm_open_dir_file0): Ignore ENOENT.
27 * src/falloc.c (push_avail_block): Free temporary storage no matter
28 what return status.
29 * src/gdbm.h.in (GDBM_FILE_TRUNCATE_ERROR): New error code.
30 * src/gdbmdump.c (_gdbm_dump_ascii): Initialize rc.
31 * src/gdbmerrno.c: Handle new error.code
32 * src/gdbmload.c (gdbm_load_bdb_dump): Initialize rc
33 * src/gdbmopen.c (_gdbm_ftruncate): New function.
34 (gdbm_fd_open): Use _gdbm_ftruncate. Check its return.
35 * src/gdbmseq.c (gdbm_firstkey): Initialize dsize
36 * src/gdbmtool.c (command_generator): Check if cmd is NULL.
37 (shouldn't happen, but anyways).
38 * src/mmap.c (_gdbm_mapped_lseek): Check for vailidity of the 'whence'
39 parameter.
40 * src/systems.h (TRUNCATE): Remove macro.
41 * src/util.c (vgetyn): Remove unnecessary assignment.
42
043 2018-08-21 Sergey Poznyakoff <gray@gnu.org>
144
245 Version 1.18
189189 $(top_srcdir)/build-aux/install-sh \
190190 $(top_srcdir)/build-aux/ltmain.sh \
191191 $(top_srcdir)/build-aux/missing ABOUT-NLS AUTHORS COPYING \
192 ChangeLog INSTALL NEWS README THANKS TODO build-aux/compile \
193 build-aux/config.guess build-aux/config.rpath \
194 build-aux/config.sub build-aux/depcomp build-aux/install-sh \
195 build-aux/ltmain.sh build-aux/mdate-sh build-aux/missing \
196 build-aux/texinfo.tex build-aux/ylwrap
192 ChangeLog INSTALL NEWS README README-alpha THANKS TODO \
193 build-aux/compile build-aux/config.guess \
194 build-aux/config.rpath build-aux/config.sub build-aux/depcomp \
195 build-aux/install-sh build-aux/ltmain.sh build-aux/mdate-sh \
196 build-aux/missing build-aux/texinfo.tex build-aux/ylwrap
197197 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
198198 distdir = $(PACKAGE)-$(VERSION)
199199 top_distdir = $(distdir)
0 GNU dbm NEWS -- history of user-visible changes. 2018-08-21
0 GNU dbm NEWS -- history of user-visible changes. 2018-10-27
11 Copyright (C) 1990-2018 Free Software Foundation, Inc.
22 See the end of file for copying conditions.
33
44 Please send gdbm bug reports to <bug-gdbm@gnu.org>.
5
6 Version 1.18.1 - 2018-10-27
7
8 * Fix debian bug 910911
9
10 This restores backward compatibility with databases created by version
11 1.8 (and some later versions, with mmapped I/O disabled).
12 See https://bugs.debian.org/910911 for a detailed description.
13
514
615 Version 1.18 - 2018-08-21
716
0 This file is part of GDBM.
1 See end of file for copying conditions.
2
3 * Introduction
4
5 This is a *pre-release* version, and not ready for production use yet.
6 If you are taking source from CVS, you will need to have several
7 special tools to help contribute. See the file README-hacking for more
8 information. See chapter `Building' for the detailed instructions on
9 how to build the package.
10
11 Please, note that the accompanying documentation may be inaccurate
12 or incomplete. The ChangeLog file is the authoritative documentation of
13 all recent changes.
14
15 Please, send comments and problem reports to <bug-gdbm@gnu.org>.
16
17 * Checking Out the Sources
18
19 The following instructions apply if you wish to obtain sources from
20 the repository. There are several repositories:
21
22 1. CVS at Puszcza.gnu.org.ua - master repository
23 <https://puszcza.gnu.org.ua/cvs/?group=gdbm>
24 2. Git at Puszcza.gnu.org.ua - slave
25 <http://puszcza.gnu.org.ua/git/?group=gdbm>
26 3. CVS at Savannah.gnu.org - slave
27 <http://savannah.gnu.org/cvs/?group=gdbm>
28 4. Git at Savannah.gnu.org - slave
29 <http://savannah.gnu.org/git/?group=gdbm>
30
31 Slave repositories are synchronized with the master 8 times a day.
32
33 ** CVS
34
35 To checkout the source tree from CVS issue the following command:
36
37 cvs -d:pserver:anonymous@cvs.gnu.org.ua:/cvsroot/gdbm co gdbm
38
39 Or, to checkout the sources from CVS mirror at Savannah, issue the
40 following command:
41
42 cvs -d :pserver:anoncvs@cvs.savannah.gnu.org:/cvsroot/gdbm checkout gdbm
43
44 ** Git
45
46 To clone the Git repository, run:
47
48 git clone git://git.gnu.org.ua/gdbm.git
49
50 Or, to clone the secondary GDBM Git mirrror repo, run:
51
52 git clone git://git.savannah.gnu.org/gdbm.git
53
54 In all cases, this will give you read-only access. If you think you need
55 write access, contact <bug-gdbm@gnu.org>.
56
57 * Building
58
59 Usual procedures apply:
60
61 ./configure
62 make
63 make install
64
65 See the files INSTALL and README for the detailed instructions.
66
67 * Copyright information:
68 Copyright information:
69
70 Copyright (C) 1990-2011, 2017-2018 Free Software Foundation, Inc.
71
72 Permission is granted to anyone to make or distribute verbatim copies
73 of this document as received, in any medium, provided that the
74 copyright notice and this permission notice are preserved,
75 thus giving the recipient permission to redistribute in turn.
76
77 Permission is granted to distribute modified versions
78 of this document, or of portions of it,
79 under the above conditions, provided also that they
80 carry prominent notices stating who last changed them.
81
82 Local variables:
83 mode: outline
84 paragraph-separate: "[ ]*$"
85 end:
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for gdbm 1.18.
2 # Generated by GNU Autoconf 2.69 for gdbm 1.18.1.
33 #
44 # Report bugs to <bug-gdbm@gnu.org>.
55 #
589589 # Identity of this package.
590590 PACKAGE_NAME='gdbm'
591591 PACKAGE_TARNAME='gdbm'
592 PACKAGE_VERSION='1.18'
593 PACKAGE_STRING='gdbm 1.18'
592 PACKAGE_VERSION='1.18.1'
593 PACKAGE_STRING='gdbm 1.18.1'
594594 PACKAGE_BUGREPORT='bug-gdbm@gnu.org'
595595 PACKAGE_URL='http://www.gnu.org/software/gdbm'
596596
13691369 # Omit some internal or obsolete options to make the list less imposing.
13701370 # This message is too long to be a string in the A/UX 3.1 sh.
13711371 cat <<_ACEOF
1372 \`configure' configures gdbm 1.18 to adapt to many kinds of systems.
1372 \`configure' configures gdbm 1.18.1 to adapt to many kinds of systems.
13731373
13741374 Usage: $0 [OPTION]... [VAR=VALUE]...
13751375
14391439
14401440 if test -n "$ac_init_help"; then
14411441 case $ac_init_help in
1442 short | recursive ) echo "Configuration of gdbm 1.18:";;
1442 short | recursive ) echo "Configuration of gdbm 1.18.1:";;
14431443 esac
14441444 cat <<\_ACEOF
14451445
15691569 test -n "$ac_init_help" && exit $ac_status
15701570 if $ac_init_version; then
15711571 cat <<\_ACEOF
1572 gdbm configure 1.18
1572 gdbm configure 1.18.1
15731573 generated by GNU Autoconf 2.69
15741574
15751575 Copyright (C) 2012 Free Software Foundation, Inc.
22322232 This file contains any messages produced by compilers while
22332233 running configure, to aid debugging if configure makes a mistake.
22342234
2235 It was created by gdbm $as_me 1.18, which was
2235 It was created by gdbm $as_me 1.18.1, which was
22362236 generated by GNU Autoconf 2.69. Invocation command line was
22372237
22382238 $ $0 $@
31043104
31053105 # Define the identity of the package.
31063106 PACKAGE='gdbm'
3107 VERSION='1.18'
3107 VERSION='1.18.1'
31083108
31093109
31103110 cat >>confdefs.h <<_ACEOF
32433243
32443244 GDBM_VERSION_MINOR=18
32453245
3246 GDBM_VERSION_PATCH=0
3246 GDBM_VERSION_PATCH=1
32473247
32483248
32493249 # Check whether --enable-memory-mapped-io was given.
1572915729 # report actual input values of CONFIG_FILES etc. instead of their
1573015730 # values after options handling.
1573115731 ac_log="
15732 This file was extended by gdbm $as_me 1.18, which was
15732 This file was extended by gdbm $as_me 1.18.1, which was
1573315733 generated by GNU Autoconf 2.69. Invocation command line was
1573415734
1573515735 CONFIG_FILES = $CONFIG_FILES
1579615796 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1579715797 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1579815798 ac_cs_version="\\
15799 gdbm config.status 1.18
15799 gdbm config.status 1.18.1
1580015800 configured by $0, generated by GNU Autoconf 2.69,
1580115801 with options \\"\$ac_cs_config\\"
1580215802
1616
1717 m4_define([_GDBM_VERSION_MAJOR], 1)
1818 m4_define([_GDBM_VERSION_MINOR], 18)
19 dnl m4_define([_GDBM_VERSION_PATCH], 0)
19 m4_define([_GDBM_VERSION_PATCH], 1)
2020
2121 AC_INIT([gdbm],
2222 _GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH),
309309
310310 .BI "int gdbm_sync (GDBM_FILE " dbf ");"
311311
312 It will not return until the disk file state is synchronized with the
312 It will not return until the disk file state is syncronized with the
313313 in-memory state of the database.
314314
315315 To convert a \fBgdbm\fR error code into English text, use this routine:
Binary diff not shown
00 @set UPDATED 1 July 2018
11 @set UPDATED-MONTH July 2018
2 @set EDITION 1.18
3 @set VERSION 1.18
2 @set EDITION 1.18.1
3 @set VERSION 1.18.1
00 @set UPDATED 1 July 2018
11 @set UPDATED-MONTH July 2018
2 @set EDITION 1.18
3 @set VERSION 1.18
2 @set EDITION 1.18.1
3 @set VERSION 1.18.1
Binary diff not shown
1212 msgstr ""
1313 "Project-Id-Version: gdbm 1.12.90\n"
1414 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
15 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
15 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1616 "PO-Revision-Date: 2017-02-12 11:00+0200\n"
1717 "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
1818 "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
2727 msgid "couldn't init cache"
2828 msgstr "kunne ikke initialisere mellemlager"
2929
30 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
30 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
3131 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
3232 msgid "lseek error"
3333 msgstr "lseek-fejl"
324324
325325 #: src/gdbmerrno.c:141
326326 msgid "Error synchronizing file"
327 msgstr ""
328
329 #: src/gdbmerrno.c:142
330 msgid "Error truncating file"
327331 msgstr ""
328332
329333 #: src/parseopt.c:49
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: gdbm 1.10.90\n"
88 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
9 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
9 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1010 "PO-Revision-Date: 2014-03-07 11:18+0100\n"
1111 "Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>\n"
1212 "Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
2222 msgid "couldn't init cache"
2323 msgstr "Der Zwischenspeicher konnte nicht initialisiert werden"
2424
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2626 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2727 msgid "lseek error"
2828 msgstr "lseek-Fehler"
322322
323323 #: src/gdbmerrno.c:141
324324 msgid "Error synchronizing file"
325 msgstr ""
326
327 #: src/gdbmerrno.c:142
328 msgid "Error truncating file"
325329 msgstr ""
326330
327331 #: src/parseopt.c:49
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: gdbm 1.12.90\n"
88 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
9 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
9 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1010 "PO-Revision-Date: 2017-01-25 12:02-0300\n"
1111 "Last-Translator: Felipe Castro <fefcas@gmail.com>\n"
1212 "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
2222 msgid "couldn't init cache"
2323 msgstr "ne eblis ekigi kaŝmemoron"
2424
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2626 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2727 msgid "lseek error"
2828 msgstr "eraro de lseek"
317317
318318 #: src/gdbmerrno.c:141
319319 msgid "Error synchronizing file"
320 msgstr ""
321
322 #: src/gdbmerrno.c:142
323 msgid "Error truncating file"
320324 msgstr ""
321325
322326 #: src/parseopt.c:49
Binary diff not shown
55 msgstr ""
66 "Project-Id-Version: gdbm 1.12.90\n"
77 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
8 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
8 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
99 "PO-Revision-Date: 2018-04-06 16:34+0200\n"
1010 "Last-Translator: Francisco Javier Serrador <fserrador@gmail.com>\n"
1111 "Language-Team: Spanish <es@tp.org.es>\n"
2222 msgid "couldn't init cache"
2323 msgstr "no se puede iniciar caché"
2424
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2626 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2727 msgid "lseek error"
2828 msgstr "error lseek"
317317
318318 #: src/gdbmerrno.c:141
319319 msgid "Error synchronizing file"
320 msgstr ""
321
322 #: src/gdbmerrno.c:142
323 msgid "Error truncating file"
320324 msgstr ""
321325
322326 #: src/parseopt.c:49
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: gdbm 1.10.90\n"
88 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
9 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
9 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1010 "PO-Revision-Date: 2013-05-20 10:59+0300\n"
1111 "Last-Translator: Jorma Karvonen <karvonen.jorma@gmail.com>\n"
1212 "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
2121 msgid "couldn't init cache"
2222 msgstr "välimuistin alustaminen epäonnistui"
2323
24 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
24 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2525 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2626 msgid "lseek error"
2727 msgstr "lseek-virhe"
321321
322322 #: src/gdbmerrno.c:141
323323 msgid "Error synchronizing file"
324 msgstr ""
325
326 #: src/gdbmerrno.c:142
327 msgid "Error truncating file"
324328 msgstr ""
325329
326330 #: src/parseopt.c:49
Binary diff not shown
00 # French translation of gdbm.
1 # Copyright (C) 2016 Free Software Foundation, Inc.
1 # Copyright (C) 2018 Free Software Foundation, Inc.
22 # This file is distributed under the same license as the gdbm package.
3 # Frédéric Marchal <fmarchal@perso.be>, 2016.
3 # Frédéric Marchal <fmarchal@perso.be>, 2018.
44 #
55 # Je ne désire pas continuer cette traduction. Quiconque voudrait prendre la relève
66 # est le bienvenu.
77 #
88 msgid ""
99 msgstr ""
10 "Project-Id-Version: gdbm 1.12.90\n"
10 "Project-Id-Version: gdbm 1.15\n"
1111 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
12 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
13 "PO-Revision-Date: 2016-08-10 17:41+0200\n"
12 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
13 "PO-Revision-Date: 2018-10-03 20:48+0200\n"
1414 "Last-Translator: Frédéric Marchal <fmarchal@perso.be>\n"
1515 "Language-Team: French <traduc@traduc.org>\n"
1616 "Language: fr\n"
1818 "Content-Type: text/plain; charset=UTF-8\n"
1919 "Content-Transfer-Encoding: 8bit\n"
2020 "X-Bugs: Report translation errors to the Language-Team address.\n"
21 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
21 "Plural-Forms: nplurals=2; plural=(n >= 2);\n"
2222
2323 #: src/bucket.c:90 src/bucket.c:249
2424 msgid "couldn't init cache"
2525 msgstr "La cache n'a pas pu être initialisée"
2626
27 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
27 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2828 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2929 msgid "lseek error"
3030 msgstr "Erreur lseek"
251251
252252 #: src/gdbmerrno.c:125
253253 msgid "File header assumes wrong off_t size"
254 msgstr ""
254 msgstr "L'en-tête du fichier suppose la mauvaise taille off_t"
255255
256256 #: src/gdbmerrno.c:126
257257 msgid "Bad file flags"
291291
292292 #: src/gdbmerrno.c:135
293293 msgid "Malformed bucket header"
294 msgstr ""
294 msgstr "En-tête de compartiment mal formé"
295295
296296 #: src/gdbmerrno.c:136
297 #, fuzzy
298297 msgid "Malformed database file header"
299 msgstr "afficher l'en-tête du fichier de base de données"
298 msgstr "L'en-tête du fichier de base de données est mal formé"
300299
301300 #: src/gdbmerrno.c:137
302301 msgid "Malformed avail_block"
303 msgstr ""
302 msgstr "avail_block mal formé"
304303
305304 #: src/gdbmerrno.c:138
306305 msgid "Malformed hash table"
307 msgstr ""
306 msgstr "Table de hachage mal formée"
308307
309308 #: src/gdbmerrno.c:139
310 #, fuzzy
311309 msgid "Invalid directory entry"
312 msgstr ""
313 "\n"
314 " entrée du répertoire courant = %d.\n"
310 msgstr "Entrée de répertoire invalide"
315311
316312 #: src/gdbmerrno.c:140
317313 msgid "Error closing file"
319315
320316 #: src/gdbmerrno.c:141
321317 msgid "Error synchronizing file"
318 msgstr ""
319
320 #: src/gdbmerrno.c:142
321 msgid "Error truncating file"
322322 msgstr ""
323323
324324 #: src/parseopt.c:49
448448
449449 #: src/gdbmtool.c:319
450450 msgid "invalid avail_block"
451 msgstr ""
451 msgstr "avail_block invalide"
452452
453453 #: src/gdbmtool.c:334
454 #, fuzzy, c-format
454 #, c-format
455455 msgid ""
456456 "Bucket Cache (size %zu):\n"
457457 " Index: Address Changed Data_Hash \n"
458458 msgstr ""
459459 "Cache compartimentée (taille %zu):\n"
460 " Index: Adresse Changé Data_Hash \n"
460 " Index: Adresse Changé Data_Hash \n"
461461
462462 #: src/gdbmtool.c:342
463463 msgid "True"
502502 msgstr "Ne peut récupérer les données: %s"
503503
504504 #: src/gdbmtool.c:491
505 #, fuzzy, c-format
505 #, c-format
506506 msgid "Item not inserted: %s."
507 msgstr "Élément pas inséré."
507 msgstr "Élément pas inséré: %s."
508508
509509 #: src/gdbmtool.c:514
510510 #, c-format
543543 #: src/gdbmtool.c:651
544544 #, c-format
545545 msgid "Keys recovered: %lu, failed: %lu, duplicate: %lu\n"
546 msgstr ""
546 msgstr "Clés récupérées: %lu, échouées: %lu, dupliquées: %lu\n"
547547
548548 #: src/gdbmtool.c:656
549549 #, c-format
550550 msgid "Buckets recovered: %lu, failed: %lu\n"
551 msgstr ""
551 msgstr "Compartiments récupérés: %lu, échoués: %lu\n"
552552
553553 #: src/gdbmtool.c:664
554554 #, c-format
685685 #: src/gdbmtool.c:938
686686 #, c-format
687687 msgid "%s; the key was:"
688 msgstr ""
688 msgstr "%s; la clé était:"
689689
690690 #: src/gdbmtool.c:991
691691 #, c-format
900900
901901 #: src/gdbmtool.c:1539
902902 msgid "DBFILE [COMMAND [ARG ...]]"
903 msgstr ""
903 msgstr "DBFILE [COMMANDE [ARG ...]]"
904904
905905 #: src/gdbmtool.c:1547 src/gdbmtool.c:1548
906906 msgid "SIZE"
948948
949949 #: src/gdbmtool.c:1559
950950 msgid "enable lexical analyzer traces"
951 msgstr ""
951 msgstr "activer les traces de l'analyseur lexical"
952952
953953 #: src/gdbmtool.c:1560
954954 msgid "enable grammar traces"
955 msgstr ""
955 msgstr "activer les traces de la grammaire"
956956
957957 #: src/gdbmtool.c:1831
958958 #, c-format
988988 msgstr "option inconnue; essayez « %s -h » pour obtenir plus d'informations"
989989
990990 #: src/gdbmtool.c:2165
991 #, fuzzy
991992 msgid "--file and command cannot be used together"
992 msgstr ""
993 msgstr "--file et la commande « and » ne peuvent pas être utilisés ensembles"
993994
994995 #: src/gdbmtool.c:2187
995996 #, c-format
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: gdbm 1.18\n"
8 "Project-Id-Version: gdbm 1.18.1\n"
99 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
10 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
10 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
2121 msgid "couldn't init cache"
2222 msgstr ""
2323
24 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
24 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2525 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2626 msgid "lseek error"
2727 msgstr ""
312312
313313 #: src/gdbmerrno.c:141
314314 msgid "Error synchronizing file"
315 msgstr ""
316
317 #: src/gdbmerrno.c:142
318 msgid "Error truncating file"
315319 msgstr ""
316320
317321 #: src/parseopt.c:49
Binary diff not shown
77 msgstr ""
88 "Project-Id-Version: gdbm 1.10\n"
99 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
10 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
10 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1111 "PO-Revision-Date: 2012-03-24 22:08+0900\n"
1212 "Last-Translator: Takeshi Hamasaki <hmatrjp@users.sourceforge.jp>\n"
1313 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
2222 msgid "couldn't init cache"
2323 msgstr "キャッシュを初期化できませんでした"
2424
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2626 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2727 msgid "lseek error"
2828 msgstr "lseek エラーです"
323323
324324 #: src/gdbmerrno.c:141
325325 msgid "Error synchronizing file"
326 msgstr ""
327
328 #: src/gdbmerrno.c:142
329 msgid "Error truncating file"
326330 msgstr ""
327331
328332 #: src/parseopt.c:49
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: gdbm 1.15\n"
88 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
9 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
9 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1010 "PO-Revision-Date: 2018-06-22 16:32+0200\n"
1111 "Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
1212 "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
2222 msgid "couldn't init cache"
2323 msgstr "nie udało się zainicjować bufora"
2424
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2626 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2727 msgid "lseek error"
2828 msgstr "błąd lseek"
313313
314314 #: src/gdbmerrno.c:141
315315 msgid "Error synchronizing file"
316 msgstr ""
317
318 #: src/gdbmerrno.c:142
319 msgid "Error truncating file"
316320 msgstr ""
317321
318322 #: src/parseopt.c:49
Binary diff not shown
55 msgstr ""
66 "Project-Id-Version: gdbm 1.15\n"
77 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
8 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
8 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
99 "PO-Revision-Date: 2018-06-22 11:41-0200\n"
1010 "Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
1111 "Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge."
2222 msgid "couldn't init cache"
2323 msgstr "não foi possível inicializar o cache"
2424
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2626 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2727 msgid "lseek error"
2828 msgstr "erro no lseek"
314314
315315 #: src/gdbmerrno.c:141
316316 msgid "Error synchronizing file"
317 msgstr ""
318
319 #: src/gdbmerrno.c:142
320 msgid "Error truncating file"
317321 msgstr ""
318322
319323 #: src/parseopt.c:49
Binary diff not shown
55 msgstr ""
66 "Project-Id-Version: gdbm-1.12.90\n"
77 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
8 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
8 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
99 "PO-Revision-Date: 2016-12-05 19:03+0200\n"
1010 "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
1111 "Language-Team: Serbian <(nothing)>\n"
2121 msgid "couldn't init cache"
2222 msgstr "не могу да покренем оставу"
2323
24 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
24 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2525 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2626 msgid "lseek error"
2727 msgstr "грешка премотавања реда"
316316
317317 #: src/gdbmerrno.c:141
318318 msgid "Error synchronizing file"
319 msgstr ""
320
321 #: src/gdbmerrno.c:142
322 msgid "Error truncating file"
319323 msgstr ""
320324
321325 #: src/parseopt.c:49
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: gdbm 1.12.90\n"
88 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
9 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
9 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1010 "PO-Revision-Date: 2017-07-24 12:58+0200\n"
1111 "Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"
1212 "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
2222 msgid "couldn't init cache"
2323 msgstr "det gick inte att initiera cache"
2424
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
25 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2626 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2727 msgid "lseek error"
2828 msgstr "lseek-fel"
318318
319319 #: src/gdbmerrno.c:141
320320 msgid "Error synchronizing file"
321 msgstr ""
322
323 #: src/gdbmerrno.c:142
324 msgid "Error truncating file"
321325 msgstr ""
322326
323327 #: src/parseopt.c:49
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: gdbm 1.15\n"
88 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
9 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
9 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1010 "PO-Revision-Date: 2018-06-22 09:06+0200\n"
1111 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
1212 "Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
2323 msgid "couldn't init cache"
2424 msgstr "не вдалося ініціалізувати кеш"
2525
26 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
26 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2727 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
2828 msgid "lseek error"
2929 msgstr "помилка lseek"
316316
317317 #: src/gdbmerrno.c:141
318318 msgid "Error synchronizing file"
319 msgstr ""
320
321 #: src/gdbmerrno.c:142
322 msgid "Error truncating file"
319323 msgstr ""
320324
321325 #: src/parseopt.c:49
Binary diff not shown
88 msgstr ""
99 "Project-Id-Version: gdbm 1.15\n"
1010 "Report-Msgid-Bugs-To: bug-gdbm@gnu.org\n"
11 "POT-Creation-Date: 2018-08-21 13:34+0300\n"
11 "POT-Creation-Date: 2018-10-27 08:55+0300\n"
1212 "PO-Revision-Date: 2018-06-22 13:49+0700\n"
1313 "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
1414 "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
2525 msgid "couldn't init cache"
2626 msgstr "không thể khởi tạo nhớ bộ đệm"
2727
28 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:326
28 #: src/bucket.c:119 src/bucket.c:445 src/falloc.c:197 src/falloc.c:333
2929 #: src/findkey.c:112 src/gdbmstore.c:169 src/update.c:37 src/update.c:101
3030 msgid "lseek error"
3131 msgstr "lỗi lseek"
316316
317317 #: src/gdbmerrno.c:141
318318 msgid "Error synchronizing file"
319 msgstr ""
320
321 #: src/gdbmerrno.c:142
322 msgid "Error truncating file"
319323 msgstr ""
320324
321325 #: src/parseopt.c:49
2323 The DIST_DATE magic below is replaced by the actual date when
2424 making the distdir. */
2525 const char * gdbm_version = "GDBM version " PACKAGE_VERSION ". "
26 "21/08/2018"
26 "27/10/2018"
2727 #if defined(__STDC__) && defined(__DATE__) && defined(__TIME__)
2828 " (built " __DATE__ " " __TIME__ ")"
2929 #endif
00 # Signature of the current package.
11 m4_define([AT_PACKAGE_NAME], [gdbm])
22 m4_define([AT_PACKAGE_TARNAME], [gdbm])
3 m4_define([AT_PACKAGE_VERSION], [1.18])
3 m4_define([AT_PACKAGE_VERSION], [1.18.1])
44 m4_define([AT_PACKAGE_VERSION_MAJOR], [1])
55 m4_define([AT_PACKAGE_VERSION_MINOR], [18])
6 m4_define([AT_PACKAGE_VERSION_PATCH], [0])
7 m4_define([AT_PACKAGE_STRING], [gdbm 1.18])
6 m4_define([AT_PACKAGE_VERSION_PATCH], [1])
7 m4_define([AT_PACKAGE_STRING], [gdbm 1.18.1])
88 m4_define([AT_PACKAGE_BUGREPORT], [bug-gdbm@gnu.org])
930930 # List of tests.
931931 if $at_list_p; then
932932 cat <<_ATEOF || at_write_fail=1
933 gdbm 1.18 test suite test groups:
933 gdbm 1.18.1 test suite test groups:
934934
935935 NUM: FILE-NAME:LINE TEST-GROUP-NAME
936936 KEYWORDS
971971 exit $at_write_fail
972972 fi
973973 if $at_version_p; then
974 $as_echo "$as_me (gdbm 1.18)" &&
974 $as_echo "$as_me (gdbm 1.18.1)" &&
975975 cat <<\_ATEOF || at_write_fail=1
976976
977977 Copyright (C) 2012 Free Software Foundation, Inc.
11651165 exec 5>>"$at_suite_log"
11661166
11671167 # Banners and logs.
1168 $as_echo "## --------------------- ##
1169 ## gdbm 1.18 test suite. ##
1170 ## --------------------- ##"
1168 $as_echo "## ----------------------- ##
1169 ## gdbm 1.18.1 test suite. ##
1170 ## ----------------------- ##"
11711171 {
1172 $as_echo "## --------------------- ##
1173 ## gdbm 1.18 test suite. ##
1174 ## --------------------- ##"
1172 $as_echo "## ----------------------- ##
1173 ## gdbm 1.18.1 test suite. ##
1174 ## ----------------------- ##"
11751175 echo
11761176
11771177 $as_echo "$as_me: command line was:"
20142014 $as_echo "Please send $at_msg and all information you think might help:
20152015
20162016 To: <bug-gdbm@gnu.org>
2017 Subject: [gdbm 1.18] $as_me: $at_fail_list${at_fail_list:+ failed${at_xpass_list:+, }}$at_xpass_list${at_xpass_list:+ passed unexpectedly}
2017 Subject: [gdbm 1.18.1] $as_me: $at_fail_list${at_fail_list:+ failed${at_xpass_list:+, }}$at_xpass_list${at_xpass_list:+ passed unexpectedly}
20182018
20192019 You may investigate any problem if you feel able to do so, in which
20202020 case the test suite provides a good starting point. Its output may
20452045 at_status=$? at_failed=false
20462046 $at_check_filter
20472047 at_fn_diff_devnull "$at_stderr" || at_failed=:
2048 echo >>"$at_stdout"; $as_echo "1.18.0
2049 1.18.0
2048 echo >>"$at_stdout"; $as_echo "1.18.1
2049 1.18.1
20502050 " | \
20512051 $at_diff - "$at_stdout" || at_failed=:
20522052 at_fn_check_status 0 $at_status "$at_srcdir/version.at:19"