From owner-cvs-src@FreeBSD.ORG Wed Apr 6 04:19:30 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFF3F16A4CE; Wed, 6 Apr 2005 04:19:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDFA143D41; Wed, 6 Apr 2005 04:19:30 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j364JUE5004382; Wed, 6 Apr 2005 04:19:30 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j364JUv7004381; Wed, 6 Apr 2005 04:19:30 GMT (envelope-from kientzle) Message-Id: <200504060419.j364JUv7004381@repoman.freebsd.org> From: Tim Kientzle Date: Wed, 6 Apr 2005 04:19:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_private.h archive_read.c archive_read_support_format_iso9660.c archive_read_support_format_tar.c archive_read_support_format_zip.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Apr 2005 04:19:31 -0000 kientzle 2005-04-06 04:19:30 UTC FreeBSD src repository Modified files: lib/libarchive archive_private.h archive_read.c archive_read_support_format_cpio.c archive_read_support_format_iso9660.c archive_read_support_format_tar.c archive_read_support_format_zip.c Log: A number of improvements to ZIP support. * Handles entries with compressed size >2GB (signed/unsigned cleanup) * Handles entries with compressed size >4GB ("ZIP64" extension) * Handles Unix extensions (ctime, atime, mtime, mode, uid, etc) * Format-specific "skip data" override allows ZIP reader to skip entries without decompressing them, which makes "tar -t" a lot faster. * Handles "length-at-end" entries generated by, e.g., "zip -r - foo" Many thanks to: Dan Nelson, who contributed the code and test files for the first three items above and suggested the fourth. Revision Changes Path 1.17 +2 -0 src/lib/libarchive/archive_private.h 1.14 +11 -3 src/lib/libarchive/archive_read.c 1.13 +1 -0 src/lib/libarchive/archive_read_support_format_cpio.c 1.8 +1 -0 src/lib/libarchive/archive_read_support_format_iso9660.c 1.32 +1 -0 src/lib/libarchive/archive_read_support_format_tar.c 1.5 +322 -64 src/lib/libarchive/archive_read_support_format_zip.c