<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/bdea80396cf5d76d7727aabdc7d12b4c370c2a33">https://github.com/macports/macports-ports/commit/bdea80396cf5d76d7727aabdc7d12b4c370c2a33</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 bdea803 nghttp2: update to 1.32.1
</span>bdea803 is described below
<span style='display:block; white-space:pre;color:#808000;'>commit bdea80396cf5d76d7727aabdc7d12b4c370c2a33
</span>Author: Marius Schamschula <mps@macports.org>
AuthorDate: Sat Aug 25 06:35:02 2018 -0500
<span style='display:block; white-space:pre;color:#404040;'> nghttp2: update to 1.32.1
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> add python37 support, obsolete python35
</span>---
www/nghttp2/Portfile | 24 ++++++++++++++++--------
1 file changed, 16 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 68ba498..a90ff55 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;'>@@ -5,7 +5,7 @@ PortGroup cxx11 1.1
</span> PortGroup github 1.0
PortGroup snowleopard_fixes 1.0
<span style='display:block; white-space:pre;background:#ffe0e0;'>-github.setup tatsuhiro-t nghttp2 1.32.0 v
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+github.setup tatsuhiro-t nghttp2 1.32.1 v
</span> categories www
platforms darwin
maintainers {mps @Schamschula} openmaintainer
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -19,18 +19,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 cfcaac6eb27730b47d166210cccb7866985e47c1 \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- sha256 700a89d59fcc55acc2b18184001bfb3220fa6a6e543486aca35f40801cba6f7d
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+checksums rmd160 bb086aa7d3463260df3af5f7d86662b3287aad14 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ sha256 71ad04489b8e52df23a80166dfbf29d39bc48e39bc081e1e83ca8c94feeab7d0
</span>
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {![variant_isset python34] && ![variant_isset python35] && ![variant_isset python36] } { default_variants +python27 }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {![variant_isset python34] && ![variant_isset python35] && ![variant_isset python36] && ![variant_isset python37]} { default_variants +python27 }
</span>
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {![variant_isset python27] && ![variant_isset python34] && ![variant_isset python35] && ![variant_isset python36] } {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {![variant_isset python27] && ![variant_isset python34] && ![variant_isset python35] && ![variant_isset python36] && ![variant_isset python37]} {
</span> error "You must select one of the python variants."
}
if {[variant_isset python27]} { set PythonVersion 2.7 }
if {[variant_isset python35]} { set PythonVersion 3.5 }
if {[variant_isset python36]} { set PythonVersion 3.6 }
<span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[variant_isset python37]} { set PythonVersion 3.7 }
</span> set PythonBranch [join [lrange [split ${PythonVersion} .] 0 1] ""]
depends_build port:pkgconfig
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -67,10 +68,17 @@ pre-destroot {
</span> xinstall -d ${destroot}${prefix}/lib/python${PythonVersion}/site-packages/
}
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python27 conflicts python35 python36 description {Build using Python 2.7} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python27 conflicts python35 python36 python37 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 python35 conflicts python27 python36 description {Build using Python 3.5} {}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python35 conflicts python27 python36 python37 description {Build using Python 3.5 - obsolete} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ ui_error "Please do not install this variant since it has been replaced by the python37 variant."
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ return -code error
</span>
<span style='display:block; white-space:pre;background:#ffe0e0;'>-variant python36 conflicts python27 python35 description {Build using Python 3.6} {}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # remove after 08/25/2019
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python36 conflicts python27 python35 python37 description {Build using Python 3.6} {}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+variant python37 conflicts python27 python35 python36 description {Build using Python 3.7} {}
</span></pre><pre style='margin:0'>
</pre>