<pre style='margin:0'>
Jeremy Huddleston Sequoia (jeremyhu) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/ae53b6b0f446bfb57eeedaa778c3895974c0a665">https://github.com/macports/macports-ports/commit/ae53b6b0f446bfb57eeedaa778c3895974c0a665</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit ae53b6b0f446bfb57eeedaa778c3895974c0a665
</span>Author: Chih-Hsuan Yen <yan12125@gmail.com>
AuthorDate: Sun Jul 28 22:42:08 2019 +0800

<span style='display:block; white-space:pre;color:#404040;'>    xorg-xcb-proto: update python dependencies
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    * Make python37 variant the default
</span><span style='display:block; white-space:pre;color:#404040;'>    * Make python depends_build only. Python is not necessary to use ports
</span><span style='display:block; white-space:pre;color:#404040;'>    depending on XCB. Instead, python is used to build xorg-libxcb only.
</span><span style='display:block; white-space:pre;color:#404040;'>    * Remove python34. Python 3.4 has reached EOL on March 18, 2019.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/58727
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://trac.macports.org/ticket/58582
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    [1] https://www.python.org/downloads/release/python-3410/
</span>---
 x11/xorg-xcb-proto/Portfile | 30 +++++++++---------------------
 1 file changed, 9 insertions(+), 21 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/x11/xorg-xcb-proto/Portfile b/x11/xorg-xcb-proto/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index c458b07..b874140 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/x11/xorg-xcb-proto/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/x11/xorg-xcb-proto/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,7 +4,7 @@ PortSystem      1.0
</span> 
 name            xorg-xcb-proto
 version         1.13
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision        1
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision        2
</span> categories      x11 devel
 license         X11
 maintainers     {jeremyhu @jeremyhu} openmaintainer
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -27,38 +27,26 @@ use_autoreconf  yes
</span> 
 depends_run     port:libxml2
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python27 conflicts python34 python35 python36 python37 description {Use python 2.7} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    depends_lib-append      port:python27
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    configure.python        ${prefix}/bin/python2.7
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    license_noconflict      python27
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python34 conflicts python27 python35 python36 python37 description {Use python 3.4} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    depends_lib-append      port:python34
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    configure.python        ${prefix}/bin/python3.4
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    license_noconflict      python34
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python35 conflicts python27 python34 python36 python37 description {Use python 3.5} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    depends_lib-append      port:python35
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python35 conflicts python36 python37 description {Use python 3.5} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_build-append    port:python35
</span>     configure.python        ${prefix}/bin/python3.5
     license_noconflict      python35
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python36 conflicts python27 python34 python35 python37 description {Use python 3.6} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    depends_lib-append      port:python36
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python36 conflicts python35 python37 description {Use python 3.6} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_build-append    port:python36
</span>     configure.python        ${prefix}/bin/python3.6
     license_noconflict      python36
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python37 conflicts python27 python34 python35 python36 description {Use python 3.7} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    depends_lib-append      port:python37
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python37 conflicts python35 python36 description {Use python 3.7} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_build-append    port:python37
</span>     configure.python        ${prefix}/bin/python3.7
     license_noconflict      python37
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {![variant_isset python34] && ![variant_isset python35] && ![variant_isset python36] && ![variant_isset python37]} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    default_variants +python27
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {![variant_isset python35] && ![variant_isset python36]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    default_variants +python37
</span> }
 
 livecheck.type  regex
</pre><pre style='margin:0'>

</pre>