Received: by mail.netbsd.org (Postfix, from userid 605) id 7106784D72; Mon, 11 Jul 2022 00:32:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AB32D84D43 for ; Mon, 11 Jul 2022 00:32:38 +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 261ok6sWGeXu for ; Mon, 11 Jul 2022 00:32:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0782884CE8 for ; Mon, 11 Jul 2022 00:32:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2384CFB1A; Mon, 11 Jul 2022 00:32:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1657499555233960" MIME-Version: 1.0 Date: Mon, 11 Jul 2022 00:32:35 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/textproc/py-rst2pdf To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20220711003235.2384CFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1657499555233960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Mon Jul 11 00:32:35 UTC 2022 Modified Files: pkgsrc/textproc/py-rst2pdf: Makefile Log Message: py-rst2pdf: py-yaml is also a dependency Issue noted and patch provided by J. Dekker on pkgsrc-users@. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/textproc/py-rst2pdf/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1657499555233960 Content-Disposition: inline Content-Length: 1003 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-rst2pdf/Makefile diff -u pkgsrc/textproc/py-rst2pdf/Makefile:1.13 pkgsrc/textproc/py-rst2pdf/Makefile:1.14 --- pkgsrc/textproc/py-rst2pdf/Makefile:1.13 Tue May 10 07:21:45 2022 +++ pkgsrc/textproc/py-rst2pdf/Makefile Mon Jul 11 00:32:34 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.13 2022/05/10 07:21:45 adam Exp $ +# $NetBSD: Makefile,v 1.14 2022/07/11 00:32:34 gutteridge Exp $ DISTNAME= rst2pdf-0.99 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=r/rst2pdf/} @@ -18,6 +19,7 @@ DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9] DEPENDS+= ${PYPKGPREFIX}-pygments-[0-9]*:../../textproc/py-pygments DEPENDS+= ${PYPKGPREFIX}-reportlab-[0-9]*:../../print/py-reportlab DEPENDS+= ${PYPKGPREFIX}-smartypants-[0-9]*:../../textproc/py-smartypants +DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml TEST_DEPENDS+= ${PYPKGPREFIX}-PDF2-[0-9]*:../../print/py-PDF2 USE_LANGUAGES= # none --_----------=_1657499555233960--