Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9EBC485A91 for ; Wed, 25 Oct 2023 23:00:34 +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 7U8ogYTwQt3P for ; Wed, 25 Oct 2023 23:00:34 +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 EA2BB85A8F for ; Wed, 25 Oct 2023 23:00:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E3749FADC; Wed, 25 Oct 2023 23:00:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1698274833235230" MIME-Version: 1.0 Date: Wed, 25 Oct 2023 23:00:33 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-flit To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231025230033.E3749FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1698274833235230 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Oct 25 23:00:33 UTC 2023 Modified Files: pkgsrc/devel/py-flit: Makefile Log Message: py-flit: fix wrong DEPENDS Even when you want one particular package version, you must always consider PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-flit/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1698274833235230 Content-Disposition: inline Content-Length: 970 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-flit/Makefile diff -u pkgsrc/devel/py-flit/Makefile:1.6 pkgsrc/devel/py-flit/Makefile:1.7 --- pkgsrc/devel/py-flit/Makefile:1.6 Mon May 15 07:18:20 2023 +++ pkgsrc/devel/py-flit/Makefile Wed Oct 25 23:00:33 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2023/05/15 07:18:20 adam Exp $ +# $NetBSD: Makefile,v 1.7 2023/10/25 23:00:33 wiz Exp $ DISTNAME= flit-3.9.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,7 +11,7 @@ COMMENT= Simple packaging tool for simpl LICENSE= modified-bsd DEPENDS+= ${PYPKGPREFIX}-docutils-[0-9]*:../../textproc/py-docutils -DEPENDS+= ${PYPKGPREFIX}-flit_core-${PKGVERSION_NOREV}:../../devel/py-flit_core +DEPENDS+= ${PYPKGPREFIX}-flit_core-${PKGVERSION_NOREV}{,nb*}:../../devel/py-flit_core DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests DEPENDS+= ${PYPKGPREFIX}-tomli_w-[0-9]*:../../textproc/py-tomli_w TEST_DEPENDS+= ${PYPKGPREFIX}-responses-[0-9]*:../../net/py-responses --_----------=_1698274833235230--