From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:47:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A36816A400; Fri, 22 Jun 2007 05:47:01 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1952213C457; Fri, 22 Jun 2007 05:47:01 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5l0AP043243; Fri, 22 Jun 2007 05:47:00 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5l0Qa043242; Fri, 22 Jun 2007 05:47:00 GMT (envelope-from kientzle) Message-Id: <200706220547.l5M5l0Qa043242@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 22 Jun 2007 05:47:00 +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/lib/libarchive Makefile archive.h.in archive_write_set_format.c archive_write_set_format_by_name.c archive_write_set_format_cpio_newc.c src/lib/libarchive/test Makefile test_write_format_cpio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:47:01 -0000 kientzle 2007-06-22 05:47:00 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive.h.in archive_write_set_format.c archive_write_set_format_by_name.c lib/libarchive/test Makefile Added files: lib/libarchive archive_write_set_format_cpio_newc.c lib/libarchive/test test_write_format_cpio.c Log: Support for writing the 'newc' cpio format, plus a minimal test harness for the cpio formats. Thanks to: Rudolf Marek Approved by: re@ Revision Changes Path 1.73 +1 -0 src/lib/libarchive/Makefile 1.45 +1 -0 src/lib/libarchive/archive.h.in 1.5 +1 -0 src/lib/libarchive/archive_write_set_format.c 1.7 +2 -0 src/lib/libarchive/archive_write_set_format_by_name.c 1.1 +274 -0 src/lib/libarchive/archive_write_set_format_cpio_newc.c (new) 1.8 +2 -0 src/lib/libarchive/test/Makefile 1.1 +112 -0 src/lib/libarchive/test/test_write_format_cpio.c (new)