Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0362984EEB for ; Fri, 16 Jun 2023 08:08:48 +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 ffmKKbkdZDU0 for ; Fri, 16 Jun 2023 08:08:47 +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 677F384DA5 for ; Fri, 16 Jun 2023 08:08:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 54389FA89; Fri, 16 Jun 2023 08:08:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1686902927135180" MIME-Version: 1.0 Date: Fri, 16 Jun 2023 08:08:47 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/textproc/json2tsv To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20230616080847.54389FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1686902927135180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Fri Jun 16 08:08:47 UTC 2023 Modified Files: pkgsrc/textproc/json2tsv: Makefile distinfo Log Message: json2tsv: Update to 1.1 Changes: 1.1 --- Fixes: * jaq: fail early if creating a temporary file using mktemp failed. * micro-optimization for the json.c parser, json2tsv itself is unaffected though. * Minor code-style and portability improvements. * Typo fixes. Features: * json2tsv and jaq: add a -u option: flush output after printing each value (unbuffered). This works similar to the sed -u option. Sometimes it can be useful to force flushing the data directly. For example for streaming JSON data. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/textproc/json2tsv/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/textproc/json2tsv/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1686902927135180 Content-Disposition: inline Content-Length: 1530 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/json2tsv/Makefile diff -u pkgsrc/textproc/json2tsv/Makefile:1.9 pkgsrc/textproc/json2tsv/Makefile:1.10 --- pkgsrc/textproc/json2tsv/Makefile:1.9 Mon Sep 5 20:53:44 2022 +++ pkgsrc/textproc/json2tsv/Makefile Fri Jun 16 08:08:47 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2022/09/05 20:53:44 leot Exp $ +# $NetBSD: Makefile,v 1.10 2023/06/16 08:08:47 leot Exp $ -DISTNAME= json2tsv-1.0 +DISTNAME= json2tsv-1.1 CATEGORIES= textproc MASTER_SITES= https://codemadness.org/releases/json2tsv/ Index: pkgsrc/textproc/json2tsv/distinfo diff -u pkgsrc/textproc/json2tsv/distinfo:1.10 pkgsrc/textproc/json2tsv/distinfo:1.11 --- pkgsrc/textproc/json2tsv/distinfo:1.10 Mon Sep 5 20:53:44 2022 +++ pkgsrc/textproc/json2tsv/distinfo Fri Jun 16 08:08:47 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2022/09/05 20:53:44 leot Exp $ +$NetBSD: distinfo,v 1.11 2023/06/16 08:08:47 leot Exp $ -BLAKE2s (json2tsv-1.0.tar.gz) = 19f08a1e5e4cc6a4ece75b347cdc3a4626a4ab98c50d4ad7c128b44777772691 -SHA512 (json2tsv-1.0.tar.gz) = 131ebbeec3bcb6dda4298eedd1258168fae171beb93c0047a3eec78b8af13296e50c2e36f8e13327e17ffb8ea432fbb5db02a4e2083f39b35242cbd5322baa69 -Size (json2tsv-1.0.tar.gz) = 8551 bytes +BLAKE2s (json2tsv-1.1.tar.gz) = 3a1a7f40cdc8262b999dd79d4d199158f8a77b4b3a6edc39b4aa13bf85432ef4 +SHA512 (json2tsv-1.1.tar.gz) = 3166a32ad2ba09e1f54915322ccf68324c67486e5374045b2a70784dc4b97d7cc55af2d516cf4d011942fe18337005032cead10ddf8c7942cfb7c1af44294a8c +Size (json2tsv-1.1.tar.gz) = 8687 bytes --_----------=_1686902927135180--