From owner-svn-ports-all@freebsd.org Sat Dec 29 07:18:52 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6453714359D3; Sat, 29 Dec 2018 07:18:52 +0000 (UTC) (envelope-from rigoletto@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CBCFD89CD9; Sat, 29 Dec 2018 07:18:51 +0000 (UTC) (envelope-from rigoletto@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B1B9B7789; Sat, 29 Dec 2018 07:18:51 +0000 (UTC) (envelope-from rigoletto@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBT7IprM021037; Sat, 29 Dec 2018 07:18:51 GMT (envelope-from rigoletto@FreeBSD.org) Received: (from rigoletto@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBT7Ionk021033; Sat, 29 Dec 2018 07:18:50 GMT (envelope-from rigoletto@FreeBSD.org) Message-Id: <201812290718.wBT7Ionk021033@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rigoletto set sender to rigoletto@FreeBSD.org using -f From: =?UTF-8?Q?Alexandre_C=2e_Guimar=c3=a3es?= Date: Sat, 29 Dec 2018 07:18:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r488657 - in head/net-p2p: transmission-cli transmission-cli/files transmission-daemon transmission-gtk transmission-qt X-SVN-Group: ports-head X-SVN-Commit-Author: rigoletto X-SVN-Commit-Paths: in head/net-p2p: transmission-cli transmission-cli/files transmission-daemon transmission-gtk transmission-qt X-SVN-Commit-Revision: 488657 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CBCFD89CD9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-0.998,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Dec 2018 07:18:52 -0000 Author: rigoletto Date: Sat Dec 29 07:18:50 2018 New Revision: 488657 URL: https://svnweb.freebsd.org/changeset/ports/488657 Log: net-p2p/tranmission-cli: fix build due to devel/jech-dht update to v0.25. - bump PORTREVISION of the affected SLAVEPORTS PR: 234462 Reviewed by: mat (mentor) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D18660 Added: head/net-p2p/transmission-cli/files/patch-libtransmission_tr-dht.c (contents, props changed) Modified: head/net-p2p/transmission-cli/Makefile head/net-p2p/transmission-daemon/Makefile head/net-p2p/transmission-gtk/Makefile head/net-p2p/transmission-qt/Makefile Modified: head/net-p2p/transmission-cli/Makefile ============================================================================== --- head/net-p2p/transmission-cli/Makefile Sat Dec 29 06:43:53 2018 (r488656) +++ head/net-p2p/transmission-cli/Makefile Sat Dec 29 07:18:50 2018 (r488657) @@ -2,6 +2,7 @@ PORTNAME= transmission DISTVERSION= 2.94 +PORTREVISION?= 1 CATEGORIES+= net-p2p SLAVEPORT?= cli PKGNAMESUFFIX?= -cli Added: head/net-p2p/transmission-cli/files/patch-libtransmission_tr-dht.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/transmission-cli/files/patch-libtransmission_tr-dht.c Sat Dec 29 07:18:50 2018 (r488657) @@ -0,0 +1,14 @@ +--- libtransmission/tr-dht.c.orig 2018-12-27 04:04:08 UTC ++++ libtransmission/tr-dht.c +@@ -694,6 +694,11 @@ dht_random_bytes (void * buf, size_t size) + return size; + } + ++int dht_sendto(int sockfd, void const* buf, int len, int flags, struct sockaddr const* to, int tolen) ++{ ++ return sendto(sockfd, buf, len, flags, to, tolen); ++} ++ + #if defined (_WIN32) && !defined (__MINGW32__) + int + dht_gettimeofday (struct timeval * tv, struct timezone * tz) Modified: head/net-p2p/transmission-daemon/Makefile ============================================================================== --- head/net-p2p/transmission-daemon/Makefile Sat Dec 29 06:43:53 2018 (r488656) +++ head/net-p2p/transmission-daemon/Makefile Sat Dec 29 07:18:50 2018 (r488657) @@ -1,5 +1,6 @@ # $FreeBSD$ +PORTREVISION= 1 PKGNAMESUFFIX= -daemon USES= ssl Modified: head/net-p2p/transmission-gtk/Makefile ============================================================================== --- head/net-p2p/transmission-gtk/Makefile Sat Dec 29 06:43:53 2018 (r488656) +++ head/net-p2p/transmission-gtk/Makefile Sat Dec 29 07:18:50 2018 (r488657) @@ -1,5 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 + +PORTREVISION= 2 PKGNAMESUFFIX= -gtk Modified: head/net-p2p/transmission-qt/Makefile ============================================================================== --- head/net-p2p/transmission-qt/Makefile Sat Dec 29 06:43:53 2018 (r488656) +++ head/net-p2p/transmission-qt/Makefile Sat Dec 29 07:18:50 2018 (r488657) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 3 +PORTREVISION= 4 PKGNAMESUFFIX= -${FLAVOR} LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \