aboutsummaryrefslogtreecommitdiff
path: root/www/aria2
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2013-02-18 18:59:05 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2013-02-18 18:59:05 +0000
commitc623b458bf0148b24663599f94db99f3f4af0bed (patch)
treef7c42c728a338043b7f94ea6fa4f5e9821ab52e1 /www/aria2
parentfcaa64be385c12249a078df90956d96edc5615da (diff)
downloadports-c623b458bf0148b24663599f94db99f3f4af0bed.tar.gz
ports-c623b458bf0148b24663599f94db99f3f4af0bed.zip
Notes
Diffstat (limited to 'www/aria2')
-rw-r--r--www/aria2/Makefile2
-rw-r--r--www/aria2/distinfo4
-rw-r--r--www/aria2/files/patch-src-LibsslTLSContext.cc15
3 files changed, 3 insertions, 18 deletions
diff --git a/www/aria2/Makefile b/www/aria2/Makefile
index f124a07395a6..2080da6f6553 100644
--- a/www/aria2/Makefile
+++ b/www/aria2/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= aria2
-PORTVERSION= 1.16.1
+PORTVERSION= 1.16.3
CATEGORIES= www
MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION}
diff --git a/www/aria2/distinfo b/www/aria2/distinfo
index 023bbb108c6b..965a44aaa833 100644
--- a/www/aria2/distinfo
+++ b/www/aria2/distinfo
@@ -1,2 +1,2 @@
-SHA256 (aria2-1.16.1.tar.bz2) = 8bbe1d741289e299edb12ff461455e4b57d7b18ed3e138da936e4906fd9368e1
-SIZE (aria2-1.16.1.tar.bz2) = 2079662
+SHA256 (aria2-1.16.3.tar.bz2) = 989f8eb5599394681d75e18acf3d4261870cc2dce70b813ce84305dc3c9e50a2
+SIZE (aria2-1.16.3.tar.bz2) = 2082238
diff --git a/www/aria2/files/patch-src-LibsslTLSContext.cc b/www/aria2/files/patch-src-LibsslTLSContext.cc
deleted file mode 100644
index ba0326bf41d9..000000000000
--- a/www/aria2/files/patch-src-LibsslTLSContext.cc
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/LibsslTLSContext.cc.orig 2012-12-01 22:52:46.000000000 +0800
-+++ src/LibsslTLSContext.cc 2012-12-09 00:35:46.456524052 +0800
-@@ -57,8 +57,12 @@
- ERR_error_string(ERR_get_error(), 0)));
- }
- // Disable SSLv2 and enable all workarounds for buggy servers
-+ #ifdef SSL_OP_NO_COMPRESSION
- SSL_CTX_set_options(sslCtx_, SSL_OP_ALL|SSL_OP_NO_SSLv2|
- SSL_OP_NO_COMPRESSION);
-+ #else
-+ SSL_CTX_set_options(sslCtx_, SSL_OP_ALL|SSL_OP_NO_SSLv2);
-+ #endif
- SSL_CTX_set_mode(sslCtx_, SSL_MODE_AUTO_RETRY);
- SSL_CTX_set_mode(sslCtx_, SSL_MODE_ENABLE_PARTIAL_WRITE);
- #ifdef SSL_MODE_RELEASE_BUFFERS