Received: by mail.netbsd.org (Postfix, from userid 605) id 8A0B984D75; Fri, 4 Sep 2020 09:28:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0DBC084D59 for ; Fri, 4 Sep 2020 09:28:42 +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 0b6KDLeH8KA8 for ; Fri, 4 Sep 2020 09:28:41 +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 7686484D23 for ; Fri, 4 Sep 2020 09:28:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 65098FB28; Fri, 4 Sep 2020 09:28:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159921172180790" MIME-Version: 1.0 Date: Fri, 4 Sep 2020 09:28:41 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/p5-Text-MultiMarkdown To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200904092841.65098FB28@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. --_----------=_159921172180790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Sep 4 09:28:41 UTC 2020 Modified Files: pkgsrc/textproc/p5-Text-MultiMarkdown: Makefile Log Message: p5-Text-MultiMarkdown: fix {TEST_,}DEPENDS Now this passes its self-test suite. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/p5-Text-MultiMarkdown/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159921172180790 Content-Disposition: inline Content-Length: 1425 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/p5-Text-MultiMarkdown/Makefile diff -u pkgsrc/textproc/p5-Text-MultiMarkdown/Makefile:1.2 pkgsrc/textproc/p5-Text-MultiMarkdown/Makefile:1.3 --- pkgsrc/textproc/p5-Text-MultiMarkdown/Makefile:1.2 Mon Aug 31 18:12:02 2020 +++ pkgsrc/textproc/p5-Text-MultiMarkdown/Makefile Fri Sep 4 09:28:41 2020 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2020/08/31 18:12:02 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2020/09/04 09:28:41 wiz Exp $ DISTNAME= Text-MultiMarkdown-1.000035 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= textproc perl5 MASTER_SITES= https://cpan.metacpan.org/authors/id/B/BO/BOBTFISH/ @@ -11,14 +11,16 @@ HOMEPAGE= https://metacpan.org/release/T COMMENT= Convert MultiMarkdown syntax to (X)HTML LICENSE= modified-bsd -DEPENDS+= p5-Digest-MD5>=0:../../security/p5-Digest-MD5 DEPENDS+= p5-Text-Markdown>=1.0.26:../../textproc/p5-Text-Markdown +DEPENDS+= p5-List-MoreUtils-[0-9]*:../../devel/p5-List-MoreUtils +DEPENDS+= p5-HTML-Parser-[0-9]*:../../www/p5-HTML-Parser +TEST_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception +TEST_DEPENDS+= p5-Text-Diff-[0-9]*:../../textproc/p5-Text-Diff PERL5_PACKLIST= auto/Text/MultiMarkdown/.packlist USE_LANGUAGES= # none REPLACE_PERL+= script/MultiMarkdown.pl -.include "../../textproc/p5-Encode/buildlink3.mk" .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" --_----------=_159921172180790--