From owner-cvs-all@FreeBSD.ORG Tue Jan 2 03:14:54 2007 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F22616A4AB for ; Tue, 2 Jan 2007 03:14:54 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.freebsd.org (Postfix) with ESMTP id 1738213C442 for ; Tue, 2 Jan 2007 03:14:53 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so4265153uge for ; Mon, 01 Jan 2007 19:14:53 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=Qc4hR2zNrcOJz2O727X/aRtFB2bCy0ssxSuM01Xtuq9b+Gc5IYf39Fni5Z3Ew9lofViIlf98DfSH2zPiDNSy3kpHRqBZWVwd7f+DvfrJNfWeoJ5qdGlaJ27BCZk/uCBYaIkOiIQC24krzHBFB1EoOq72yd3wRURLoS/4RDSdugk= Received: by 10.66.219.11 with SMTP id r11mr9982029ugg.1167706135345; Mon, 01 Jan 2007 18:48:55 -0800 (PST) Received: from ?192.168.1.200? ( [80.217.194.157]) by mx.google.com with ESMTP id x37sm25608477ugc.2007.01.01.18.48.54; Mon, 01 Jan 2007 18:48:54 -0800 (PST) Message-ID: <4599C815.2080003@gmail.com> Date: Tue, 02 Jan 2007 03:48:53 +0100 From: Pawel Worach User-Agent: Thunderbird 2.0b1 (X11/20070101) MIME-Version: 1.0 To: Tim Kientzle References: <200611261900.kAQJ0oFU011722@repoman.freebsd.org> In-Reply-To: <200611261900.kAQJ0oFU011722@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libarchive Makefile archive.h.in archive_read.3 archive_write.3 archive_write.c archive_write_open_fd.c archive_write_open_file.c archive_write_open_filename.c archive_write_open_memory.c archive_write_set_compression_none.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jan 2007 03:14:54 -0000 Tim Kientzle wrote: > kientzle 2006-11-26 19:00:50 UTC > > FreeBSD src repository > > Modified files: > lib/libarchive Makefile archive.h.in archive_read.3 > archive_write.3 archive_write.c > archive_write_open_fd.c > archive_write_open_file.c > archive_write_open_filename.c > archive_write_open_memory.c > archive_write_set_compression_none.c > Log: > Write-blocking cleanup, largely thanks to Colin Percival (cperciva@). > * If write block size is zero, don't block at all. > This supports the unusual requirement of applications > that need "no-delay" writes. > * Expose _write_finish_entry() to give such applications more > control over write boundaries. (Normal applications do not > need this, as entries are completed automatically.) > * Correct the type of write callbacks; this is a minor API > change that does not affect the ABI. > * Correct the error handling in _write_next_header() around > completing the previous entry. > * Correct the documentation for block-size markers: Remove > docs for the long-defunct _read_set_block_size(); document > all of the write block size manipulators. > Seems like archive_read_set_bytes_per_block(3) was disconnected. --- ObsoleteFiles.inc.orig Tue Jan 2 03:46:22 2007 +++ ObsoleteFiles.inc Tue Jan 2 03:47:20 2007 @@ -32,6 +32,8 @@ OLD_FILES+=lib/libalias_pptp.so.4 OLD_FILES+=lib/libalias_skinny.so.4 OLD_FILES+=lib/libalias_smedia.so.4 +# 20061126: remove old man page +OLD_FILES+=usr/share/man/man3/archive_read_set_bytes_per_block.3.gz # 20061125: remove old man page OLD_FILES+=usr/share/man/man9/devsw.9.gz # 20061122: remove obsolete mount programs -- Pawel