Received: by mail.netbsd.org (Postfix, from userid 605) id E3D2F84E00; Fri, 19 Jun 2020 18:04:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6D68E84DF5 for ; Fri, 19 Jun 2020 18:04:06 +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 bN7nMqWdZKBQ for ; Fri, 19 Jun 2020 18:04:05 +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 D2BBD84D4D for ; Fri, 19 Jun 2020 18:04:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C6A67FB28; Fri, 19 Jun 2020 18:04:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1592589845144740" MIME-Version: 1.0 Date: Fri, 19 Jun 2020 18:04:05 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/math/bc-gh To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20200619180405.C6A67FB28@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. --_----------=_1592589845144740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Fri Jun 19 18:04:05 UTC 2020 Modified Files: pkgsrc/math/bc-gh: Makefile PLIST distinfo Log Message: nbc-gh: Update to 3.0.0 Upstream changes: multiple bug fixes and minor improvements redesign of signal handling (not intended to be user visible) Besides the following, see NEWS in the sources for details. *First, the `2.7.0` release series saw a change in the option parsing. This made me change one error message and add a few others. The error message that was changed removed one format specifier. This means that `printf()` will seqfault on old locale files. Unfortunately, `bc` cannot use any locale files except the global ones that are already installed, so it will use the previous ones while running tests during install. **If `bc` segfaults while running arg tests when updating, it is because the global locale files have not been replaced. Make sure to either prevent the test suite from running on update or remove the old locale files before updating.** Once this is done, `bc` should install without problems.* *Second, **the option to build without signal support has been removed**. See below for the reasons why.* This is a production release with some small bug fixes, a few improvements, three major bug fixes, and a complete redesign of `bc`'s error and signal handling. **Users and package maintainers should update to this version as soon as possible.** To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/bc-gh/Makefile \ pkgsrc/math/bc-gh/distinfo cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/bc-gh/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1592589845144740 Content-Disposition: inline Content-Length: 2152 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/bc-gh/Makefile diff -u pkgsrc/math/bc-gh/Makefile:1.4 pkgsrc/math/bc-gh/Makefile:1.5 --- pkgsrc/math/bc-gh/Makefile:1.4 Sat May 16 22:54:21 2020 +++ pkgsrc/math/bc-gh/Makefile Fri Jun 19 18:04:05 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2020/05/16 22:54:21 gdt Exp $ +# $NetBSD: Makefile,v 1.5 2020/06/19 18:04:05 gdt Exp $ -VERSION= 2.7.2 +VERSION= 3.0.0 DISTNAME= bc-${VERSION} PKGNAME= bc-gh-${VERSION} CATEGORIES= math Index: pkgsrc/math/bc-gh/distinfo diff -u pkgsrc/math/bc-gh/distinfo:1.4 pkgsrc/math/bc-gh/distinfo:1.5 --- pkgsrc/math/bc-gh/distinfo:1.4 Sat May 16 22:54:21 2020 +++ pkgsrc/math/bc-gh/distinfo Fri Jun 19 18:04:05 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2020/05/16 22:54:21 gdt Exp $ +$NetBSD: distinfo,v 1.5 2020/06/19 18:04:05 gdt Exp $ -SHA1 (bc-2.7.2.tar.xz) = 2332db5d8839202cc2b43e2bebe2654efc093bf1 -RMD160 (bc-2.7.2.tar.xz) = f7f6e4ca0f3befc7a064cc1d308857047af7cc15 -SHA512 (bc-2.7.2.tar.xz) = c2014b16165bf5f8bdadf42bb60ea967a060753c17e13a7c3569d16d218bb3fb644e6a46950e9e7b3aa5a9f6bee4da9b158694909a0ab1fe390b7bb4dc20b303 -Size (bc-2.7.2.tar.xz) = 189020 bytes +SHA1 (bc-3.0.0.tar.xz) = fb38d19ab90641d1c8324ef32ac30431837935ea +RMD160 (bc-3.0.0.tar.xz) = 4364ec493901cf45cb6724dbc3bdb7cb84ad0232 +SHA512 (bc-3.0.0.tar.xz) = 4961e030274e763aa02541457aa5aab6cd0d61758861b98d2cdac6acc42c3fb55b6adba72749edd3b663225ab844d7ef60809972478992165b071645fe6af65f +Size (bc-3.0.0.tar.xz) = 199304 bytes Index: pkgsrc/math/bc-gh/PLIST diff -u pkgsrc/math/bc-gh/PLIST:1.2 pkgsrc/math/bc-gh/PLIST:1.3 --- pkgsrc/math/bc-gh/PLIST:1.2 Sat May 16 22:54:21 2020 +++ pkgsrc/math/bc-gh/PLIST Fri Jun 19 18:04:05 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2020/05/16 22:54:21 gdt Exp $ +@comment $NetBSD: PLIST,v 1.3 2020/06/19 18:04:05 gdt Exp $ bin/bc-gh bin/dc-gh man/man1/bc-gh.1 @@ -36,6 +36,7 @@ share/locale/en_US.ISO8859-15/bc-gh share/locale/en_US.US-ASCII/bc-gh share/locale/en_US.UTF-8/bc-gh share/locale/en_US/bc-gh +share/locale/es_ES.UTF-8/bc-gh share/locale/fr_BE.ISO8859-1/bc-gh share/locale/fr_BE.ISO8859-15/bc-gh share/locale/fr_BE.UTF-8/bc-gh --_----------=_1592589845144740--