Received: by mail.netbsd.org (Postfix, from userid 605) id EC38A84D5B; Mon, 31 Oct 2022 09:52:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2959584D59 for ; Mon, 31 Oct 2022 09:52:14 +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 SAhpHEapRXnd for ; Mon, 31 Oct 2022 09:52:13 +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 7BC1284CFD for ; Mon, 31 Oct 2022 09:52:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79537FA90; Mon, 31 Oct 2022 09:52:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667209933140320" MIME-Version: 1.0 Date: Mon, 31 Oct 2022 09:52:13 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/python311 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221031095213.79537FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667209933140320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Oct 31 09:52:13 UTC 2022 Added Files: pkgsrc/lang/python311: buildlink3.mk Log Message: python311: add buildlink3.mk as well To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/lang/python311/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667209933140320 Content-Disposition: inline Content-Length: 973 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/lang/python311/buildlink3.mk diff -u /dev/null pkgsrc/lang/python311/buildlink3.mk:1.1 --- /dev/null Mon Oct 31 09:52:13 2022 +++ pkgsrc/lang/python311/buildlink3.mk Mon Oct 31 09:52:13 2022 @@ -0,0 +1,24 @@ +# $NetBSD: buildlink3.mk,v 1.1 2022/10/31 09:52:13 adam Exp $ + +BUILDLINK_TREE+= python311 + +.if !defined(PYTHON311_BUILDLINK3_MK) +PYTHON311_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.python311+= python311>=3.11.0 +BUILDLINK_PKGSRCDIR.python311?= ../../lang/python311 + +.if defined(BUILDLINK_DEPMETHOD.python) +BUILDLINK_DEPMETHOD.python311?= ${BUILDLINK_DEPMETHOD.python} +.endif + +BUILDLINK_INCDIRS.python311+= include/python3.11 +BUILDLINK_LIBDIRS.python311+= lib/python3.11/config +BUILDLINK_TRANSFORM+= l:python:python3.11 + +.include "../../mk/dlopen.buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" +.include "../../devel/gettext-lib/buildlink3.mk" +.endif # PYTHON311_BUILDLINK3_MK + +BUILDLINK_TREE+= -python311 --_----------=_1667209933140320--