<pre style='margin:0'>
Zhenfu Shi (i0ntempest) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/d59348ef805fd950c1de775fde69b7b204e238b6">https://github.com/macports/macports-ports/commit/d59348ef805fd950c1de775fde69b7b204e238b6</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new d59348ef805 multiple: add python39 support (#9570)
</span>d59348ef805 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit d59348ef805fd950c1de775fde69b7b204e238b6
</span>Author: Zhenfu Shi <szf1234@me.com>
AuthorDate: Thu Jan 14 10:22:26 2021 +0800

<span style='display:block; white-space:pre;color:#404040;'>    multiple: add python39 support (#9570)
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    * gexiv2: add python39 support
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    * gtk-doc: add python39 support
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    * gegl: add python39 support
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    * libepoxy: add python39 support
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    * py-anytree: add python39 support
</span>---
 gnome/gexiv2/Portfile      | 15 +++++++++++----
 gnome/gtk-doc/Portfile     | 21 +++++++++++++++++----
 graphics/gegl/Portfile     |  8 ++++----
 graphics/libepoxy/Portfile | 15 ++++++++++-----
 python/py-anytree/Portfile |  2 +-
 5 files changed, 43 insertions(+), 18 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/gnome/gexiv2/Portfile b/gnome/gexiv2/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 8e64b911aa4..3b4eb10f07e 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/gnome/gexiv2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/gnome/gexiv2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -43,21 +43,26 @@ variant python27 description {Build Python2 bindings using Python 2.7} {
</span> 
 default_variants +python27
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python36 conflicts python37 python38 description {Build Python3 bindings using Python 3.6} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python36 conflicts python37 python38 python39 description {Build Python3 bindings using Python 3.6} {
</span>     depends_lib-append      port:py36-gobject3
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python37 conflicts python36 python38 description {Build Python3 bindings using Python 3.7} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python37 conflicts python36 python38 python39 description {Build Python3 bindings using Python 3.7} {
</span>     depends_lib-append      port:py37-gobject3
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python38 conflicts python36 python37 description {Build Python3 bindings using Python 3.8} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python38 conflicts python36 python37 python39 description {Build Python3 bindings using Python 3.8} {
</span>     depends_lib-append      port:py38-gobject3
 }
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python39 conflicts python36 python37 python38 description {Build Python3 bindings using Python 3.9} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_lib-append      port:py39-gobject3
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> if {![variant_isset python36] && \
     ![variant_isset python37] && \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    ![variant_isset python38]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ![variant_isset python38] && \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ![variant_isset python39]} {
</span>     default_variants +python38
 }
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -76,6 +81,8 @@ post-patch {
</span>         reinplace "s|@@PYTHON3_BIN@@|${prefix}/bin/python3.7|" ${worksrcpath}/meson.build
     } elseif {[variant_isset python38]} {
         reinplace "s|@@PYTHON3_BIN@@|${prefix}/bin/python3.8|" ${worksrcpath}/meson.build
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    } elseif {[variant_isset python39]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace "s|@@PYTHON3_BIN@@|${prefix}/bin/python3.9|" ${worksrcpath}/meson.build
</span>     } else {
         configure.args-append -Dpython3_girdir=no
     }
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/gnome/gtk-doc/Portfile b/gnome/gtk-doc/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index bbbfd7f8ee2..ceda9325fe5 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/gnome/gtk-doc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/gnome/gtk-doc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -54,7 +54,7 @@ configure.env-append XSLTPROC=${prefix}/bin/xsltproc
</span> configure.args      --with-xml-catalog=${prefix}/etc/xml/catalog \
                     --disable-silent-rules
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python36 conflicts python37 python38 description {Build using Python 3.6} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python36 conflicts python37 python38 python39 description {Build using Python 3.6} {
</span>     depends_lib-append \
         port:python36 \
         port:py36-anytree \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -66,7 +66,7 @@ variant python36 conflicts python37 python38 description {Build using Python 3.6
</span>     configure.python    ${prefix}/bin/python3.6
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python37 conflicts python36 python38 description {Build using Python 3.7} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python37 conflicts python36 python38 python39 description {Build using Python 3.7} {
</span>     depends_lib-append \
         port:python37 \
         port:py37-anytree \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -78,7 +78,7 @@ variant python37 conflicts python36 python38 description {Build using Python 3.7
</span>     configure.python    ${prefix}/bin/python3.7
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python38 conflicts python36 python37 description {Build using Python 3.8} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python38 conflicts python36 python37 python39 description {Build using Python 3.8} {
</span>     depends_lib-append \
         port:python38 \
         port:py38-anytree \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -90,9 +90,22 @@ variant python38 conflicts python36 python37 description {Build using Python 3.8
</span>     configure.python    ${prefix}/bin/python3.8
 }
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python39 conflicts python36 python37 python38 description {Build using Python 3.9} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_lib-append \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        port:python39 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        port:py39-anytree \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        port:py39-lxml \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        port:py39-pygments
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_test        port:py39-mock
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.python    ${prefix}/bin/python3.9
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> if {![variant_isset python36] &&
     ![variant_isset python37] &&
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    ![variant_isset python38] } {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ![variant_isset python38] &&
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ![variant_isset python39] } {
</span>     default_variants +python38
 }
 
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/graphics/gegl/Portfile b/graphics/gegl/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 4cba77a450a..ea3daf466ef 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/graphics/gegl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/graphics/gegl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -8,7 +8,7 @@ PortGroup           legacysupport 1.0
</span> 
 name                gegl
 version             0.4.26
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision            0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span> set branch          [join [lrange [split ${version} .] 0 1] .]
 conflicts           gegl-devel
 license             {GPL-3+ LGPL-3+}
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -33,7 +33,7 @@ checksums           rmd160  df57119d659c8a5dacae6fcf3783058d7dd10e3f \
</span> 
 depends_build-append \
                     port:pkgconfig \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    port:python38
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    port:python39
</span> 
 depends_lib         port:babl \
                     path:lib/pkgconfig/cairo.pc:cairo \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -54,7 +54,7 @@ depends_lib         port:babl \
</span>                     port:libspiro \
                     port:openexr \
                     port:poly2tri-c \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    port:py38-gobject3 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    port:py39-gobject3 \
</span>                     port:poppler \
                     port:SuiteSparse_UMFPACK \
                     port:webp
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -83,7 +83,7 @@ compiler.c_standard   2011
</span> # ../gegl/gegl-parallel.h:134:29: error: expected expression '[] (gint     i,'
 compiler.blacklist-append  {clang < 700}
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-set python_framework        ${frameworks_dir}/Python.framework/Versions/3.8
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+set python_framework        ${frameworks_dir}/Python.framework/Versions/3.9
</span> configure.pkg_config_path   ${python_framework}/lib/pkgconfig
 
 # disable vala extensions by default (currently broken)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/graphics/libepoxy/Portfile b/graphics/libepoxy/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 86f28001004..6deb0872490 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/graphics/libepoxy/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/graphics/libepoxy/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -45,26 +45,31 @@ configure.cmd       ./autogen.sh
</span> configure.args      --disable-silent-rules \
                     --enable-glx
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python27 conflicts python36 python37 python38 description {build with python 2.7} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python27 conflicts python36 python37 python38 python39 description {build with python 2.7} {
</span>     depends_build-append    port:python27
     configure.python        ${prefix}/bin/python2.7
 }
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python36 conflicts python27 python37 python38 description {build with python 3.6} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python36 conflicts python27 python37 python38 python39 description {build with python 3.6} {
</span>     depends_build-append    port:python36
     configure.python        ${prefix}/bin/python3.6
 }
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python37 conflicts python27 python36 python38 description {build with python 3.7} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python37 conflicts python27 python36 python38 python39 description {build with python 3.7} {
</span>     depends_build-append    port:python37
     configure.python        ${prefix}/bin/python3.7
 }
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python38 conflicts python27 python36 python37 description {build with python 3.8} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python38 conflicts python27 python36 python37 python39 description {build with python 3.8} {
</span>     depends_build-append    port:python38
     configure.python        ${prefix}/bin/python3.8
 }
<span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python39 conflicts python27 python36 python37 python38 description {build with python 3.9} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_build-append    port:python39
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.python        ${prefix}/bin/python3.9
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span> 
 if {![variant_isset python27] && \
     ![variant_isset python36] && \
     ![variant_isset python37] && \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    ![variant_isset python38]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ![variant_isset python38] && \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    ![variant_isset python39]} {
</span>     default_variants-append +python38
 }
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/python/py-anytree/Portfile b/python/py-anytree/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index bb0cbcb9c6b..54502d09e2c 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/python/py-anytree/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/python/py-anytree/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -22,7 +22,7 @@ checksums           rmd160  2f48920927d32f56c584bcfce9dc40fabe604faa \
</span>                     sha256  3f0f93f355a91bc3e6245319bf4c1d50e3416cc7a35cc1133c1ff38306bbccab \
                     size    189484
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-python.versions     27 35 36 37 38
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+python.versions     27 35 36 37 38 39
</span> 
 if {${name} ne ${subport}} {
     depends_build-append \
</pre><pre style='margin:0'>

</pre>