Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4F9CD8527A for ; Tue, 7 Nov 2023 11:54:09 +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 u3nwkeU1lkO5 for ; Tue, 7 Nov 2023 11:54:08 +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 99EB584F4A for ; Tue, 7 Nov 2023 11:54:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8DD24FA2D; Tue, 7 Nov 2023 11:54:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169935804842450" MIME-Version: 1.0 Date: Tue, 7 Nov 2023 11:54:08 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/meta-pkgs/bulk-small To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20231107115408.8DD24FA2D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169935804842450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Nov 7 11:54:08 UTC 2023 Modified Files: pkgsrc/meta-pkgs/bulk-small: Makefile Log Message: bulk-small: Fix to the default python version to both reduce scan times and future-and-past-proof (as in bulk-test-essential) To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 pkgsrc/meta-pkgs/bulk-small/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169935804842450 Content-Disposition: inline Content-Length: 1306 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/meta-pkgs/bulk-small/Makefile diff -u pkgsrc/meta-pkgs/bulk-small/Makefile:1.56 pkgsrc/meta-pkgs/bulk-small/Makefile:1.57 --- pkgsrc/meta-pkgs/bulk-small/Makefile:1.56 Mon Oct 30 13:11:46 2023 +++ pkgsrc/meta-pkgs/bulk-small/Makefile Tue Nov 7 11:54:08 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.56 2023/10/30 13:11:46 nia Exp $ +# $NetBSD: Makefile,v 1.57 2023/11/07 11:54:08 nia Exp $ -DISTNAME= bulk-small-20231030 +DISTNAME= bulk-small-20231107 CATEGORIES= meta-pkgs MASTER_SITES= # empty DISTFILES= # empty @@ -14,7 +14,7 @@ RESTRICTED= Just for test build purpose NO_BIN_ON_CDROM= ${RESTRICTED} NO_BIN_ON_FTP= ${RESTRICTED} -PYTHON_VERSIONS_INCOMPATIBLE= 27 38 +PYTHON_VERSIONS_ACCEPTED= ${PYTHON_VERSION_DEFAULT} # # Note: The purpose of this package is to produce a small set of the @@ -91,7 +91,8 @@ DEPENDS+= xlockmore-lite-[0-9]*:../../x1 # numbers of other packages depend on. # DEPENDS+= perl>=5:../../lang/perl5 -DEPENDS+= python311-[0-9]*:../../lang/python311 + +.include "../../lang/python/pyversion.mk" DEPENDS+= ${PYPKGPREFIX}-pip-[0-9]*:../../devel/py-pip # @@ -292,5 +293,4 @@ TRANSITIVE+= libstroke-[0-9]*:../../deve DEPENDS+= ${TRANSITIVE} .endif -.include "../../lang/python/pyversion.mk" .include "../../mk/bsd.pkg.mk" --_----------=_169935804842450--