From owner-svn-ports-head@FreeBSD.ORG Mon Dec 31 12:00:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A102E3E; Mon, 31 Dec 2012 12:00:23 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 26CA58FC0C; Mon, 31 Dec 2012 12:00:23 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBVC0NFF025520; Mon, 31 Dec 2012 12:00:23 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBVC0L61025506; Mon, 31 Dec 2012 12:00:21 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201212311200.qBVC0L61025506@svn.freebsd.org> From: Chris Rees Date: Mon, 31 Dec 2012 12:00:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309726 - in head: net-p2p/transmission net-p2p/transmission-cli net-p2p/transmission-cli/files net-p2p/transmission-daemon net-p2p/transmission-gtk2 net-p2p/transmission-qt4 www/transm... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Dec 2012 12:00:23 -0000 Author: crees Date: Mon Dec 31 12:00:21 2012 New Revision: 309726 URL: http://svnweb.freebsd.org/changeset/ports/309726 Log: Update to 2.75 PR: ports/174507 (based on) Submitted by: Sayetsky Anton Modified: head/net-p2p/transmission-cli/Makefile head/net-p2p/transmission-cli/distinfo head/net-p2p/transmission-cli/files/patch-fix_without_ipv6 head/net-p2p/transmission-daemon/Makefile head/net-p2p/transmission-gtk2/Makefile head/net-p2p/transmission-qt4/Makefile head/net-p2p/transmission/Makefile head/www/transmission-web/Makefile Modified: head/net-p2p/transmission-cli/Makefile ============================================================================== --- head/net-p2p/transmission-cli/Makefile Mon Dec 31 12:00:21 2012 (r309725) +++ head/net-p2p/transmission-cli/Makefile Mon Dec 31 12:00:21 2012 (r309726) @@ -1,12 +1,8 @@ -# New ports collection makefile for: transmission -# Date created: 08 October 2005 -# Whom: Mezz -# +# Created by: Mezz # $FreeBSD$ -# PORTNAME= transmission -PORTVERSION= 2.73 +PORTVERSION= 2.75 PORTREVISION?= 0 CATEGORIES?= net-p2p #MASTER_SITES= http://download.m0k.org/${PORTNAME}/files/ Modified: head/net-p2p/transmission-cli/distinfo ============================================================================== --- head/net-p2p/transmission-cli/distinfo Mon Dec 31 12:00:21 2012 (r309725) +++ head/net-p2p/transmission-cli/distinfo Mon Dec 31 12:00:21 2012 (r309726) @@ -1,2 +1,2 @@ -SHA256 (transmission-2.73.tar.xz) = 7907f47f6eabf63f25ecc63b388f2abd4ac82f61d7d827657681ec36ff1507f6 -SIZE (transmission-2.73.tar.xz) = 2947316 +SHA256 (transmission-2.75.tar.xz) = 2869f9a5c1202fa1b65dbf60ffae9e4cad7d6e2fff0de55416a761e60d894a66 +SIZE (transmission-2.75.tar.xz) = 2986844 Modified: head/net-p2p/transmission-cli/files/patch-fix_without_ipv6 ============================================================================== --- head/net-p2p/transmission-cli/files/patch-fix_without_ipv6 Mon Dec 31 12:00:21 2012 (r309725) +++ head/net-p2p/transmission-cli/files/patch-fix_without_ipv6 Mon Dec 31 12:00:21 2012 (r309726) @@ -1,11 +1,11 @@ ---- libtransmission/fdlimit.c.orig 2011-02-27 15:34:55.000000000 -0600 -+++ libtransmission/fdlimit.c 2011-02-27 15:35:12.000000000 -0600 -@@ -609,7 +609,7 @@ +--- 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 @@ - if( gFd->socket_count < 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_err (_("Couldn't create socket: %s"), tr_strerror (sockerrno)); - if( s > -1 ) + if (s > -1) Modified: head/net-p2p/transmission-daemon/Makefile ============================================================================== --- head/net-p2p/transmission-daemon/Makefile Mon Dec 31 12:00:21 2012 (r309725) +++ head/net-p2p/transmission-daemon/Makefile Mon Dec 31 12:00:21 2012 (r309726) @@ -1,11 +1,7 @@ -# New ports collection makefile for: transmission-daemon -# Date created: 08 February 2008 -# Whom: Mezz -# +# Created by: Mezz # $FreeBSD$ -# -PORTREVISION= 1 +PORTREVISION= 0 PKGNAMESUFFIX= -daemon MAINTAINER= crees@FreeBSD.org Modified: head/net-p2p/transmission-gtk2/Makefile ============================================================================== --- head/net-p2p/transmission-gtk2/Makefile Mon Dec 31 12:00:21 2012 (r309725) +++ head/net-p2p/transmission-gtk2/Makefile Mon Dec 31 12:00:21 2012 (r309726) @@ -1,9 +1,5 @@ -# New ports collection makefile for: transmission-gtk2 -# Date created: 11 February 2006 -# Whom: Mezz -# +# Created by: Mezz # $FreeBSD$ -# PKGNAMESUFFIX= -gtk2 Modified: head/net-p2p/transmission-qt4/Makefile ============================================================================== --- head/net-p2p/transmission-qt4/Makefile Mon Dec 31 12:00:21 2012 (r309725) +++ head/net-p2p/transmission-qt4/Makefile Mon Dec 31 12:00:21 2012 (r309726) @@ -1,9 +1,5 @@ -# New ports collection makefile for: transmission-qt4 -# Date created: 23 October 2010 -# Whom: Mezz -# +# Created by: Mezz # $FreeBSD$ -# PORTREVISION= 0 PKGNAMESUFFIX= -qt4 Modified: head/net-p2p/transmission/Makefile ============================================================================== --- head/net-p2p/transmission/Makefile Mon Dec 31 12:00:21 2012 (r309725) +++ head/net-p2p/transmission/Makefile Mon Dec 31 12:00:21 2012 (r309726) @@ -1,12 +1,8 @@ -# New ports collection makefile for: transmission -# Date created: 08 October 2005 -# Whom: Mezz -# +# Created by: Mezz # $FreeBSD$ -# PORTNAME= transmission -PORTVERSION= 2.73 +PORTVERSION= 2.75 CATEGORIES= net-p2p MASTER_SITES= # empty DISTFILES= # empty Modified: head/www/transmission-web/Makefile ============================================================================== --- head/www/transmission-web/Makefile Mon Dec 31 12:00:21 2012 (r309725) +++ head/www/transmission-web/Makefile Mon Dec 31 12:00:21 2012 (r309726) @@ -1,9 +1,5 @@ -# New ports collection makefile for: transmission-web -# Date created: 14 July 2008 -# Whom: Mezz -# +# Created by: Mezz # $FreeBSD$ -# PORTREVISION= 0 CATEGORIES= www net-p2p