From 3c6019e1c4ccd118b1fcff9ca8fea8e392147fa4 Mon Sep 17 00:00:00 2001 From: akierig Date: Fri, 6 Feb 2026 23:12:34 -0600 Subject: [PATCH] img2pdf: add python 3.14 --- graphics/img2pdf/Portfile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/graphics/img2pdf/Portfile b/graphics/img2pdf/Portfile index 1b44df556cc..4dac591afa3 100644 --- a/graphics/img2pdf/Portfile +++ b/graphics/img2pdf/Portfile @@ -16,16 +16,17 @@ supported_archs noarch platforms {darwin any} homepage https://gitlab.mister-muffin.de/josch/img2pdf -variant python310 conflicts python311 python312 python313 description {Use Python 3.10} {} -variant python311 conflicts python310 python312 python313 description {Use Python 3.11} {} -variant python312 conflicts python310 python311 python313 description {Use Python 3.12} {} -variant python313 conflicts python310 python311 python312 description {Use Python 3.13} {} +variant python310 conflicts python311 python312 python313 python314 description {Use Python 3.10} {} +variant python311 conflicts python310 python312 python313 python314 description {Use Python 3.11} {} +variant python312 conflicts python310 python311 python313 python314 description {Use Python 3.12} {} +variant python313 conflicts python310 python311 python312 python314 description {Use Python 3.13} {} +variant python314 conflicts python310 python311 python312 python313 description {Use Python 3.14} {} -if {![variant_isset python310] && ![variant_isset python311] && ![variant_isset python312]} { - default_variants +python313 +if {![variant_isset python310] && ![variant_isset python311] && ![variant_isset python312] && ![variant_isset python313]} { + default_variants +python314 } -foreach pv {313 312 311 310} { +foreach pv {313 312 311 310 314} { if {[variant_isset python${pv}]} { python.default_version ${pv} break