From owner-cvs-src@FreeBSD.ORG  Mon May 26 17:15:36 2008
Return-Path: <owner-cvs-src@FreeBSD.ORG>
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 108EE1065672;
	Mon, 26 May 2008 17:15:36 +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 EF4748FC15;
	Mon, 26 May 2008 17:15:35 +0000 (UTC)
	(envelope-from kientzle@FreeBSD.org)
Received: from repoman.freebsd.org (localhost [127.0.0.1])
	by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m4QHFZXK070555;
	Mon, 26 May 2008 17:15:35 GMT
	(envelope-from kientzle@repoman.freebsd.org)
Received: (from kientzle@localhost)
	by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m4QHFZUK070554;
	Mon, 26 May 2008 17:15:35 GMT (envelope-from kientzle)
Message-Id: <200805261715.m4QHFZUK070554@repoman.freebsd.org>
From: Tim Kientzle <kientzle@FreeBSD.org>
Date: Mon, 26 May 2008 17:15:35 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/usr.bin/cpio Makefile bsdcpio.1 cmdline.c
 config_freebsd.h cpio.c cpio.h cpio_platform.h err.c matching.c
 matching.h pathmatch.c pathmatch.h src/usr.bin/cpio/test Makefile
 main.c test.h test_0.c test_basic.c test_format_newc.c ...
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 26 May 2008 17:15:36 -0000

kientzle    2008-05-26 17:15:35 UTC

  FreeBSD src repository

  Added files:
    usr.bin/cpio         Makefile bsdcpio.1 cmdline.c 
                         config_freebsd.h cpio.c cpio.h 
                         cpio_platform.h err.c matching.c 
                         matching.h pathmatch.c pathmatch.h 
    usr.bin/cpio/test    Makefile main.c test.h test_0.c 
                         test_basic.c test_format_newc.c 
                         test_gcpio_compat.c 
                         test_gcpio_compat_ref.bin.uu 
                         test_gcpio_compat_ref.crc.uu 
                         test_gcpio_compat_ref.newc.uu 
                         test_gcpio_compat_ref.ustar.uu 
                         test_option_B.c test_option_L.c 
                         test_option_a.c test_option_c.c 
                         test_option_d.c test_option_ell.c 
                         test_option_f.c test_option_f.cpio.uu 
                         test_option_help.c test_option_m.c 
                         test_option_m.cpio.uu test_option_t.c 
                         test_option_t.cpio.uu 
                         test_option_t.stdout.uu 
                         test_option_tv.stdout.uu test_option_u.c 
                         test_option_version.c test_option_y.c 
                         test_option_z.c test_owner_parse.c 
                         test_pathmatch.c 
  Log:
  Initial commit of bsdcpio 0.9.11b.
  
  A new implementation of cpio that uses libarchive as it's back-end
  archiving/dearchiving infrastructure.  Includes test harness;
  "make check" in the bsdcpio directory to build and run the test
  harness.
  
  Revision  Changes    Path
  1.1       +19 -0     src/usr.bin/cpio/Makefile (new)
  1.1       +367 -0    src/usr.bin/cpio/bsdcpio.1 (new)
  1.1       +247 -0    src/usr.bin/cpio/cmdline.c (new)
  1.1       +109 -0    src/usr.bin/cpio/config_freebsd.h (new)
  1.1       +946 -0    src/usr.bin/cpio/cpio.c (new)
  1.1       +106 -0    src/usr.bin/cpio/cpio.h (new)
  1.1       +84 -0     src/usr.bin/cpio/cpio_platform.h (new)
  1.1       +73 -0     src/usr.bin/cpio/err.c (new)
  1.1       +250 -0    src/usr.bin/cpio/matching.c (new)
  1.1       +40 -0     src/usr.bin/cpio/matching.h (new)
  1.1       +250 -0    src/usr.bin/cpio/pathmatch.c (new)
  1.1       +37 -0     src/usr.bin/cpio/pathmatch.h (new)
  1.1       +72 -0     src/usr.bin/cpio/test/Makefile (new)
  1.1       +970 -0    src/usr.bin/cpio/test/main.c (new)
  1.1       +147 -0    src/usr.bin/cpio/test/test.h (new)
  1.1       +62 -0     src/usr.bin/cpio/test/test_0.c (new)
  1.1       +204 -0    src/usr.bin/cpio/test/test_basic.c (new)
  1.1       +245 -0    src/usr.bin/cpio/test/test_format_newc.c (new)
  1.1       +127 -0    src/usr.bin/cpio/test/test_gcpio_compat.c (new)
  1.1       +16 -0     src/usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu (new)
  1.1       +27 -0     src/usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu (new)
  1.1       +27 -0     src/usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu (new)
  1.1       +84 -0     src/usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu (new)
  1.1       +54 -0     src/usr.bin/cpio/test/test_option_B.c (new)
  1.1       +84 -0     src/usr.bin/cpio/test/test_option_L.c (new)
  1.1       +159 -0    src/usr.bin/cpio/test/test_option_a.c (new)
  1.1       +198 -0    src/usr.bin/cpio/test/test_option_c.c (new)
  1.1       +68 -0     src/usr.bin/cpio/test/test_option_d.c (new)
  1.1       +66 -0     src/usr.bin/cpio/test/test_option_ell.c (new)
  1.1       +66 -0     src/usr.bin/cpio/test/test_option_f.c (new)
  1.1       +16 -0     src/usr.bin/cpio/test/test_option_f.cpio.uu (new)
  1.1       +81 -0     src/usr.bin/cpio/test/test_option_help.c (new)
  1.1       +70 -0     src/usr.bin/cpio/test/test_option_m.c (new)
  1.1       +16 -0     src/usr.bin/cpio/test/test_option_m.cpio.uu (new)
  1.1       +47 -0     src/usr.bin/cpio/test/test_option_t.c (new)
  1.1       +16 -0     src/usr.bin/cpio/test/test_option_t.cpio.uu (new)
  1.1       +5 -0      src/usr.bin/cpio/test/test_option_t.stdout.uu (new)
  1.1       +5 -0      src/usr.bin/cpio/test/test_option_tv.stdout.uu (new)
  1.1       +84 -0     src/usr.bin/cpio/test/test_option_u.c (new)
  1.1       +105 -0    src/usr.bin/cpio/test/test_option_version.c (new)
  1.1       +52 -0     src/usr.bin/cpio/test/test_option_y.c (new)
  1.1       +52 -0     src/usr.bin/cpio/test/test_option_z.c (new)
  1.1       +68 -0     src/usr.bin/cpio/test/test_owner_parse.c (new)
  1.1       +165 -0    src/usr.bin/cpio/test/test_pathmatch.c (new)