From owner-svn-ports-all@freebsd.org Sun Nov 24 05:06:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7598A1CBBAA; Sun, 24 Nov 2019 05:06:27 +0000 (UTC) (envelope-from yuri@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 47LJ6W2RXKz4rVb; Sun, 24 Nov 2019 05:06:27 +0000 (UTC) (envelope-from yuri@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 37CAF1F36B; Sun, 24 Nov 2019 05:06:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAO56RNG088104; Sun, 24 Nov 2019 05:06:27 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAO56Qo8088101; Sun, 24 Nov 2019 05:06:26 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201911240506.xAO56Qo8088101@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 24 Nov 2019 05:06:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518295 - in head/security/theonionbox: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security/theonionbox: . files X-SVN-Commit-Revision: 518295 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.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: Sun, 24 Nov 2019 05:06:27 -0000 Author: yuri Date: Sun Nov 24 05:06:26 2019 New Revision: 518295 URL: https://svnweb.freebsd.org/changeset/ports/518295 Log: security/theonionbox: Unbreak at runtime and prepare for urllib3 1.25.6 PR: 241827 Submitted by: kai Added: head/security/theonionbox/files/patch-theonionbox_theonionbox.py (contents, props changed) Modified: head/security/theonionbox/Makefile head/security/theonionbox/files/patch-setup.py Modified: head/security/theonionbox/Makefile ============================================================================== --- head/security/theonionbox/Makefile Sun Nov 24 04:53:10 2019 (r518294) +++ head/security/theonionbox/Makefile Sun Nov 24 05:06:26 2019 (r518295) @@ -2,7 +2,7 @@ PORTNAME= theonionbox DISTVERSION= 4.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security net python MASTER_SITES= CHEESESHOP Modified: head/security/theonionbox/files/patch-setup.py ============================================================================== --- head/security/theonionbox/files/patch-setup.py Sun Nov 24 04:53:10 2019 (r518294) +++ head/security/theonionbox/files/patch-setup.py Sun Nov 24 05:06:26 2019 (r518295) @@ -1,4 +1,4 @@ ---- setup.py.orig 2019-05-11 04:02:35 UTC +--- setup.py.orig 2019-05-10 21:59:01 UTC +++ setup.py @@ -295,19 +295,9 @@ package_data_exclude = { } @@ -23,3 +23,16 @@ ] # print(generate_data_files(data_files)) +@@ -381,10 +371,10 @@ setup( + 'requests>=2.21', + 'PySocks>=1.6.7', + 'bottle>=0.12.13', +- 'stem>=1.5.4, <=1.6', ++ 'stem>=1.5.4', + 'tzlocal>=1.5', + 'futures>=3.2; python_version<"3.0"', +- 'urllib3>=1.24.2, <1.25' # '<1.25' due to requests 2.21 requirement ++ 'urllib3>=1.21.1,<1.26' # copied (except the exclusions) from requests 2.22 + ], + long_description_content_type='text/x-rst; charset=UTF-8', + classifiers=[ Added: head/security/theonionbox/files/patch-theonionbox_theonionbox.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/theonionbox/files/patch-theonionbox_theonionbox.py Sun Nov 24 05:06:26 2019 (r518295) @@ -0,0 +1,20 @@ +--- theonionbox/theonionbox.py.orig 2019-11-09 13:37:29 UTC ++++ theonionbox/theonionbox.py +@@ -513,7 +513,7 @@ required_modules = { + 'info': "Check 'https://pypi.python.org/pypi/psutil' for installation instructions." + }, + 'stem': { +- 'version': '>=1.5.4, <=1.6' ++ 'version': '>=1.5.4' + }, + 'bottle': { + 'version': '>=0.12.13' +@@ -539,7 +539,7 @@ required_modules = { + 'version': '>=3.2; python_version<"3.0"' + }, + 'urllib3': { +- 'version': '>=1.24.2, <1.25' ++ 'version': '>=1.21.1,<1.26' #copied (except the exclusions) from requests 2.22 + } + } +