]> Dogcows Code - chaz/tar/blobdiff - ChangeLog
* NEWS: --version now outputs copyright etc., to conform to the
[chaz/tar] / ChangeLog
index 8301e93a38e3fa9f3480b7d72dfa73c85bc2e3b5..e353e5288458f2de34e3ed75b426c0d160f57647 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,198 @@
+2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * NEWS: --version now outputs copyright etc., to conform to the
+       GNU coding standards.  Remove --license.
+       * gnulib.modules: Add version-etc-fsf.
+       * doc/tar.texi: Document the change.
+       * lib/.cvsignore: Add version-etc-fsf.c, version-etc.c, version-etc.h.
+       * scripts/Makefile.am (SED_CMD): Update PAKCAGE_NAME, not PACKAGE.
+       * scripts/backup.in: Remove --license.  Change --version to conform
+       to GCS.
+       * scripts/restore.in: Likewise.
+       * scripts/backup.sh.in (license): Output briefer license in the
+       style of coreutils, for consistency with other changes.
+       * src/tar.c: Include <version-etc.h>.
+       (LICENSE_OPTION): Remove.
+       (options): Remove --license.
+       (license): Remove.
+       (parse_opt): Use version_etc instead of rolling it ourselves.
+       Remove --license.
+       * tests/version.at (tar --version): Check only the first line of
+       output.
+
+       * ChangeLog, NEWS, src/common.h, src/extract.c, src/incremen.c:
+       * src/list.c, src/names.c, src/tar.h, src/xheader.c:
+       Update copyright year to 2006.
+
+2006-02-07  Jim Meyering  <jim@meyering.net>
+
+        * src/xheader.c (sparse_map_decoder): Fix misleading diagnostic.
+
+2006-01-31  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * src/common.h (get_gnu_dumpdir): Remove prototype
+       (is_dumpdir): New function
+       * src/extract.c (prepare_to_extract): Use is_dumpdir member to
+       check for dumpdirs.
+       * src/incremen.c (get_gnu_dumpdir): Static
+       (is_dumpdir): New function
+       (purge_directory): Use is_dumpdir
+       * src/list.c (list_archive): Use is_dumpdir
+       Do not wrap skip_member in mv_begin/mv_end, the function itself
+       takes care of it.
+       (decode_header): Set stat_info->is_dumpdir
+       (skip_member): Do nothing if skipped is true
+       * src/tar.h (struct tar_stat_info): New members is_dumpdir and skipped.
+
+2006-01-22  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * src/tar.c (decode_options): Refuse using --delete with
+       compression options.
+
+2006-01-18  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * NEWS: Updated.
+       * configure.ac (DEFAULT_QUOTING_STYLE): New configuration variable
+       * doc/tar.texi: Initial documentation for --quoting-style,
+       --quote-chars and --no-quote-chars option.
+       * src/tar.c: Implement new options --quoting-style, --quote-chars
+       and --no-quote-chars.
+
+2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * bootstrap: Default to pserver, and switch to cvs.sv.gnu.org,
+       to accommodate recent changes to the GNU CVS server.
+       * lib/.cvsignore: Add argp-pin.c, mkdirat.c, openat-priv.h.
+
+2005-12-14  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * src/names.c (name_scan): Take an additional argument requesting
+       exact matching.
+       * src/common.h (name_scan): Change prototype.
+       * src/delete.c, src/incremen.c, src/update.c: Update invocations
+       of name_scan.
+
+2005-12-13  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * src/common.h (struct name): New member `explicit'. Remove unused
+       member `isdir'.
+       * src/incremen.c (procdir): If name_scan() returns something,
+       check if it was explicitely given in the command line
+       * src/names.c (addname,add_hierarchy_to_namelist): Initialize
+       explicit member appropriately.
+
+       * src/incremen.c (procdir): If --one-file-system is given and a
+       directory is found to be on another device, *and* this directory
+       is explicitely given in the command line, then do not omit it.
+
+2005-12-11  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * NEWS: Update
+       * doc/tar.texi: Document --delay-directory-restore option.
+       (Configuring Help Summary): Document usage of ARGP_HELP_FMT
+       variable to customize help output.
+       * src/common.h (delay_directory_restore_option): New global.
+       * src/extract.c (directories_first): Replaced by
+       delay_directory_restore_option. All uses changed.
+       * src/tar.c (options,parse_opt): New options
+       --delay-directory-restore and --no-delay-directory-restore
+
+2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * src/buffer.c (open_archive): Add default case to shut up gcc.
+       * src/common.h (set_file_atime): Add prototype.
+       * src/create.c (to_chars_subst): Remove unused variable
+       Make sure useful result code is returned.
+       * src/incremen.c (read_directory_file): Fix format string
+       Thanks Eric Blake for reporting.
+
+2005-12-08  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * doc/tar.texi (Current status): Renamed to 'Changes' and moved to
+       appendices.
+       (Large or Negative Values): Rewritten
+       * src/common.h (gid_to_chars, major_to_chars, minor_to_chars)
+       (mode_to_chars, off_to_chars, size_to_chars, time_to_chars)
+       (uid_to_chars, uintmax_to_chars): Return bool
+       * src/create.c (gid_to_chars, major_to_chars, minor_to_chars)
+       (mode_to_chars, off_to_chars, size_to_chars, time_to_chars)
+       (uid_to_chars, uintmax_to_chars): Return bool
+       (to_chars): Return bool
+       (start_header): Check return values of convertion routines. Fail
+       if unable to store data in the header.
+
+2005-12-07  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * doc/tar.texi: Following the discussion with Karl Berry,
+       discontinue using @value{} substitutions for Texinfo commands.
+       Properly index all long options. Print a
+       separate long option index.
+       * doc/value.texi: Remove @set's
+
+       * doc/tar.texi: Update --info-script documentation
+       Resolve some more FIXMEs.
+       * scripts/dump-remind.in: Use TAR_VOLUME instead of reading volno
+       file.
+       * src/buffer.c (new_volume): Update invocation
+       (change_tape_menu): New function. Disable '!' command if given
+       --restrict option.
+       * src/common.h (sys_exec_info_script): Update declaration
+       (restrict_option): New global
+       * src/system.c (sys_exec_info_script): The script can supply new
+       archive name to use by writing it to file descriptor 3.
+       * src/tar.c (options): Add --restrict option. Use macros for
+       option grouping.
+       (license): Print full list of copyright years
+       * NEWS: Update
+
+2005-12-06  Eric Blake  <ebb9@byu.net> (trivial changes)
+
+       * configure.ac (DENSITY_LETTER): Fix m4 overquoting.
+       * .cvsignore: Ignore .bootstrap.
+
+2005-12-06  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * doc/tar.texi: Document --to-command and --info-script
+       options. Add missing xrefs.
+       * src/buffer.c (new_volume): Use sys_exec_info_script() instead of
+       system().
+       * src/common.h (archive_format_string,subcommand_string)
+       (sys_exec_info_script): New prototypes.
+       * src/system.c (sys_exec_info_script): New function.
+       * src/tar.c (archive_format_string): Remove static qualifier.
+       (subcommand_string): New function.
+
+2005-12-01  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+       * src/extract.c: Fix restoring of directory timestamps from
+       incremental archives.
+       (directories_first): New variable.
+       (prepare_to_extract): Set directories_first
+       (extract_archive): Call apply_nonancestor_delayed_set_stat() only
+       if not extracting from an incremental archive
+       (extract_dir): Obtain root_device here, to make sure it works
+       correctly with -C.
+
+       * src/incremen.c (purge_directory): Skip the member and return if
+       the archive is not in incremental format.
+       * tests/incr02.at: New testcase
+       * tests/Makefile.am: Add incr02.at
+       * tests/testsuite.at: Likewise
+
+       * THANKS: Add Guerkan Karaman.
+       * NEWS: Update
+
+2005-11-30  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * doc/tar.texi (Option Summary): Rewrite the
+       --atime-preserve=system description in response to Ian Turner's
+       proposed patch.
+
+2005-11-30  Ian Turner  <ian@zmanda.com>
+
+       * doc/tar.texi (Extracting Specific Files): Remove obsolescent
+       FIXME.
+
 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
 
        * NEWS: New option --atime-preserve=system, which uses O_NOATIME.
        Do not reset atime if mtime has changed.  Report an error if
        we cannot reset atime.
 
+       * lib/.cvsignore: Add malloc.h, regcomp.c, regex.c, regex.h,
+       regex_internal.c, regex_internal.h, regexc.c; used by rpmatch.
+
 2005-11-29  Ian Turner  <ian@zmanda.com>
 
        First cut at adding support for --atime-preserve=system.
@@ -6948,8 +7146,8 @@ See ChangeLog.1 for earlier changes.
 
 
 \f
-Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software
-Foundation, Inc.
+Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006
+Free Software Foundation, Inc.
 
 This file is part of GNU tar.
 
This page took 0.023529 seconds and 4 git commands to generate.