From owner-svn-ports-head@freebsd.org Wed Oct 14 14:57:01 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81332A13D5F; Wed, 14 Oct 2015 14:57:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A707F5D; Wed, 14 Oct 2015 14:57:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9EEv0F2088567; Wed, 14 Oct 2015 14:57:00 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9EEv0Q5088558; Wed, 14 Oct 2015 14:57:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510141457.t9EEv0Q5088558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 14 Oct 2015 14:57:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399268 - in head/net-p2p: transmission-cli transmission-cli/files transmission-daemon transmission-gtk transmission-qt4 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.20 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: Wed, 14 Oct 2015 14:57:01 -0000 Author: jbeich Date: Wed Oct 14 14:56:59 2015 New Revision: 399268 URL: https://svnweb.freebsd.org/changeset/ports/399268 Log: net-p2p/transmission-cli: chase r399209 https://github.com/miniupnp/miniupnp/commit/1da63faa4fff5cb30e5d4b848ceef80a292382b9 PR: 203768 Reported by: many Obtained from: upstream MFH: 2015Q4 X-MFH-With: r399209 Added: head/net-p2p/transmission-cli/files/patch-libtransmission_upnp.c (contents, props changed) Modified: head/net-p2p/transmission-cli/Makefile (contents, props changed) head/net-p2p/transmission-daemon/Makefile (contents, props changed) head/net-p2p/transmission-gtk/Makefile (contents, props changed) head/net-p2p/transmission-qt4/Makefile (contents, props changed) Modified: head/net-p2p/transmission-cli/Makefile ============================================================================== --- head/net-p2p/transmission-cli/Makefile Wed Oct 14 14:54:59 2015 (r399267) +++ head/net-p2p/transmission-cli/Makefile Wed Oct 14 14:56:59 2015 (r399268) @@ -2,7 +2,7 @@ PORTNAME= transmission PORTVERSION= 2.84 -PORTREVISION?= 3 +PORTREVISION?= 4 CATEGORIES?= net-p2p #MASTER_SITES= http://download.m0k.org/${PORTNAME}/files/ MASTER_SITES= http://transmission.cachefly.net/ Added: head/net-p2p/transmission-cli/files/patch-libtransmission_upnp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/transmission-cli/files/patch-libtransmission_upnp.c Wed Oct 14 14:56:59 2015 (r399268) @@ -0,0 +1,18 @@ +https://trac.transmissionbt.com/ticket/6003 + +Index: libtransmission/upnp.c +=================================================================== +--- libtransmission/upnp.c (revision 14564) ++++ libtransmission/upnp.c (revision 14565) +@@ -88,7 +88,11 @@ tr_upnpDiscover (int msec) + + #if (MINIUPNPC_API_VERSION >= 8) /* adds ipv6 and error args */ + int err = UPNPDISCOVER_SUCCESS; ++ #if (MINIUPNPC_API_VERSION >= 14) /* adds ttl */ ++ ret = upnpDiscover (msec, NULL, NULL, 0, 0, 2, &err); ++ #else + ret = upnpDiscover (msec, NULL, NULL, 0, 0, &err); ++ #endif + have_err = err != UPNPDISCOVER_SUCCESS; + #else + ret = upnpDiscover (msec, NULL, NULL, 0); Modified: head/net-p2p/transmission-daemon/Makefile ============================================================================== --- head/net-p2p/transmission-daemon/Makefile Wed Oct 14 14:54:59 2015 (r399267) +++ head/net-p2p/transmission-daemon/Makefile Wed Oct 14 14:56:59 2015 (r399268) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 PKGNAMESUFFIX= -daemon MAINTAINER= crees@FreeBSD.org Modified: head/net-p2p/transmission-gtk/Makefile ============================================================================== --- head/net-p2p/transmission-gtk/Makefile Wed Oct 14 14:54:59 2015 (r399267) +++ head/net-p2p/transmission-gtk/Makefile Wed Oct 14 14:56:59 2015 (r399268) @@ -1,7 +1,7 @@ # $FreeBSD$ PKGNAMESUFFIX= -gtk -PORTREVISION= 4 +PORTREVISION= 5 MAINTAINER= crees@FreeBSD.org COMMENT= Fast and lightweight GTK+3 BitTorrent client Modified: head/net-p2p/transmission-qt4/Makefile ============================================================================== --- head/net-p2p/transmission-qt4/Makefile Wed Oct 14 14:54:59 2015 (r399267) +++ head/net-p2p/transmission-qt4/Makefile Wed Oct 14 14:56:59 2015 (r399268) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 PKGNAMESUFFIX= -qt4 MAINTAINER= crees@FreeBSD.org