Received: by mail.netbsd.org (Postfix, from userid 605) id 921C9850D4; Sat, 12 Nov 2022 07:42:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C237984F4D for ; Sat, 12 Nov 2022 07:42:17 +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 b_P9XycuvySL for ; Sat, 12 Nov 2022 07:42:17 +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 2CC6584CFF for ; Sat, 12 Nov 2022 07:42:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1BDB0FA90; Sat, 12 Nov 2022 07:42:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166823893727780" MIME-Version: 1.0 Date: Sat, 12 Nov 2022 07:42:17 +0000 From: "Nikita" Subject: CVS commit: pkgsrc/textproc/guile-json To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20221112074217.1BDB0FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166823893727780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Sat Nov 12 07:42:17 UTC 2022 Modified Files: pkgsrc/textproc/guile-json: Makefile distinfo Log Message: textproc/guile-json: update to 4.7.2 Changelog: record: also fix nested record for vectors bump version to 4.7.2 record: don't call scm->record if value is *unspecified* in (define-json-type) Given the following example: (define-json-type (id) (username) (omitted "omitted" ) (boolean)) (define-json-type (name)) If `omitted` is *unspecified* there's no need to keep going through that field. This also rolls back part of commit 029212e. Fixes #78 To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/textproc/guile-json/Makefile \ pkgsrc/textproc/guile-json/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166823893727780 Content-Disposition: inline Content-Length: 1750 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/guile-json/Makefile diff -u pkgsrc/textproc/guile-json/Makefile:1.8 pkgsrc/textproc/guile-json/Makefile:1.9 --- pkgsrc/textproc/guile-json/Makefile:1.8 Mon May 9 08:45:39 2022 +++ pkgsrc/textproc/guile-json/Makefile Sat Nov 12 07:42:16 2022 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2022/05/09 08:45:39 nikita Exp $ +# $NetBSD: Makefile,v 1.9 2022/11/12 07:42:16 nikita Exp $ -DISTNAME= guile-json-4.7.1 +DISTNAME= guile-json-4.7.2 CATEGORIES= textproc -MASTER_SITES= http://download.savannah.gnu.org/releases/guile-json/ +MASTER_SITES= https://download.savannah.gnu.org/releases/guile-json/ MAINTAINER= nikita@NetBSD.org HOMEPAGE= https://github.com/aconchillo/guile-json Index: pkgsrc/textproc/guile-json/distinfo diff -u pkgsrc/textproc/guile-json/distinfo:1.8 pkgsrc/textproc/guile-json/distinfo:1.9 --- pkgsrc/textproc/guile-json/distinfo:1.8 Mon May 9 08:45:39 2022 +++ pkgsrc/textproc/guile-json/distinfo Sat Nov 12 07:42:16 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2022/05/09 08:45:39 nikita Exp $ +$NetBSD: distinfo,v 1.9 2022/11/12 07:42:16 nikita Exp $ -BLAKE2s (guile-json-4.7.1.tar.gz) = 0d0f091a6c29d3e26cc04ad0c22b58d7ccf13c93b401fbd18d775eee427c2933 -SHA512 (guile-json-4.7.1.tar.gz) = f96ca819ffebf8e736cb4e28ee8c6e80c5a7f6f2a064897a4dd7094e3e4b879ba7cd5780778c4dce0db4a938b7603d3352f4a30aab9cd35f47d7ff1c1e3208ac -Size (guile-json-4.7.1.tar.gz) = 162507 bytes +BLAKE2s (guile-json-4.7.2.tar.gz) = b5b0d59ce896dcf4b63e64c3d254524524f672aaf1196b44d4f19b77cba03d8b +SHA512 (guile-json-4.7.2.tar.gz) = f717e4554a2c816bf5b62931a561181c693bb8ae460c2c12e08d4c2d2bf7eb5734b69c1e4b236a0ba685d0db734b510a4c3c3e8134f3def42be8841fdb684b57 +Size (guile-json-4.7.2.tar.gz) = 164331 bytes --_----------=_166823893727780--