Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 814F084D47 for ; Sun, 18 Jun 2023 19:37:38 +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 XzKXtd1nOX4c for ; Sun, 18 Jun 2023 19:37:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9672884CE3 for ; Sun, 18 Jun 2023 19:37:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8FCB4FA89; Sun, 18 Jun 2023 19:37:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1687117057185430" MIME-Version: 1.0 Date: Sun, 18 Jun 2023 19:37:37 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/math/nickle To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230618193737.8FCB4FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1687117057185430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Jun 18 19:37:37 UTC 2023 Modified Files: pkgsrc/math/nickle: Makefile PLIST distinfo Removed Files: pkgsrc/math/nickle/patches: patch-aa patch-builtin-date.c patch-configure.ac patch-float.c patch-lex.c patch-main.c patch-test_Makefile.am Log Message: nickle: update to 2.92. Version 2.92 debian: Build depend on a couple of packages Use CC_BUILD to generate math test tables Add ctype.h, remove explicit lex func prototypes from lex.l Remove 'const' attribute when assigning to tm_zone field Allow use of libedit in place of readline Check for all readline helper functions separately Define _GNU_SOURCE in edit.c to get asprintf declared Remove redundant box value check in ThreadBoxSetDefault test: Allow "UTC", "GMT", or "NONE" to be returned for GMT time zone Make tm_zone and tm_gmtoff fields optional Autodetect 'significand' function Use base-10 for all float exponents. Use base 2 for base 2/8/16 powers Support C-like hex float values in lexer Add ChaCha implementation To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/math/nickle/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/math/nickle/PLIST cvs rdiff -u -r1.21 -r1.22 pkgsrc/math/nickle/distinfo cvs rdiff -u -r1.5 -r0 pkgsrc/math/nickle/patches/patch-aa cvs rdiff -u -r1.2 -r0 pkgsrc/math/nickle/patches/patch-builtin-date.c cvs rdiff -u -r1.1 -r0 pkgsrc/math/nickle/patches/patch-configure.ac \ pkgsrc/math/nickle/patches/patch-float.c \ pkgsrc/math/nickle/patches/patch-lex.c \ pkgsrc/math/nickle/patches/patch-main.c \ pkgsrc/math/nickle/patches/patch-test_Makefile.am Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1687117057185430 Content-Disposition: inline Content-Length: 3322 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/nickle/Makefile diff -u pkgsrc/math/nickle/Makefile:1.26 pkgsrc/math/nickle/Makefile:1.27 --- pkgsrc/math/nickle/Makefile:1.26 Sat Jun 17 11:25:19 2023 +++ pkgsrc/math/nickle/Makefile Sun Jun 18 19:37:37 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.26 2023/06/17 11:25:19 riastradh Exp $ +# $NetBSD: Makefile,v 1.27 2023/06/18 19:37:37 wiz Exp $ -DISTNAME= nickle-2.91 +DISTNAME= nickle-2.92 CATEGORIES= math lang MASTER_SITES= http://nickle.org/release/ @@ -9,20 +9,12 @@ HOMEPAGE= https://nickle.org/ COMMENT= Desk calculator language LICENSE= mit -USE_TOOLS+= autoconf automake autoreconf -TOOL_DEPENDS+= autoconf-archive>=0:../../devel/autoconf-archive - GNU_CONFIGURE= yes # suppress detection of DOCBOOK CONFIGURE_ENV+= ac_cv_path_DOCBOOK2PDF= -CONFIGURE_ARGS+=CC_FOR_BUILD=${NATIVE_CC:Q} - TEST_TARGET= check -pre-configure: - ${RUN} cd ${WRKSRC} && autoreconf -fi - .include "../../mk/readline.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/nickle/PLIST diff -u pkgsrc/math/nickle/PLIST:1.8 pkgsrc/math/nickle/PLIST:1.9 --- pkgsrc/math/nickle/PLIST:1.8 Tue Apr 18 21:31:08 2023 +++ pkgsrc/math/nickle/PLIST Sun Jun 18 19:37:37 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2023/04/18 21:31:08 wiz Exp $ +@comment $NetBSD: PLIST,v 1.9 2023/06/18 19:37:37 wiz Exp $ bin/nickle include/nickle/builtin-namespaces.h include/nickle/builtin.h @@ -16,6 +16,7 @@ share/nickle/COPYING share/nickle/abort.5c share/nickle/arc4.5c share/nickle/builtin.5c +share/nickle/cha-cha.5c share/nickle/command.5c share/nickle/ctype.5c share/nickle/examples/COPYING @@ -69,6 +70,7 @@ share/nickle/sort.5c share/nickle/string.5c share/nickle/svg.5c share/nickle/test/arraytest.5c +share/nickle/test/chacha_test.5c share/nickle/test/datetest.5c share/nickle/test/factorial.5c share/nickle/test/gcdtest.5c Index: pkgsrc/math/nickle/distinfo diff -u pkgsrc/math/nickle/distinfo:1.21 pkgsrc/math/nickle/distinfo:1.22 --- pkgsrc/math/nickle/distinfo:1.21 Sat Jun 17 11:25:19 2023 +++ pkgsrc/math/nickle/distinfo Sun Jun 18 19:37:37 2023 @@ -1,12 +1,5 @@ -$NetBSD: distinfo,v 1.21 2023/06/17 11:25:19 riastradh Exp $ +$NetBSD: distinfo,v 1.22 2023/06/18 19:37:37 wiz Exp $ -BLAKE2s (nickle-2.91.tar.gz) = 0c68e83c11f48e370c413811804d20dd331ae08b003d65fd26ebded8b1a9d38f -SHA512 (nickle-2.91.tar.gz) = 4741cdfad83c84da2c232b965cef52deb7c04f04db9ba1255d420ecd51ba63f9ad249e2e7b5ee4e0be855fdf611d5f5311f2c3cd6631f1211ce65d1e78b0d60f -Size (nickle-2.91.tar.gz) = 2505408 bytes -SHA1 (patch-aa) = 4cbb563244883f6c9f7a3594875052f8d9a9e9b3 -SHA1 (patch-builtin-date.c) = 1aa792b5a91f4b808208e73ee38bd539ab0c12fb -SHA1 (patch-configure.ac) = 72bf3392df432bc8cdbd36760aad254acf6fe699 -SHA1 (patch-float.c) = f157fc605b617e7b5bdaa192d48e679b596a9228 -SHA1 (patch-lex.c) = f9d5f3f282f97a94195730062525e9f6310bb316 -SHA1 (patch-main.c) = 3f6d009255cdf51d6e5dcfb8ae3c0d49f6991694 -SHA1 (patch-test_Makefile.am) = 17e54a0e2172b0fb65a3d8a8eb615d7cfab5efee +BLAKE2s (nickle-2.92.tar.gz) = 21da50baef14a9f35e911d013f48f7217a00b7eb0b80add63fd1056f1b34f68a +SHA512 (nickle-2.92.tar.gz) = 27c8607740bba0c034ac2f8aef823c1eeaf7670bf72c983212ad41522fc321bda45478515e9f1e67350fecf1ebe4b9bb29429edeb357e5e1691af9e1720322f6 +Size (nickle-2.92.tar.gz) = 2548373 bytes --_----------=_1687117057185430--