Received: by mail.netbsd.org (Postfix, from userid 605) id DFC8584EC3; Thu, 15 Dec 2022 14:45:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1CC1984E93 for ; Thu, 15 Dec 2022 14:45:58 +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 L8L6zcr1kU5s for ; Thu, 15 Dec 2022 14:45:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9089D84CED for ; Thu, 15 Dec 2022 14:45:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8850BFA90; Thu, 15 Dec 2022 14:45:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1671115557138630" MIME-Version: 1.0 Date: Thu, 15 Dec 2022 14:45:57 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/devel/jsonnet To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20221215144557.8850BFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1671115557138630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Dec 15 14:45:57 UTC 2022 Modified Files: pkgsrc/devel/jsonnet: distinfo pkgsrc/devel/jsonnet/patches: patch-Makefile Log Message: jsonnet: Fix od(1) args. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/jsonnet/distinfo cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/jsonnet/patches/patch-Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1671115557138630 Content-Disposition: inline Content-Length: 1774 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/jsonnet/distinfo diff -u pkgsrc/devel/jsonnet/distinfo:1.7 pkgsrc/devel/jsonnet/distinfo:1.8 --- pkgsrc/devel/jsonnet/distinfo:1.7 Tue Oct 26 10:15:08 2021 +++ pkgsrc/devel/jsonnet/distinfo Thu Dec 15 14:45:57 2022 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.7 2021/10/26 10:15:08 nia Exp $ +$NetBSD: distinfo,v 1.8 2022/12/15 14:45:57 jperkin Exp $ BLAKE2s (jsonnet-0.13.0.tar.gz) = 17da79d139fce1d09a381e7a80ddb7a00ce812b01466ddeadeff074ce21c896c SHA512 (jsonnet-0.13.0.tar.gz) = d19e5398763e37b79b0ef02368f6bd6215d2df234b5ff7a6d98e2306a0d47290600061c9f868c0c262570b4f0ee9eee6c309bcc93937b12f6c14f8d12339a7d5 Size (jsonnet-0.13.0.tar.gz) = 21850449 bytes -SHA1 (patch-Makefile) = fc6dc54470c56b9ce4ccc6658b5ed70693a42967 +SHA1 (patch-Makefile) = 4280734174a73045d12466fa4ebd58be594d6049 SHA1 (patch-test__suite_tests.source) = 14fc92f664269ab4012c7f90b337276de77110f5 Index: pkgsrc/devel/jsonnet/patches/patch-Makefile diff -u pkgsrc/devel/jsonnet/patches/patch-Makefile:1.3 pkgsrc/devel/jsonnet/patches/patch-Makefile:1.4 --- pkgsrc/devel/jsonnet/patches/patch-Makefile:1.3 Tue Aug 13 18:04:28 2019 +++ pkgsrc/devel/jsonnet/patches/patch-Makefile Thu Dec 15 14:45:57 2022 @@ -1,4 +1,4 @@ -$NetBSD: patch-Makefile,v 1.3 2019/08/13 18:04:28 seb Exp $ +$NetBSD: patch-Makefile,v 1.4 2022/12/15 14:45:57 jperkin Exp $ - leverage pkgsrc CPPFLAGS, CFLAGS and CXXFLAGS handling - take care of 'od -t u1' output variations @@ -71,7 +71,8 @@ $NetBSD: patch-Makefile,v 1.3 2019/08/13 # Encode standard library for embedding in C core/%.jsonnet.h: stdlib/%.jsonnet - (($(OD) -v -Anone -t u1 $< \ +- (($(OD) -v -Anone -t u1 $< \ ++ (($(OD) -v -An -t u1 $< \ | tr " " "\n" \ - | grep -v "^$$" \ + | sed -e 's/^0//;/^$$/d' \ --_----------=_1671115557138630--