Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 61E5785D40 for ; Mon, 23 Oct 2023 06:46: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 nwVcYh6vb8xk for ; Mon, 23 Oct 2023 06:46:38 +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 A774885D3B for ; Mon, 23 Oct 2023 06:46:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A0E03FADC; Mon, 23 Oct 2023 06:46:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169804359817840" MIME-Version: 1.0 Date: Mon, 23 Oct 2023 06:46:38 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/python To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231023064638.A0E03FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169804359817840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Oct 23 06:46:38 UTC 2023 Modified Files: pkgsrc/lang/python: batteries-included.mk Log Message: python: fix dependency patterns to >= To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/python/batteries-included.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169804359817840 Content-Disposition: inline Content-Length: 1199 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python/batteries-included.mk diff -u pkgsrc/lang/python/batteries-included.mk:1.1 pkgsrc/lang/python/batteries-included.mk:1.2 --- pkgsrc/lang/python/batteries-included.mk:1.1 Mon Oct 23 06:35:59 2023 +++ pkgsrc/lang/python/batteries-included.mk Mon Oct 23 06:46:38 2023 @@ -1,11 +1,11 @@ -# $NetBSD: batteries-included.mk,v 1.1 2023/10/23 06:35:59 wiz Exp $ +# $NetBSD: batteries-included.mk,v 1.2 2023/10/23 06:46:38 wiz Exp $ # # Makefile fragment that pulls in the required Python versions # that provide formerly separately packaged Python modules. -BUILDLINK_API_DEPENDS.python27+= python27-2.7.18nb12 -BUILDLINK_API_DEPENDS.python38+= python38-3.8.18nb1 -BUILDLINK_API_DEPENDS.python39+= python39-3.9.18nb1 -BUILDLINK_API_DEPENDS.python310+= python310-3.10.13nb1 +BUILDLINK_API_DEPENDS.python27+= python27>=2.7.18nb12 +BUILDLINK_API_DEPENDS.python38+= python38>=3.8.18nb1 +BUILDLINK_API_DEPENDS.python39+= python39>=3.9.18nb1 +BUILDLINK_API_DEPENDS.python310+= python310>=3.10.13nb1 BUILDLINK_API_DEPENDS.python311+= python311>=3.11.6nb1 -BUILDLINK_API_DEPENDS.python312+= python312-3.12.0nb1 +BUILDLINK_API_DEPENDS.python312+= python312>=3.12.0nb1 --_----------=_169804359817840--