From owner-cvs-all@FreeBSD.ORG Mon Apr 5 14:12:36 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 9E06116A4CE; Mon, 5 Apr 2004 14:12:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8060A43D1F; Mon, 5 Apr 2004 14:12:36 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i35LCUGe004975; Mon, 5 Apr 2004 14:12:30 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i35LCUpg004974; Mon, 5 Apr 2004 14:12:30 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404052112.i35LCUpg004974@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 5 Apr 2004 14:12:30 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile archive.h archive_entry.c archive_entry.h archive_private.h archive_read.3 archive_read.c archive_read_open_file.c archive_read_support_format_tar.c archive_write.3 ... 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: Mon, 05 Apr 2004 21:12:36 -0000 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. Revision Changes Path 1.5 +8 -5 src/lib/libarchive/Makefile 1.6 +3 -3 src/lib/libarchive/archive.h 1.4 +696 -51 src/lib/libarchive/archive_entry.c 1.3 +64 -6 src/lib/libarchive/archive_entry.h 1.4 +16 -0 src/lib/libarchive/archive_private.h 1.3 +18 -0 src/lib/libarchive/archive_read.3 1.4 +12 -11 src/lib/libarchive/archive_read.c 1.4 +121 -48 src/lib/libarchive/archive_read_extract.c 1.1 +93 -0 src/lib/libarchive/archive_read_open_fd.c (new) 1.3 +8 -1 src/lib/libarchive/archive_read_open_file.c 1.3 +1 -0 src/lib/libarchive/archive_read_support_compression_none.c 1.6 +4 -2 src/lib/libarchive/archive_read_support_format_tar.c 1.2 +14 -12 src/lib/libarchive/archive_write.3 1.4 +1 -0 src/lib/libarchive/archive_write.c 1.1 +121 -0 src/lib/libarchive/archive_write_open_fd.c (new) 1.4 +10 -19 src/lib/libarchive/archive_write_open_file.c 1.5 +20 -8 src/lib/libarchive/archive_write_set_format_pax.c