<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/b120a68e3998a929aae20b4571e49bc2c25bd56c">https://github.com/macports/macports-ports/commit/b120a68e3998a929aae20b4571e49bc2c25bd56c</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 b120a68  aria2: add c-ares variant, fix nettle dependency
</span>b120a68 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit b120a68e3998a929aae20b4571e49bc2c25bd56c
</span>Author: Marius Schamschula <mps@macports.org>
AuthorDate: Sun Jun 30 06:25:31 2019 -0500

<span style='display:block; white-space:pre;color:#404040;'>    aria2: add c-ares variant, fix nettle dependency
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    add c-ares variant, rather than allowing for opportunistic linking
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/58660
</span><span style='display:block; white-space:pre;color:#404040;'>    nettle is not a global, but a gnutls dependency
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/58661
</span>---
 net/aria2/Portfile | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/net/aria2/Portfile b/net/aria2/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index fe0a5f0..ce13e7a 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/net/aria2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/net/aria2/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5,7 +5,7 @@ PortGroup           github 1.0
</span> PortGroup           cxx11 1.1
 
 github.setup        aria2 aria2 1.34.0 release-
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision            2
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            3
</span> github.tarball_from releases
 categories          net
 platforms           darwin
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -25,8 +25,7 @@ depends_build-append    port:pkgconfig
</span> depends_lib-append      port:gettext \
                         port:libiconv \
                         port:libuv \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                        port:libxml2 \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                        port:nettle
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                        port:libxml2
</span> 
 # use_* must be defined after depends_*, otherwise the automatic dependencies
 # will be overwritten.
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -39,8 +38,14 @@ configure.args      --with-libiconv-prefix=${prefix} \
</span>                     --with-libintl-prefix=${prefix} \
                     --with-libuv \
                     --with-xml-prefix=${prefix} \
<span style='display:block; white-space:pre;background:#e0ffe0;'>+                    --without-libcares \
</span>                     --without-sqlite3
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+variant cares description {Add c-ares support} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.args-replace  --without-libcares --with-libcares
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_lib-append      port:c-ares
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> variant gnutls conflicts openssl description {Use GNU TLS instead of Apple built-in TLS library} {
     configure.args-append   --without-appletls \
                             --with-gnutls \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -54,7 +59,6 @@ variant openssl conflicts gnutls description {Use OpenSSL instead of Apple built
</span>                             --with-openssl \
                             --with-openssl-prefix=${prefix}
     depends_lib-append      path:lib/libssl.dylib:openssl
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    depends_lib-delete      port:nettle
</span> }
 
 variant sqlite3 description {Add sqlite3 support} {
</pre><pre style='margin:0'>

</pre>