From owner-cvs-src-old@FreeBSD.ORG Sun Feb 7 02:00:49 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15F6B1065679 for ; Sun, 7 Feb 2010 02:00:49 +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 02EB48FC08 for ; Sun, 7 Feb 2010 02:00:49 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1720m0Q030456 for ; Sun, 7 Feb 2010 02:00:48 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1720mCu030455 for cvs-src-old@freebsd.org; Sun, 7 Feb 2010 02:00:48 GMT (envelope-from kientzle@repoman.freebsd.org) Message-Id: <201002070200.o1720mCu030455@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kientzle@repoman.freebsd.org using -f From: Tim Kientzle Date: Sun, 7 Feb 2010 02:00:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar Makefile bsdtar.c bsdtar.h config_freebsd.h line_reader.c line_reader.h matching.c matching.h pathmatch.c pathmatch.h read.c util.c write.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Feb 2010 02:00:49 -0000 kientzle 2010-02-07 02:00:26 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile bsdtar.c bsdtar.h config_freebsd.h matching.c read.c util.c write.c Added files: usr.bin/tar line_reader.c line_reader.h matching.h pathmatch.c pathmatch.h Log: SVN rev 203593 on 2010-02-07 02:00:26Z by kientzle Merge a bunch of refactoring from Joerg Sonnenberger to isolate common code used by tar and cpio (and useful to other libarchive clients). The functions here are prefixed with "lafe" (libarchive front-end) to indicate their use. Revision Changes Path 1.50 +2 -0 src/usr.bin/tar/Makefile 1.106 +5 -4 src/usr.bin/tar/bsdtar.c 1.43 +3 -12 src/usr.bin/tar/bsdtar.h 1.10 +0 -3 src/usr.bin/tar/config_freebsd.h 1.1 +171 -0 src/usr.bin/tar/line_reader.c (new) 1.1 +37 -0 src/usr.bin/tar/line_reader.h (new) 1.19 +78 -277 src/usr.bin/tar/matching.c 1.1 +46 -0 src/usr.bin/tar/matching.h (new) 1.1 +255 -0 src/usr.bin/tar/pathmatch.c (new) 1.1 +42 -0 src/usr.bin/tar/pathmatch.h (new) 1.48 +12 -6 src/usr.bin/tar/read.c 1.30 +46 -107 src/usr.bin/tar/util.c 1.94 +26 -23 src/usr.bin/tar/write.c