Received: by mail.netbsd.org (Postfix, from userid 605) id 98B6F84DD0; Mon, 11 May 2020 01:18:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1EAE284D80 for ; Mon, 11 May 2020 01:18:31 +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 38zhviEZJvvf for ; Mon, 11 May 2020 01:18:30 +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 6A93D84D47 for ; Mon, 11 May 2020 01:18:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 57DE6FB27; Mon, 11 May 2020 01:18:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589159910281510" MIME-Version: 1.0 Date: Mon, 11 May 2020 01:18:30 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/finance/ledger2beancount To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20200511011830.57DE6FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1589159910281510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Mon May 11 01:18:30 UTC 2020 Modified Files: pkgsrc/finance/ledger2beancount: Makefile Log Message: Work around pkgsrc mk bug by adding gsed to USE_TOOLS, not gsed:test. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/finance/ledger2beancount/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589159910281510 Content-Disposition: inline Content-Length: 985 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/finance/ledger2beancount/Makefile diff -u pkgsrc/finance/ledger2beancount/Makefile:1.2 pkgsrc/finance/ledger2beancount/Makefile:1.3 --- pkgsrc/finance/ledger2beancount/Makefile:1.2 Mon Mar 23 16:49:07 2020 +++ pkgsrc/finance/ledger2beancount/Makefile Mon May 11 01:18:30 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2020/03/23 16:49:07 riastradh Exp $ +# $NetBSD: Makefile,v 1.3 2020/05/11 01:18:30 riastradh Exp $ DISTNAME= ledger2beancount-2.0 PKGREVISION= 1 @@ -41,7 +41,11 @@ TEST_DEPENDS+= ledger>=3.0.0:../../finan TEST_DEPENDS+= ${PYPKGPREFIX}-beancount>=0:../../finance/py-beancount TEST_DEPENDS+= p5-YAML-Syck>=0:../../textproc/p5-YAML-Syck -USE_TOOLS+= gsed:test +# This should be gsed:test, but that triggers a bug in the mk/ +# infrastructure -- the checksum logic thinks TOOL_SED is gsed, but the +# depends logic hasn't actually brought gsed in because it's only +# needed for test. +USE_TOOLS+= gsed TEST_ENV+= SORT=gsort --_----------=_1589159910281510--