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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/3303dad442f51c091155fd68712634846d4d8cbb">https://github.com/macports/macports-ports/commit/3303dad442f51c091155fd68712634846d4d8cbb</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 3303dad  nghttp2: update to version 1.18.1
</span>3303dad is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 3303dad442f51c091155fd68712634846d4d8cbb
</span>Author: Marius Schamschula <mps@macports.org>
AuthorDate: Thu Jan 5 08:45:56 2017 -0600

<span style='display:block; white-space:pre;color:#404040;'>    nghttp2: update to version 1.18.1
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Add python 3.6 support
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://github.com/nghttp2/nghttp2/releases/tag/v1.18.1
</span>---
 www/nghttp2/Portfile | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/www/nghttp2/Portfile b/www/nghttp2/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index afe483b..954b11a 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/www/nghttp2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/www/nghttp2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,7 +4,7 @@ PortSystem          1.0
</span> PortGroup           cxx11 1.0
 PortGroup           github 1.0
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-github.setup        tatsuhiro-t nghttp2 1.18.0 v
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+github.setup        tatsuhiro-t nghttp2 1.18.1 v
</span> categories          www
 platforms           darwin
 maintainers         mps openmaintainer
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -18,18 +18,19 @@ long_description    ${description} Included are a HTTP/2 client, server and prox
</span> github.tarball_from releases
 use_xz              yes
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-checksums           rmd160 ab8e3cb7a74545e5a8f3d1d10a805fd06b49adad \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                    sha256 5e5620e103f9239c0758e0fbfcf9bc04744794c1ce7a415583fbd4c2671a4499
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+checksums           rmd160 5d1795a6c2f1e440e121779362bfa3591e2824b4 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    sha256 82a929415ce4115dcb4d2917402cb938c29f98ca705d9c0425eb6c02a50d5ae1
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {![variant_isset python34] && ![variant_isset python35] } { default_variants +python27 }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {![variant_isset python34] && ![variant_isset python35] && ![variant_isset python36] } { default_variants +python27 }
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {![variant_isset python27] && ![variant_isset python34] && ![variant_isset python35]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {![variant_isset python27] && ![variant_isset python34] && ![variant_isset python35] && ![variant_isset python36] } {
</span>     error "You must select one of the python variants."
 }
 
 if {[variant_isset python27]} { set PythonVersion   2.7 }
 if {[variant_isset python34]} { set PythonVersion   3.4 }
 if {[variant_isset python35]} { set PythonVersion   3.5 }
<span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[variant_isset python35]} { set PythonVersion   3.6 }
</span> set PythonBranch    [join [lrange [split ${PythonVersion} .] 0 1] ""]
 
 depends_build       port:pkgconfig
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -62,10 +63,12 @@ pre-destroot {
</span>     xinstall -d ${destroot}${prefix}/lib/python${PythonVersion}/site-packages/
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python27 conflicts python34 python35 description {Build using Python 2.7} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python27 conflicts python34 python35 python36 description {Build using Python 2.7} {
</span>     configure.env-append   PYTHON_EXTRA_LDFLAGS="-u _PyMac_Error ${frameworks_dir}/Python.framework/Versions/${PythonVersion}/Python"
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python34 conflicts python27 python35 description {Build using Python 3.4} {}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python34 conflicts python27 python35 python36 description {Build using Python 3.4} {}
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python35 conflicts python27 python34 description {Build using Python 3.5} {}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python35 conflicts python27 python34 python36 description {Build using Python 3.5} {}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python36 conflicts python27 python34 python35 description {Build using Python 3.6} {}
</span></pre><pre style='margin:0'>

</pre>