diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2018-12-12 07:36:44 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2018-12-12 07:36:44 -0500 |
commit | 0da3b4bf1243fed8eaa398f2a4e45d55474b9447 (patch) | |
tree | 6abeefcf45c8eb15d252ed3af7abd965f9d6fbdb /net-misc | |
parent | net-misc/curl: version bump to 7.63.0 (diff) | |
download | gentoo-0da3b4bf1243fed8eaa398f2a4e45d55474b9447.tar.gz gentoo-0da3b4bf1243fed8eaa398f2a4e45d55474b9447.tar.bz2 gentoo-0da3b4bf1243fed8eaa398f2a4e45d55474b9447.zip |
net-misc/curl: remove axtls support in 7.63.0
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/curl/curl-7.63.0.ebuild | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/net-misc/curl/curl-7.63.0.ebuild b/net-misc/curl/curl-7.63.0.ebuild index d13d87e7796c..fe3a028e413c 100644 --- a/net-misc/curl/curl-7.63.0.ebuild +++ b/net-misc/curl/curl-7.63.0.ebuild @@ -13,7 +13,7 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="adns brotli http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl static-libs test threads" -IUSE+=" curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl" +IUSE+=" curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl" IUSE+=" elibc_Winnt" #lead to lots of false negatives, bug #285669 @@ -22,10 +22,6 @@ RESTRICT="test" RDEPEND="ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] ) brotli? ( app-arch/brotli:=[${MULTILIB_USEDEP}] ) ssl? ( - curl_ssl_axtls? ( - net-libs/axtls:0=[${MULTILIB_USEDEP}] - app-misc/ca-certificates - ) curl_ssl_gnutls? ( net-libs/gnutls:0=[static-libs?,${MULTILIB_USEDEP}] dev-libs/nettle:0=[${MULTILIB_USEDEP}] @@ -79,7 +75,6 @@ REQUIRED_USE=" threads? ( !adns ) ssl? ( ^^ ( - curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls @@ -123,13 +118,10 @@ multilib_src_configure() { # So start with all ssl providers off until proven otherwise # TODO: in the future, we may want to add wolfssl (https://www.wolfssl.com/) local myconf=() - myconf+=( --without-axtls --without-gnutls --without-mbedtls --without-nss --without-polarssl --without-ssl --without-winssl ) + myconf+=( --without-gnutls --without-mbedtls --without-nss --without-polarssl --without-ssl --without-winssl ) myconf+=( --without-ca-fallback --with-ca-bundle="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt ) if use ssl ; then - if use curl_ssl_axtls; then - einfo "SSL provided by axtls" - myconf+=( --with-axtls ) - elif use curl_ssl_gnutls; then + if use curl_ssl_gnutls; then einfo "SSL provided by gnutls" myconf+=( --with-gnutls --with-nettle ) elif use curl_ssl_libressl; then |