Hook Python 3.10 into build and add the necessary bit to python.port.mk

to accept Python 3.10
This commit is contained in:
kmos 2021-11-01 14:17:16 +00:00
parent 856d7d22f1
commit 0bd996c76c
2 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,10 @@
# $OpenBSD: Makefile,v 1.73 2020/12/29 23:59:06 daniel Exp $
# $OpenBSD: Makefile,v 1.74 2021/11/01 14:17:16 kmos Exp $
SUBDIR =
SUBDIR += 2.7
SUBDIR += 3.8
SUBDIR += 3.9
SUBDIR += 3.10
.include <bsd.port.subdir.mk>

View File

@ -1,4 +1,4 @@
# $OpenBSD: python.port.mk,v 1.133 2021/11/01 03:55:31 kmos Exp $
# $OpenBSD: python.port.mk,v 1.134 2021/11/01 14:17:16 kmos Exp $
#
# python.port.mk - Xavier Santolaria <xavier@santolaria.net>
# This file is in the public domain.
@ -60,7 +60,8 @@ MODPY_VERSION ?= ${MODPY_DEFAULT_VERSION_2}
# verify if MODPY_VERSION found is correct
.if ${MODPY_VERSION} != "2.7" && \
${MODPY_VERSION} != "3.8" && \
${MODPY_VERSION} != "3.9"
${MODPY_VERSION} != "3.9" && \
${MODPY_VERSION} != "3.10"
ERRORS += "Fatal: unknown or unsupported MODPY_VERSION: ${MODPY_VERSION}"
.endif