From owner-svn-ports-all@freebsd.org Wed Mar 14 15:52:04 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 E5F62F5A2EA; Wed, 14 Mar 2018 15:52:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9B04C871B8; Wed, 14 Mar 2018 15:52:03 +0000 (UTC) (envelope-from rm@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 7B9371C98; Wed, 14 Mar 2018 15:52:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2EFq3HI020544; Wed, 14 Mar 2018 15:52:03 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2EFq32P020542; Wed, 14 Mar 2018 15:52:03 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201803141552.w2EFq32P020542@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Wed, 14 Mar 2018 15:52:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464506 - in branches/2018Q1/net-p2p/deluge-cli: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: rm X-SVN-Commit-Paths: in branches/2018Q1/net-p2p/deluge-cli: . files X-SVN-Commit-Revision: 464506 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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: Wed, 14 Mar 2018 15:52:04 -0000 Author: rm Date: Wed Mar 14 15:52:02 2018 New Revision: 464506 URL: https://svnweb.freebsd.org/changeset/ports/464506 Log: MFH: r464430 net-p2p/deluge-cli: fix runtime Add upstream patch to fix bug with opening preferences window. This patch closing https://dev.deluge-torrent.org/ticket/3039 PR: 226443 Submitted by: Rainbow Approved by: ports-secteam (swills) Added: branches/2018Q1/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py - copied unchanged from r464430, head/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py Modified: branches/2018Q1/net-p2p/deluge-cli/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/net-p2p/deluge-cli/Makefile ============================================================================== --- branches/2018Q1/net-p2p/deluge-cli/Makefile Wed Mar 14 15:44:23 2018 (r464505) +++ branches/2018Q1/net-p2p/deluge-cli/Makefile Wed Mar 14 15:52:02 2018 (r464506) @@ -3,7 +3,7 @@ PORTNAME= deluge DISTVERSIONPREFIX= ${PORTNAME}- DISTVERSION= 1.3.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-p2p python PKGNAMESUFFIX= -cli Copied: branches/2018Q1/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py (from r464430, head/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py Wed Mar 14 15:52:02 2018 (r464506, copy of r464430, head/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py) @@ -0,0 +1,20 @@ +Closing upstream bug-report: https://dev.deluge-torrent.org/ticket/3039 + +Index: deluge/ui/gtkui/preferences.py +=================================================================== +--- deluge/ui/gtkui/preferences.py.orig 2017-05-12 12:57:19 UTC ++++ deluge/ui/gtkui/preferences.py +@@ -318,11 +318,8 @@ class Preferences(component.Component): + } + # Add proxy stuff + +- # Display workaround for single proxy in libtorrent >v0.16 +- try: +- lt_single_proxy = component.get("PreferencesManager").LT_SINGLE_PROXY +- except AttributeError: +- lt_single_proxy = False ++ # Display workaround for single proxy in libtorrent >= v0.16 ++ lt_single_proxy = True + + for t in ("peer", "web_seed", "tracker", "dht"): + if lt_single_proxy and not t == "peer":