Received: by mail.netbsd.org (Postfix, from userid 605) id CC00E84DA3; Wed, 6 Jun 2018 14:53:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5620784D70 for ; Wed, 6 Jun 2018 14:53:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id AUpLYSh0E5C5 for ; Wed, 6 Jun 2018 14:53:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A0BF884C82 for ; Wed, 6 Jun 2018 14:53:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95942FBEC; Wed, 6 Jun 2018 14:53:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152829678476120" MIME-Version: 1.0 Date: Wed, 6 Jun 2018 14:53:04 +0000 From: "Patrick Welche" Subject: CVS commit: pkgsrc/editors/ne To: pkgsrc-changes@NetBSD.org Reply-To: prlw1@netbsd.org X-Mailer: log_accum Message-Id: <20180606145304.95942FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_152829678476120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: prlw1 Date: Wed Jun 6 14:53:04 UTC 2018 Modified Files: pkgsrc/editors/ne: Makefile distinfo Log Message: Update ne to 3.15 Version 3.15 01-May-2018 ------------------------ 1. The "logo" line "NE version xxxx" was showing the PCRE version which was current when NE was compiled (static) instead of getting the current (dynamic) version from a shared library. This is now fixed and the line reformatted. 2. Minor error in command line decoding; for switch items such as -id it was checking the text pointer (which might be partly unset) instead of the number field. 3. There is now a maximum linelength that NE will handle when reading a file in non-binary mode. The limit is 100,000 bytes. This prevents it going into a meltdown memory thrashing state for a file that contains an excessively long line. Version 3.14 26-February-2018 ----------------------------- 1. Two calls to error_moan() for failing to open a file were missing a second argument (specifying reading or writing), leading to a crash for an unknown file. 2. Added strerror() calls to all failed-do-open file errors. 3. Added some "fall through" comments when deliberately falling through. 4. Increased an internal buffer size to avoid format-overflow warning in "show wordcount" command. 5. Implemented -notraps to disable catching crash signals. This makes crashes easier to debug. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/editors/ne/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/editors/ne/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152829678476120 Content-Disposition: inline Content-Length: 1594 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/ne/Makefile diff -u pkgsrc/editors/ne/Makefile:1.19 pkgsrc/editors/ne/Makefile:1.20 --- pkgsrc/editors/ne/Makefile:1.19 Sat Dec 16 19:46:29 2017 +++ pkgsrc/editors/ne/Makefile Wed Jun 6 14:53:04 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2017/12/16 19:46:29 prlw1 Exp $ +# $NetBSD: Makefile,v 1.20 2018/06/06 14:53:04 prlw1 Exp $ -DISTNAME= ne-3.13 +DISTNAME= ne-3.15 CATEGORIES= editors MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/wordprocessing/unix/ne/ Index: pkgsrc/editors/ne/distinfo diff -u pkgsrc/editors/ne/distinfo:1.8 pkgsrc/editors/ne/distinfo:1.9 --- pkgsrc/editors/ne/distinfo:1.8 Sat Dec 16 19:46:29 2017 +++ pkgsrc/editors/ne/distinfo Wed Jun 6 14:53:04 2018 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.8 2017/12/16 19:46:29 prlw1 Exp $ +$NetBSD: distinfo,v 1.9 2018/06/06 14:53:04 prlw1 Exp $ -SHA1 (ne-3.13.tar.gz) = 1e7aec7067df35eff0d837ef0be64615bd0f8832 -RMD160 (ne-3.13.tar.gz) = b1971f74740a0b0b0f42cb32dcd7e7a1c8bc9d00 -SHA512 (ne-3.13.tar.gz) = 4a7eabe8d7ea7fe6620f360132f3b4b1092fb43a8778d3b735f0fe5d0d8b1ca22d2f855b0ec156c691f177e31c359eea72c84fcef3c09473f8fe4ae84616d14e -Size (ne-3.13.tar.gz) = 621015 bytes +SHA1 (ne-3.15.tar.gz) = 141fbfd001080bd54fe2de8356eb5c24fb4e7630 +RMD160 (ne-3.15.tar.gz) = 05d9c8ee9e27256448ea66232732a297471cfa14 +SHA512 (ne-3.15.tar.gz) = d4bd74d255649e3805d2fc497b4ef73ef26c0b4ba857e0fd05da2ffebd16943196da3d0dd6a18c32a4afa841cc72b989c3f40db7d9b9f49c60675646a525c048 +Size (ne-3.15.tar.gz) = 664978 bytes SHA1 (patch-Makefile.in) = 994359a495cb24b0ca7073c30f7664bff145c445 --_----------=_152829678476120--