Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 90A4AA629C for ; Sat, 30 Nov 2013 08:34:58 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E351614A39F; Sat, 30 Nov 2013 08:34:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 44DF014A393 for ; Sat, 30 Nov 2013 08:34:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id WSKmOMrS0X3x for ; Sat, 30 Nov 2013 08:34:56 +0000 (UTC) Received: from nef.pbox.org (ns.pbox.org [IPv6:2001:41d0:1:e836::1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.netbsd.org (Postfix) with ESMTPS id 548FB14A2CD for ; Sat, 30 Nov 2013 08:34:55 +0000 (UTC) Received: from nef.pbox.org (localhost [127.0.0.1]) by nef.pbox.org (8.14.5/8.14.5/) with ESMTP id rAU8YqIh018055 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 30 Nov 2013 09:34:53 +0100 (CET) Received: (from agc@localhost) by nef.pbox.org (8.14.5/8.14.5/Submit) id rAU8YqCu017645 for pkgsrc-changes@netbsd.org; Sat, 30 Nov 2013 09:34:52 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4FAC914A393 for ; Fri, 29 Nov 2013 18:23:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id KpfeFf34d_az for ; Fri, 29 Nov 2013 18:23:45 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id 803B214A38F for ; Fri, 29 Nov 2013 18:23:45 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 756CF96; Fri, 29 Nov 2013 18:23:45 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Fri, 29 Nov 2013 18:23:45 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/rcs To: pkgsrc-changes@netbsd.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20131129182345.756CF96@cvs.netbsd.org> X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.4.3 (nef.pbox.org [0.0.0.0]); Sat, 30 Nov 2013 09:34:53 +0100 (CET) Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: wiz Date: Fri Nov 29 18:23:45 UTC 2013 Modified Files: pkgsrc/devel/rcs: Makefile distinfo Log Message: Update to 5.9.2: - 5.9.2 | 2013-11-28 - bugfixes - avoid possibly failing command in backticks Some versions of Solaris /bin/sh would cause the extract-help build script to exit failurefully when the grep command in the backticks failed (in the presence of "set -e"). Sigh. - handle low-memory situations like RCS 5.7 (mostly) For reading comma-v files, RCS 5.7 tries mmap(2), in-core snarfing, and stdio access, falling back to slower methods on failure of the faster method. RCS 5.8 maintained the order, but did not fall back; on failure, it gave up immediately. This change was originally viewed as a feature, but lately it seemed more like a bug. Now, RCS 5.7 behavior is for the most part restored. The exception is when env var ‘RCS_MEM_LIMIT’ is set; in that case, failure of a fast method does not fall back to the slower one. - default for env var ‘RCS_MEM_LIMIT’ relaxed This used to be 256 kilobytes, a reasonable value a long time ago, but ridiculously low nowadays. Now, it is "unlimited", which is more in line w/ the GNU philosophy, anyway: (info "(standards) Semantics") Since the env var is mostly intended for testing RCS, you can normally leave it unset. (Probably it will be removed in a future release.) - maintenance tools updated - automake (GNU automake) 1.14 - gnulib-tool (GNU gnulib 2013-11-28 08:46:06) 0.1.21-37f8a To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/devel/rcs/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/rcs/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.