aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorJason Helfman <jgh@FreeBSD.org>2014-11-23 07:43:18 +0000
committerJason Helfman <jgh@FreeBSD.org>2014-11-23 07:43:18 +0000
commitfd33de209752ba008b8fb182df9af706936bf842 (patch)
tree67cef204eae088febb22249f4dd9c9ca55514801 /net
parent56d6d5db176fa1d3893c6dac60748ffb092e6ad1 (diff)
downloadports-fd33de209752ba008b8fb182df9af706936bf842.tar.gz
ports-fd33de209752ba008b8fb182df9af706936bf842.zip
- update to 1.07
- patch obsoleted by upstream merge PR: 193837 Submitted by: jcm@visi.co (maintainer) Reported by: freebsd@spambox.dk
Notes
Notes: svn path=/head/; revision=373124
Diffstat (limited to 'net')
-rw-r--r--net/svnup/Makefile3
-rw-r--r--net/svnup/distinfo4
-rw-r--r--net/svnup/files/patch-svnup.c11
3 files changed, 3 insertions, 15 deletions
diff --git a/net/svnup/Makefile b/net/svnup/Makefile
index 8b5d3270ace7..511eaa8234f3 100644
--- a/net/svnup/Makefile
+++ b/net/svnup/Makefile
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= svnup
-PORTVERSION= 1.06
-PORTREVISION= 1
+PORTVERSION= 1.07
CATEGORIES= net
MASTER_SITES= http://jcm.dsl.visi.com/freebsd/svnup/ \
LOCAL/jgh/net/${PORTNAME}/
diff --git a/net/svnup/distinfo b/net/svnup/distinfo
index 2cf81b025465..d5d389082049 100644
--- a/net/svnup/distinfo
+++ b/net/svnup/distinfo
@@ -1,2 +1,2 @@
-SHA256 (svnup-1.06.tar.xz) = 58cfa21b812da6dcd808334cbeff68f445a75adfd78f6986b9db1edb87ee2fe4
-SIZE (svnup-1.06.tar.xz) = 19280
+SHA256 (svnup-1.07.tar.xz) = f6486fa384eab0ed565246ed3906aeb768f252e8662111e87476fdbed7159569
+SIZE (svnup-1.07.tar.xz) = 19528
diff --git a/net/svnup/files/patch-svnup.c b/net/svnup/files/patch-svnup.c
deleted file mode 100644
index 5c79303d945f..000000000000
--- a/net/svnup/files/patch-svnup.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- svnup.c.orig 2014-09-06 03:16:15.000000000 +0200
-+++ svnup.c 2014-10-08 15:11:07.593705013 +0200
-@@ -355,7 +355,7 @@
- SSL_load_error_strings();
- connection->ctx = SSL_CTX_new(SSLv23_client_method());
- SSL_CTX_set_mode(connection->ctx, SSL_MODE_AUTO_RETRY);
-- SSL_CTX_set_options(connection->ctx, SSL_OP_ALL | SSL_OP_NO_TICKET | SSL_OP_NO_TLSv1);
-+ SSL_CTX_set_options(connection->ctx, SSL_OP_ALL | SSL_OP_NO_TICKET);
-
- if ((connection->ssl = SSL_new(connection->ctx)) == NULL)
- err(EXIT_FAILURE, "reset_connection: SSL_new");