Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 742FB84EDF for ; Tue, 15 Aug 2023 15:13:56 +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 4MuQG_J5g4RB for ; Tue, 15 Aug 2023 15:13:55 +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 D5C3384E69 for ; Tue, 15 Aug 2023 15:13:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9BABFBDB; Tue, 15 Aug 2023 15:13:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16921124354610" MIME-Version: 1.0 Date: Tue, 15 Aug 2023 15:13:55 +0000 From: "Charlotte Koch" Subject: CVS commit: pkgsrc/lang/janet To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: charlotte@netbsd.org X-Mailer: log_accum Message-Id: <20230815151355.C9BABFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_16921124354610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: charlotte Date: Tue Aug 15 15:13:55 UTC 2023 Modified Files: pkgsrc/lang/janet: Makefile PLIST distinfo Log Message: lang/janet: Update to 1.30.0 ## 1.30.0 - 2023-08-05 - Change indexing of `array/remove` to start from -1 at the end instead of -2. - Add new string escape sequences `\\a`, `\\b`, `\\?`, and `\\'`. - Fix bug with marshalling channels - Add `div` for floored division - Make `div` and `mod` variadic - Support `bnot` for integer types. - Define `(mod x 0)` as `x` - Add `ffi/pointer-cfunction` to convert pointers to cfunctions To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/lang/janet/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/lang/janet/PLIST cvs rdiff -u -r1.25 -r1.26 pkgsrc/lang/janet/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16921124354610 Content-Disposition: inline Content-Length: 2090 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/janet/Makefile diff -u pkgsrc/lang/janet/Makefile:1.26 pkgsrc/lang/janet/Makefile:1.27 --- pkgsrc/lang/janet/Makefile:1.26 Wed Jun 21 06:37:06 2023 +++ pkgsrc/lang/janet/Makefile Tue Aug 15 15:13:55 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.26 2023/06/21 06:37:06 charlotte Exp $ +# $NetBSD: Makefile,v 1.27 2023/08/15 15:13:55 charlotte Exp $ -DISTNAME= janet-1.29.1 +DISTNAME= janet-1.30.0 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GITHUB:=janet-lang/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/lang/janet/PLIST diff -u pkgsrc/lang/janet/PLIST:1.16 pkgsrc/lang/janet/PLIST:1.17 --- pkgsrc/lang/janet/PLIST:1.16 Wed Jun 21 06:37:06 2023 +++ pkgsrc/lang/janet/PLIST Tue Aug 15 15:13:55 2023 @@ -1,11 +1,11 @@ -@comment $NetBSD: PLIST,v 1.16 2023/06/21 06:37:06 charlotte Exp $ +@comment $NetBSD: PLIST,v 1.17 2023/08/15 15:13:55 charlotte Exp $ bin/janet include/janet.h include/janet/janet.h lib/libjanet.a lib/libjanet.so lib/libjanet.so.${PKGVERSION} -lib/libjanet.so.1.29 +lib/libjanet.so.1.30 lib/pkgconfig/janet.pc man/man1/janet.1 @pkgdir lib/janet Index: pkgsrc/lang/janet/distinfo diff -u pkgsrc/lang/janet/distinfo:1.25 pkgsrc/lang/janet/distinfo:1.26 --- pkgsrc/lang/janet/distinfo:1.25 Wed Jun 21 06:37:06 2023 +++ pkgsrc/lang/janet/distinfo Tue Aug 15 15:13:55 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.25 2023/06/21 06:37:06 charlotte Exp $ +$NetBSD: distinfo,v 1.26 2023/08/15 15:13:55 charlotte Exp $ -BLAKE2s (janet-1.29.1.tar.gz) = 262cf96cf5de92d51610c6b661a6f0bed6bc5d77ed2ba66f8235160c4eb70068 -SHA512 (janet-1.29.1.tar.gz) = c04ab8cd951968d262daf8e1e5df66d2fbecaab5f66635c8765d438f6c25bb133a0fed52e37cbc59b680fa36549b39670b6585b52be3e8037c5a0fc47eb14f46 -Size (janet-1.29.1.tar.gz) = 548328 bytes +BLAKE2s (janet-1.30.0.tar.gz) = ba0e610cdd5d136054530424e4605061b157f6fe943b73cdaae0d1320a85f579 +SHA512 (janet-1.30.0.tar.gz) = e7e893dda0c928211f8ee2e7d3f155fbe83a5a714a4e32d3c5a6d4511b9dbd600c2a6cef7bc366a04e25d2f4b0822609ccc8f1de0bf12e99c6f45f26add0347f +Size (janet-1.30.0.tar.gz) = 551023 bytes --_----------=_16921124354610--