diff options
author | Chris Rees <crees@FreeBSD.org> | 2013-07-01 18:40:19 +0000 |
---|---|---|
committer | Chris Rees <crees@FreeBSD.org> | 2013-07-01 18:40:19 +0000 |
commit | 77e098ee6285dc6864fd9ca02ddcf808aeb0ca68 (patch) | |
tree | 81d9a1e1a3c1b9ddfba4c8a55c51d91597bbdc77 /net-p2p/transmission-cli | |
parent | Remove obsolete CUE option (diff) |
Update to 2.80
PR: ports/180120
Submitted by: Sayetsky Anton <vsjcfm@gmail.com>
Notes
Notes:
svn path=/head/; revision=322138
Diffstat (limited to 'net-p2p/transmission-cli')
-rw-r--r-- | net-p2p/transmission-cli/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/transmission-cli/distinfo | 4 | ||||
-rw-r--r-- | net-p2p/transmission-cli/files/patch-fix_without_ipv6 | 18 |
3 files changed, 12 insertions, 12 deletions
diff --git a/net-p2p/transmission-cli/Makefile b/net-p2p/transmission-cli/Makefile index ef0f7ede4fd1..c321504cc069 100644 --- a/net-p2p/transmission-cli/Makefile +++ b/net-p2p/transmission-cli/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= transmission -PORTVERSION= 2.77 +PORTVERSION= 2.80 PORTREVISION?= 0 CATEGORIES?= net-p2p #MASTER_SITES= http://download.m0k.org/${PORTNAME}/files/ diff --git a/net-p2p/transmission-cli/distinfo b/net-p2p/transmission-cli/distinfo index 1f90d7954cb2..915c8d9e6630 100644 --- a/net-p2p/transmission-cli/distinfo +++ b/net-p2p/transmission-cli/distinfo @@ -1,2 +1,2 @@ -SHA256 (transmission-2.77.tar.xz) = 55b1653fc18a10153ba9439f284bd7b2276a6859416dcae217d9e8c689841fde -SIZE (transmission-2.77.tar.xz) = 2953840 +SHA256 (transmission-2.80.tar.xz) = 0ea0bc62e3917ce4cb848582888ecdcd0c0dbe8ffb9482d7330c823e1ff15df3 +SIZE (transmission-2.80.tar.xz) = 3167136 diff --git a/net-p2p/transmission-cli/files/patch-fix_without_ipv6 b/net-p2p/transmission-cli/files/patch-fix_without_ipv6 index 2354401ed39f..13fe62b6e7cf 100644 --- a/net-p2p/transmission-cli/files/patch-fix_without_ipv6 +++ b/net-p2p/transmission-cli/files/patch-fix_without_ipv6 @@ -1,11 +1,11 @@ ---- libtransmission/fdlimit.c.orig 2012-12-16 19:44:18.727049000 +0000 -+++ libtransmission/fdlimit.c 2012-12-30 16:50:41.605049278 +0000 -@@ -678,7 +678,7 @@ +--- libtransmission/fdlimit.c.orig 2013-06-26 05:35:25.603458000 +0300 ++++ libtransmission/fdlimit.c 2013-06-30 10:01:10.000000000 +0300 +@@ -668,7 +668,7 @@ - if (gFd->peerCount < session->peerLimit) - if ((s = socket (domain, type, 0)) < 0) -- if (sockerrno != EAFNOSUPPORT) -+ if (sockerrno != EPROTONOSUPPORT) - tr_err (_("Couldn't create socket: %s"), tr_strerror (sockerrno)); + if (gFd->peerCount < session->peerLimit) + if ((s = socket (domain, type, 0)) < 0) +- if (sockerrno != EAFNOSUPPORT) ++ if (sockerrno != EPROTONOSUPPORT) + tr_logAddError (_("Couldn't create socket: %s"), tr_strerror (sockerrno)); - if (s > -1) + if (s > -1) |