From owner-cvs-src-old@FreeBSD.ORG Fri Apr 17 04:05:08 2009 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 575601065676 for ; Fri, 17 Apr 2009 04:05:08 +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 3C3E48FC0A for ; Fri, 17 Apr 2009 04:05:08 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n3H458q8042581 for ; Fri, 17 Apr 2009 04:05:08 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n3H45879042580 for cvs-src-old@freebsd.org; Fri, 17 Apr 2009 04:05:08 GMT (envelope-from kientzle@repoman.freebsd.org) Message-Id: <200904170405.n3H45879042580@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kientzle@repoman.freebsd.org using -f From: Tim Kientzle Date: Fri, 17 Apr 2009 04:04:57 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/cpio Makefile bsdcpio.1 cmdline.c cpio.c cpio.h cpio_platform.h pathmatch.c pathmatch.h src/usr.bin/cpio/test main.c test.h test_0.c test_basic.c test_format_newc.c test_gcpio_compat.c test_option_a.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: Fri, 17 Apr 2009 04:05:08 -0000 kientzle 2009-04-17 04:04:57 UTC FreeBSD src repository Modified files: usr.bin/cpio Makefile bsdcpio.1 cmdline.c cpio.c cpio.h cpio_platform.h pathmatch.c pathmatch.h usr.bin/cpio/test main.c test.h test_0.c test_basic.c test_format_newc.c test_gcpio_compat.c test_option_a.c test_option_c.c test_option_d.c test_option_f.c test_option_m.c test_option_t.c test_option_u.c test_option_version.c test_option_y.c test_option_z.c test_owner_parse.c test_passthrough_dotdot.c test_passthrough_reverse.c test_pathmatch.c Log: SVN rev 191192 on 2009-04-17 04:04:57Z by kientzle Merge from libarchive.googlecode.com: * Lots of new tests. * New -n / --numeric-uid-gid option * More sanity-checking of arguments * Various Windows portability improvements * Sync up version number to 2.7.0 Revision Changes Path 1.7 +2 -2 src/usr.bin/cpio/Makefile 1.2 +9 -0 src/usr.bin/cpio/bsdcpio.1 1.6 +2 -1 src/usr.bin/cpio/cmdline.c 1.16 +135 -21 src/usr.bin/cpio/cpio.c 1.8 +1 -0 src/usr.bin/cpio/cpio.h 1.3 +8 -2 src/usr.bin/cpio/cpio_platform.h 1.2 +32 -33 src/usr.bin/cpio/pathmatch.c 1.2 +5 -0 src/usr.bin/cpio/pathmatch.h 1.4 +207 -44 src/usr.bin/cpio/test/main.c 1.3 +28 -7 src/usr.bin/cpio/test/test.h 1.2 +7 -2 src/usr.bin/cpio/test/test_0.c 1.5 +36 -3 src/usr.bin/cpio/test/test_basic.c 1.3 +29 -1 src/usr.bin/cpio/test/test_format_newc.c 1.3 +17 -2 src/usr.bin/cpio/test/test_gcpio_compat.c 1.4 +8 -4 src/usr.bin/cpio/test/test_option_a.c 1.2 +28 -1 src/usr.bin/cpio/test/test_option_c.c 1.2 +2 -2 src/usr.bin/cpio/test/test_option_d.c 1.2 +10 -0 src/usr.bin/cpio/test/test_option_f.c 1.2 +2 -2 src/usr.bin/cpio/test/test_option_m.c 1.2 +43 -5 src/usr.bin/cpio/test/test_option_t.c 1.2 +4 -0 src/usr.bin/cpio/test/test_option_u.c 1.2 +4 -0 src/usr.bin/cpio/test/test_option_version.c 1.3 +12 -5 src/usr.bin/cpio/test/test_option_y.c 1.2 +11 -4 src/usr.bin/cpio/test/test_option_z.c 1.2 +54 -10 src/usr.bin/cpio/test/test_owner_parse.c 1.5 +5 -1 src/usr.bin/cpio/test/test_passthrough_dotdot.c 1.3 +9 -1 src/usr.bin/cpio/test/test_passthrough_reverse.c 1.2 +79 -1 src/usr.bin/cpio/test/test_pathmatch.c