Date: Mon, 26 May 2008 17:15:35 +0000 (UTC) From: Tim Kientzle <kientzle@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org 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 ... Message-ID: <200805261715.m4QHFZUK070554@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200805261715.m4QHFZUK070554>