Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CDF9A84EB1 for ; Mon, 18 Dec 2023 07:17:39 +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 EjzGuH92y3NK for ; Mon, 18 Dec 2023 07:17:39 +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 27A4F84D28 for ; Mon, 18 Dec 2023 07:17:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1BA4BFA42; Mon, 18 Dec 2023 07:17:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_17028838594960" MIME-Version: 1.0 Date: Mon, 18 Dec 2023 07:17:39 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-gi-docgen To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231218071739.1BA4BFA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_17028838594960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Dec 18 07:17:39 UTC 2023 Modified Files: pkgsrc/devel/py-gi-docgen: Makefile Log Message: py-gi-docgen: add missing tool To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-gi-docgen/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_17028838594960 Content-Disposition: inline Content-Length: 1289 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-gi-docgen/Makefile diff -u pkgsrc/devel/py-gi-docgen/Makefile:1.7 pkgsrc/devel/py-gi-docgen/Makefile:1.8 --- pkgsrc/devel/py-gi-docgen/Makefile:1.7 Thu Dec 7 20:05:10 2023 +++ pkgsrc/devel/py-gi-docgen/Makefile Mon Dec 18 07:17:38 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2023/12/07 20:05:10 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2023/12/18 07:17:38 wiz Exp $ DISTNAME= gi-docgen-2023.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,13 +11,14 @@ HOMEPAGE= https://gitlab.gnome.org/GNOME COMMENT= Documentation tool for GObject-based libraries LICENSE= gnu-gpl-v3 AND apache-2.0 AND cc0-1.0-universal +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-markdown>=3.2:../../textproc/py-markdown DEPENDS+= ${PYPKGPREFIX}-markupsafe>=1:../../textproc/py-markupsafe DEPENDS+= ${PYPKGPREFIX}-packaging>=0:../../devel/py-packaging DEPENDS+= ${PYPKGPREFIX}-pygments>=2:../../textproc/py-pygments DEPENDS+= ${PYPKGPREFIX}-jinja2>=2:../../textproc/py-jinja2 DEPENDS+= ${PYPKGPREFIX}-typogrify>=2:../../textproc/py-typogrify -TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel PYTHON_VERSIONS_INCOMPATIBLE= 27 --_----------=_17028838594960--