<pre style='margin:0'>
Jeremy Lavergne (nerdling) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/520ef68ee5c3d788ef5b4a35dc32b9b4170754c3">https://github.com/macports/macports-ports/commit/520ef68ee5c3d788ef5b4a35dc32b9b4170754c3</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 520ef68ee5c igraph: update to 0.9.1
</span>520ef68ee5c is described below
<span style='display:block; white-space:pre;color:#808000;'>commit 520ef68ee5c3d788ef5b4a35dc32b9b4170754c3
</span>Author: Szabolcs Horvát <szhorvat@gmail.com>
AuthorDate: Tue Mar 23 13:56:33 2021 +0100
<span style='display:block; white-space:pre;color:#404040;'> igraph: update to 0.9.1
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> * update to 0.9.1
</span><span style='display:block; white-space:pre;color:#404040;'> * use link-time optimization only when available, to support older systems
</span><span style='display:block; white-space:pre;color:#404040;'> * remove obsolete workaround to ignore unknown compiler options
</span>---
math/igraph/Portfile | 19 ++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/math/igraph/Portfile b/math/igraph/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 91b6e89175e..3679fbcd1a1 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/math/igraph/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/math/igraph/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,7 +4,7 @@ PortSystem 1.0
</span> PortGroup cmake 1.1
PortGroup github 1.0
<span style='display:block; white-space:pre;background:#ffe0e0;'>-github.setup igraph igraph 0.9.0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+github.setup igraph igraph 0.9.1
</span> revision 0
github.tarball_from releases
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -22,9 +22,9 @@ depends_lib port:arpack \
</span> port:libxml2 \
port:SuiteSparse_CXSparse
<span style='display:block; white-space:pre;background:#ffe0e0;'>-checksums rmd160 297c06d217d6c6059b721ec0aa5d59e096004585 \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- sha256 012e5d5a50420420588c33ec114c6b3000ccde544db3f25c282c1931c462ad7a \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- size 3752584
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+checksums rmd160 3f35656783543e0fd4d9169ec05e00f8d7affe0f \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ sha256 1902810650e8f9d98feefa3eca735db5a879416d00a08f68aad2ca07964cee9f \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ size 3803713
</span>
test.run yes
test.target check
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -35,15 +35,14 @@ compiler.cxx_standard \
</span> # Build options for igraph:
# - Do not use ccache to build this port unless MacPorts tells it to.
# - Build a shared library.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# - Enable link-time optimization.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# - Enable link-time optimization when available.
</span> # - Set features and the use of externaly libraries explicitly---do not leave this to auto-detection.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# - As of igraph 0.9, linking to GMP provides no tangible benefits, thus disable this.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# - As of igraph 0.9.1, linking to GMP provides no tangible benefits, thus disable this.
</span> # - Use the vecLib BLAS/LAPACK.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# - Do not error on unknown diagnostic options, in order to support building with old clang versions.
</span> configure.args-append \
-DUSE_CCACHE=OFF \
-DBUILD_SHARED_LIBS=ON \
<span style='display:block; white-space:pre;background:#ffe0e0;'>- -DIGRAPH_ENABLE_LTO=ON \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ -DIGRAPH_ENABLE_LTO=AUTO \
</span> -DIGRAPH_GLPK_SUPPORT=ON \
-DIGRAPH_GRAPHML_SUPPORT=ON \
-DIGRAPH_USE_INTERNAL_ARPACK=OFF \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -52,9 +51,7 @@ configure.args-append \
</span> -DIGRAPH_USE_INTERNAL_GLPK=OFF \
-DIGRAPH_USE_INTERNAL_GMP=ON \
-DIGRAPH_USE_INTERNAL_LAPACK=OFF \
<span style='display:block; white-space:pre;background:#ffe0e0;'>- -DBLA_VENDOR=Apple \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- -DCMAKE_C_FLAGS=-Wno-unknown-warning-option \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- -DCMAKE_CXX_FLAGS=-Wno-unknown-warning-option
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ -DBLA_VENDOR=Apple
</span>
post-destroot {
set docdir ${prefix}/share/doc/${name}
</pre><pre style='margin:0'>
</pre>