Date: Mon, 03 Nov 2025 11:04:36 +0000 From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 274671] lang/python313: New port, 3.13.9 release Message-ID: <bug-274671-21822-54dWocc07x@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-274671-21822@https.bugs.freebsd.org/bugzilla/>
index | next in thread | previous in thread | raw e-mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274671 Yasuhito FUTATSUKI <freebsd-bug-report-yf@yf.bsdclub.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd-bug-report-yf@yf.bs | |dclub.org --- Comment #45 from Yasuhito FUTATSUKI <freebsd-bug-report-yf@yf.bsdclub.org> --- devel/commitizen and textproc/py-towncrier uses PYTHON_VER as numeric and it prevents making ports index. diff --git a/devel/commitizen/Makefile b/devel/commitizen/Makefile index 42cff50d24ed..1c259db61f51 100644 --- a/devel/commitizen/Makefile +++ b/devel/commitizen/Makefile @@ -32,6 +32,6 @@ NO_ARCH= yes .include <bsd.port.mk> -.if ${PYTHON_MAJOR_VER} == 3 && ${PYTHON_VER:E} < 10 +.if ${PYTHON_MAJOR_VER} == 3 && ${PYTHON_BASEVER:E} < 10 PY_RDEPS+= importlib-metadata>=8.0.0:devel/py-importlib-metadata .endif diff --git a/textproc/py-towncrier/Makefile b/textproc/py-towncrier/Makefile index 5a358a1aa2ba..40b1316c1aba 100644 --- a/textproc/py-towncrier/Makefile +++ b/textproc/py-towncrier/Makefile @@ -25,7 +25,7 @@ NO_ARCH= yes .include <bsd.port.pre.mk> -.if defined(PYTHON_VER) && ${PYTHON_VER} < 3.10 +.if defined(PYTHON_BASEVER) && ${PYTHON_BASEVER} < 3.10 BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=7.1.0:devel/py-importlib-metadata@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}importlib-resources>=6.4.0:devel/py-importlib-resources@${PY_FLAVOR} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=7.1.0:devel/py-importlib-metadata@${PY_FLAVOR} \ -- You are receiving this mail because: You are the assignee for the bug.home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-274671-21822-54dWocc07x>
