Skip to content

Commit

Permalink
gtk-doc: add and default to python 3.13 variant
Browse files Browse the repository at this point in the history
remove python 3.8
  • Loading branch information
i0ntempest committed Feb 20, 2025
1 parent 221de76 commit f9407c5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions gnome/gtk-doc/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,32 +83,32 @@ proc py_setup {p_py_ver} {
port:py${py_ver_nodot}-mock
}

variant python38 conflicts python39 python310 python311 python312 description {Build using Python 3.8} {
py_setup 3.8
}

variant python39 conflicts python38 python310 python311 python312 description {Build using Python 3.9} {
variant python39 conflicts python310 python311 python312 python313 description {Build using Python 3.9} {
py_setup 3.9
}

variant python310 conflicts python38 python39 python311 python312 description {Build using Python 3.10} {
variant python310 conflicts python39 python311 python312 python313 description {Build using Python 3.10} {
py_setup 3.10
}

variant python311 conflicts python38 python39 python310 python312 description {Build using Python 3.11} {
variant python311 conflicts python39 python310 python312 python313 description {Build using Python 3.11} {
py_setup 3.11
}

variant python312 conflicts python38 python39 python310 python311 description {Build using Python 3.12} {
variant python312 conflicts python39 python310 python311 python313 description {Build using Python 3.12} {
py_setup 3.12
}

if {![variant_isset python38] &&
![variant_isset python39] &&
variant python313 conflicts python39 python310 python311 python312 description {Build using Python 3.13} {
py_setup 3.13
}

if {![variant_isset python39] &&
![variant_isset python310] &&
![variant_isset python311] &&
![variant_isset python312] } {
default_variants +python312
![variant_isset python312] &&
![variant_isset python313] } {
default_variants +python313
}

# some tests are known to fail in gtk-doc 1.29+
Expand Down

0 comments on commit f9407c5

Please sign in to comment.