X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=ChangeLog;h=ca70033f4583da90980def9133d95877dac42750;hb=8b107d09e114448a35739fe9ed7b159f24bccee8;hp=8190e13a2c3687bef49600e4dcb3c58f5f54ef01;hpb=b741d17b27e812f84a89655897a505ccba8d0d7f;p=chaz%2Ftar diff --git a/ChangeLog b/ChangeLog index 8190e13..ca70033 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,168 @@ +2004-02-15 Paul Eggert + + Fix Debian bug 230872, originally reported by Jeff King in + . + + * doc/tar.texi (posix compliance): Remove. The whole section + was a misunderstanding of what POSIXLY_CORRECT is supposed to + mean. The GNU Coding Standards says that POSIXLY_CORRECT + is for disabling extensions that are incompatible with POSIX: + it is not for disabling compatible extensions. All references + to this section removed. + (posix): This format is created only if the posix format is + specified; it is no longer created if gnu format is specified + and POSIXLY_CORRECT is set. + * src/tar.c (decode_options): Ignore POSIXLY_CORRECT. + POSIX does not specify the behavior of tar, so we should + not worry about POSIXLY_CORRECT here. + +2004-01-21 Sergey Poznyakoff + + * Makefile.am: Removed m4 + * configure.ac: Require automake-1.8/autoconf-2.59. Removed + m4/Makefile. + * README-alpha: Updated + * bootstrap: Updated TP URL, improved help output. Default + to :ext:anoncvs and set CVS_RSH, unless already set. + * m4/Makefile.am: Removed + +2004-01-21 Sergey Poznyakoff + + * bootstrap: Bugfix by Marco Gerards : + Use $option instead of $1 so all options will be parsed. + +2004-01-04 Sergey Poznyakoff + + Started rewriting buffer.c ... + + * bootstrap: New option --no-po + * src/buffer.c (new_volume,check_label_pattern): Changed return type. + (time_to_start_writing): Changed data type + (file_to_switch_to): Removed. Variable never assigned to. + (open_archive) Moved option compatibility checks to tar.c + Other minor changes. + * src/common.h (maybe_backup_file): Changed return type + * src/misc.c: Likewise. + * src/create.c: Updated invocations of safer_name_suffix + * src/extract.c: Likewise + * src/delete.c: Updated assignment to write_archive_to_stdout + * src/tar.c (decode_options): More option compatibility checks + (moved from buffer.c) + * src/update.c (time_to_start_writing): Changed data type. + * tests/recurse.sh: New test case. + * tests/mksparse.c: New file. + * tests/Makefile.am: Added recurse.sh and mksparse.c + +2004-01-02 Sergey Poznyakoff + + * src/sparse.c (sparse_diff_file): Bugfix. Thanks + Martin Simmons for the patch. + * src/create.c (dump_dir0): Bugfix. Thanks Piotr Czerwinski + for the patch. + +2003-12-26 Paul Eggert + + Synchronize with Gettext 0.13.1, Automake 1.8, Autoconf 2.59, + and translation website. + + * bootstrap: Don't bother skipping codeset.m4, glibc21.m4, + intdiv0.m4, inttypes_h.m4, inttypes.m4, inttypes-pri.m4, + isc-posix.m4, and lcmessage.m4 from gnulib. This list of files is + a bit obsolete anyway, now that gettext 0.13.1 is out. Also, the + files are replaced by autoreconf. Also, there seems to be a bug + in gettext/autoconf/automake if we try to omit these files after + autoreconf has replaced them, even though the gettext manual says + they're optional. So give up and just include them for now, even + though they make 'configure' longer and slower. + + Change translation URL from + to + to + accommodate translator website revamp. + + Fail if autoreconf fails. + + * m4/.cvsignore: Add intmax.m4, longdouble.m4, printf-posix.m4, + signed.m4, size_max.m4, wchar_t.m4, wint_t.m4, xsize.m4, to + ignore files now supplied by gettext 0.13.1. + +2003-12-25 Sergey Poznyakoff + + Synchronized with the backup repository on Mirddin + +2003-12-19 Sergey Poznyakoff + + * configure.ac: Check for varios members of struct stat + that may represent file modification times with a subsecond + precision. + Check for utimes (for future use) + * src/buffer.c (short_read): Issue a warning on short reads. + * src/common.h (sys_stat_nanoseconds): New function + * src/create.c (dump_file0): Use sys_stat_nanoseconds(). + * src/list.c (read_and): Treat only two successive zero + filled blocks as an EOF indicator. Issue a warning if + a single one is encountered. + * src/system.c (sys_stat_nanoseconds): New function + * src/tar.h (tar_stat_info.atime_nsec,mtime_nsec,ctime_nsec): New + members. + * src/xheader.c (code_time,decode_time): Support for subsecond + precision. + (atime_coder,atime_decoder,ctime_coder,ctime_decoder) + (mtime_coder,mtime_decoder): Update invocations of code_time and + decode_time. + (gid_decoder,size_decoder,uid_decoder,sparse_size_decoder) + (sparse_numblocks_decoder,sparse_offset_decoder) + (sparse_numbytes_decoder): Updated + +2003-12-18 Sergey Poznyakoff + + * src/names.c (safer_name_suffix): Reverted change made + 2003-11-14. Reason: Discussion with Paul Eggert and + Jean-Louis Martineau. See also ChangeLog entry from + 1999-08-14. + * tests/delete03.sh: Likewise. + * tests/extrac04.sh: Likewise. + * tests/multiv01.sh: Likewise. + +2003-12-12 Sergey Poznyakoff + + * src/incremen.c (write_directory_file): Use sys_truncate + * src/list.c (print_header): Use archive_file_size member + when printing real file size. + * src/sparse.c (sparse_scan_file): Correctly handle files with + a hole at the end. + (sparse_dump_region,sparse_extract_region): Allow for zero size + trailing blocks + +2003-12-12 Sergey Poznyakoff + + * configure.ac: Raised version number to 1.13.92 + * src/list.c (decode_header): Discern between pax and ustar + formats + Initialize current_stat_info.archive_file_size. + + NOTE: Modifications from this date on are temporarily + stored on local CVS on mirddin. This repository will + be synchronized with Savannah as soon as the latter + becomes operational again. + +2003-12-01 Sergey Poznyakoff + + * TODO: Updated + * src/sparse.c: Initial implementation of GNU/pax sparse + file format. + * src/common.h (xheader_store): Changed prototype. + * src/create.c: Update calls to xheader_store + * src/extract.c (extract_archive): Check reported size vs. + archive file size to determine if we have to do with a + sparse file. + * src/tar.c (usage): Cleaned up the sample argument to --newer + option. + (decode_options): Allow --sparse for POSIX_FORMAT archives. + * src/xheader.c (struct xhdr_tab.coder; all coder function): Added + extra argument + Implemented GNU.sparse.* keywords. + 2003-11-30 Sergey Poznyakoff * configure.ac: Check for setlocale. Thanks Bruno Haible for @@ -28,9 +193,9 @@ 2003-11-16 Sergey Poznyakoff Rewritten sparse file handling. - + * src/sparse.c: New file. Provides a universal framework - for various methods for sparse files handling. + for various methods for sparse files handling. * src/Makefile.am: Added sparse.c * src/common.h (struct sp_array,sparsearray,sp_array_size) (init_sparsearray,fill_in_sparse_array): Removed @@ -56,16 +221,16 @@ diagnostics functions. * src/incremen.c: Use new diagnostics functions. * src/names.c: Likewise. - + 2003-11-14 Sergey Poznyakoff * configure.ac: Fixed check for setsockopt * src/create.c: Do not zero-terminate name field if - the name is exactly 100 characters long. + the name is exactly 100 characters long. (write_ustar_long_name): Fixed cheking for unsplittable names. - + 2003-11-14 Sergey Poznyakoff * src/create.c (start_header): Removed debugging hook @@ -95,7 +260,7 @@ * src/xheader.c (atime_decoder,gid_decoder,ctime_decoder) (mtime_decoder,size_decoder,uid_decoder): Use xstrtoumax. Fixes `pax-big-10g' bug. - + 2003-11-12 Paul Eggert Fix some C compatibility bugs reported by Joerg Schilling. @@ -112,7 +277,7 @@ (DEFAULT_ST_BLKSIZE): New macro. (ST_BLKSIZE): Use it, instead of DEV_BSIZE. * src/tar.c (enum): Remove comma just before }. - + 2003-11-12 Sergey Poznyakoff * src/list.c (decode_header): Initialize st_atime and @@ -157,7 +322,7 @@ * src/system.h [MSDOS]: Fixed spelling of EACCES. Added macro overriding broken mkdir prototypes. -2003-10-04 Sergey Poznyakoff +2003-10-04 Sergey Poznyakoff * configure.ac: Check for dev_t and ino_t. * m4/Makefile.am: Added missing files. @@ -171,11 +336,11 @@ * src/delete.c: Likewise. * src/extract.c: Likewise. * src/rtapelib.c: Likewise. - -2003-10-04 Sergey Poznyakoff + +2003-10-04 Sergey Poznyakoff Implemented --occurrence option. - + * NEWS: Updated. * src/tar.c: New option --occurrence. * src/common.h (occurrence_option): New global @@ -193,12 +358,12 @@ (names_done): Removed (all_names_found,names_notfound): Rewritten. -2003-10-02 Sergey Poznyakoff +2003-10-02 Sergey Poznyakoff * src/tar.c: Removed extra precaution regarding subcommand_option == CAT_SUBCOMMAND * lib/Makefile.am: Updated - + 2003-10-02 Sergey Poznyakoff * src/common.h (names_done): New function. @@ -207,7 +372,7 @@ condition. * src/tar.c: New option --first-copy * NEWS: Updated - + 2003-09-24 Paul Eggert * src/rmt.c (main): Don't translate Copyright string; international @@ -4401,8 +4566,9 @@ See ChangeLog.1 for earlier changes. -Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003 Free Software Foundation, -Inc. + +Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004 Free Software +Foundation, Inc. This file is part of GNU tar.