commit 73828baf8d0fe7f30056ffdfe75fe54ba9f8a7ac Author: Juergen Daubert <jue@jue.li> Date: Sun Apr 26 13:29:20 2020 +0200 fetchmail: update to 6.4.4 diff --git a/fetchmail/.signature b/fetchmail/.signature index 4d7776bfb..8838c9c17 100644 --- a/fetchmail/.signature +++ b/fetchmail/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/XCAZeXONEtYNTZmt1QUS3jDQx2QJOsnZ2kl+B8HzLaGyT6oF0zwsbr1lCElOsvjyQuISDs7NWrtfvadKHB2/Q0= -SHA256 (Pkgfile) = 8e5f400cb225abeddba5db2278f3ac7aa06fb5803f4a3b28ae99280238807866 +RWSE3ohX2g5d/aW3y+z+43Frl97HI9bcd/ofRw5yGWREzZ02N72yCu8iXu43t8aoamTX5o+vccpH22ROHVcvCHXCt9k5KpHP4Q8= +SHA256 (Pkgfile) = abbb81efdb90b09b98b3f4c5ea67dd6170b4757a7ade800c71e769f81b133e53 SHA256 (.footprint) = c52f9b61b3ffbab88aa941546c7721245d6c825056bd4948b84b94966203996d -SHA256 (fetchmail-6.4.3.tar.xz) = b0360e14b9aa5d065eef8ff99ad0347ef6cbbfc934c8114908295a402a09d3e4 +SHA256 (fetchmail-6.4.4.tar.xz) = 511b60daabf7543a01de06af07c8772290c6807cd53c42a8504960e978f3abea diff --git a/fetchmail/Pkgfile b/fetchmail/Pkgfile index a8e7920d7..2f7758a46 100644 --- a/fetchmail/Pkgfile +++ b/fetchmail/Pkgfile @@ -4,7 +4,7 @@ # Depends on: openssl name=fetchmail -version=6.4.3 +version=6.4.4 release=1 source=(http://downloads.sourceforge.net/project/$name/branch_${version%.*}/$name-$version.tar.xz) diff --git a/fetchmail/disable-sslv3.patch b/fetchmail/disable-sslv3.patch deleted file mode 100644 index 2edc41e2b..000000000 --- a/fetchmail/disable-sslv3.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff -u -r fetchmail-6.3.26/socket.c fetchmail-6.3.26-nossl3/socket.c ---- fetchmail-6.3.26/socket.c 2013-04-23 22:00:45.000000000 +0200 -+++ fetchmail-6.3.26-nossl3/socket.c 2016-03-03 18:18:46.688881618 +0100 -@@ -907,14 +907,11 @@ - _ssl_context[sock] = NULL; - if(myproto) { - if(!strcasecmp("ssl2",myproto)) { --#if HAVE_DECL_SSLV2_CLIENT_METHOD + 0 > 0 -- _ctx[sock] = SSL_CTX_new(SSLv2_client_method()); --#else - report(stderr, GT_("Your operating system does not support SSLv2.\n")); - return -1; --#endif - } else if(!strcasecmp("ssl3",myproto)) { -- _ctx[sock] = SSL_CTX_new(SSLv3_client_method()); -+ report(stderr, GT_("Your operating system does not support SSLv3.\n")); -+ return -1; - } else if(!strcasecmp("tls1",myproto)) { - _ctx[sock] = SSL_CTX_new(TLSv1_client_method()); - } else if (!strcasecmp("ssl23",myproto)) {