From owner-cvs-all@FreeBSD.ORG Sat May 1 10:05:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11D4E16A4CE; Sat, 1 May 2004 10:05:56 -0700 (PDT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A895243D2F; Sat, 1 May 2004 10:05:55 -0700 (PDT) (envelope-from hmp@freebsd.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i41H5sRb001228; Sat, 1 May 2004 13:05:54 -0400 (EDT) (envelope-from hmp@freebsd.org) Received: from localhost (hmp@localhost)i41H5sdg001225; Sat, 1 May 2004 13:05:54 -0400 (EDT) (envelope-from hmp@freebsd.org) X-Authentication-Warning: fledge.watson.org: hmp owned process doing -bs Date: Sat, 1 May 2004 13:05:54 -0400 (EDT) From: Hiten Pandya X-X-Sender: hmp@fledge.watson.org To: Tim Kientzle In-Reply-To: <200404052112.i35LCUpg004974@repoman.freebsd.org> Message-ID: <20040501130458.N1172@fledge.watson.org> References: <200404052112.i35LCUpg004974@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libarchive Makefile archive.harchive_entry.c archive_entry.h archive_private.h archive_read.3 archive_read.c archive_read_extract.c archive_read_open_fd.c archive_ X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 May 2004 17:05:56 -0000 This is pretty nice stuff! Thanks for your work on this Tim! I ought to give a look at the libarchive and bsdtar code one of these days! Hiten Pandya hmp at freebsd.org On Mon, 5 Apr 2004, Tim Kientzle wrote: :kientzle 2004/04/05 14:12:30 PDT : : FreeBSD src repository : : Modified files: : lib/libarchive Makefile archive.h archive_entry.c : archive_entry.h archive_private.h : archive_read.3 archive_read.c : archive_read_extract.c : archive_read_open_file.c : archive_read_support_compression_none.c : archive_read_support_format_tar.c : archive_write.3 archive_write.c : archive_write_open_file.c : archive_write_set_format_pax.c : Added files: : lib/libarchive archive_read_open_fd.c : archive_write_open_fd.c : Log: : Overhauled ACL support. This makes us compatible : with 'star' ACL handling, though there's still a : bit more work needed in this area. : : Added 'write_open_fd' and 'read_open_fd' to simplify, e.g., : tar's u and r modes. Eliminated old 'write_open_file_position' : as a bad idea. (It required closing/reopening files to : do updates, which led to unpleasant implications.) : : Various other minor fixes, API tweaks, etc.