From owner-cvs-all@FreeBSD.ORG Thu Aug 28 05:33:46 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18FA21065670; Thu, 28 Aug 2008 05:33:46 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 083208FC15; Thu, 28 Aug 2008 05:33:46 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.2/8.14.2) with ESMTP id m7S5Xjfg030284; Thu, 28 Aug 2008 05:33:45 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.2/8.14.1/Submit) id m7S5Xjsi030283; Thu, 28 Aug 2008 05:33:45 GMT (envelope-from kientzle@repoman.freebsd.org) Message-Id: <200808280533.m7S5Xjsi030283@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kientzle@repoman.freebsd.org using -f From: Tim Kientzle Date: Thu, 28 Aug 2008 05:33:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/tar Makefile bsdtar.1 bsdtar.c bsdtar.h config_freebsd.h matching.c read.c subst.c util.c write.c src/usr.bin/tar/test Makefile test_copy.c test_option_T.c test_patterns.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 28 Aug 2008 05:33:46 -0000 kientzle 2008-08-28 05:33:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tar Makefile bsdtar.1 bsdtar.c bsdtar.h config_freebsd.h matching.c read.c util.c write.c usr.bin/tar/test Makefile test_copy.c test_option_T.c Added files: (Branch: RELENG_6) usr.bin/tar subst.c usr.bin/tar/test test_patterns.c Log: SVN rev 182337 on 2008-08-28 05:33:28Z by kientzle MFC r179322: Many features from bsdtar 2.5.4b --numeric-owner -S (sparsify files on extraction) -s (regex filename substitutions) Uses libarchive 'linkify' support to get correct hardlink handling for cpio formats Number of test enhancements. Revision Changes Path 1.24.2.10 +4 -3 src/usr.bin/tar/Makefile 1.29.2.15 +28 -2 src/usr.bin/tar/bsdtar.1 1.63.2.25 +21 -1 src/usr.bin/tar/bsdtar.c 1.23.2.12 +9 -1 src/usr.bin/tar/bsdtar.h 1.1.2.6 +1 -0 src/usr.bin/tar/config_freebsd.h 1.9.2.5 +23 -0 src/usr.bin/tar/matching.c 1.23.2.14 +7 -0 src/usr.bin/tar/read.c 1.4.4.1 +275 -0 src/usr.bin/tar/subst.c (new) 1.3.2.2 +1 -0 src/usr.bin/tar/test/Makefile 1.3.2.2 +108 -82 src/usr.bin/tar/test/test_copy.c 1.3.2.2 +19 -0 src/usr.bin/tar/test/test_option_T.c 1.6.2.1 +47 -0 src/usr.bin/tar/test/test_patterns.c (new) 1.13.2.9 +51 -5 src/usr.bin/tar/util.c 1.41.2.20 +87 -222 src/usr.bin/tar/write.c