From owner-svn-ports-all@freebsd.org Sun Aug 4 21:15:37 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 EADD6B2A63; Sun, 4 Aug 2019 21:15:37 +0000 (UTC) (envelope-from kai@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 461twT5xK7z3QDw; Sun, 4 Aug 2019 21:15:37 +0000 (UTC) (envelope-from kai@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 A9DA79722; Sun, 4 Aug 2019 21:15:37 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x74LFbNf062545; Sun, 4 Aug 2019 21:15:37 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x74LFbfw062543; Sun, 4 Aug 2019 21:15:37 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201908042115.x74LFbfw062543@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sun, 4 Aug 2019 21:15:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r508127 - in branches/2019Q3/www/mitmproxy: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in branches/2019Q3/www/mitmproxy: . files X-SVN-Commit-Revision: 508127 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, 04 Aug 2019 21:15:38 -0000 Author: kai Date: Sun Aug 4 21:15:37 2019 New Revision: 508127 URL: https://svnweb.freebsd.org/changeset/ports/508127 Log: MFH: r508126 www/mitmproxy: Prepare for py-openssl 19.0.0 and unbreak at runtime Relax the version ranges for security/py-openssl to avoid breakage at runtime when release 19.0.0 lands into the Ports tree. Also unbreak the port as it's already broken at runtime because the given requirements for security/py-cryptography are too narrow. PR: 239540 Approved by: Hung-Yi Chen (maintainer) Approved by: ports-secteam blanket (runtime fix) Modified: branches/2019Q3/www/mitmproxy/Makefile branches/2019Q3/www/mitmproxy/files/patch-setup.py Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/www/mitmproxy/Makefile ============================================================================== --- branches/2019Q3/www/mitmproxy/Makefile Sun Aug 4 21:12:28 2019 (r508126) +++ branches/2019Q3/www/mitmproxy/Makefile Sun Aug 4 21:15:37 2019 (r508127) @@ -4,6 +4,7 @@ PORTNAME= mitmproxy PORTVERSION= 4.0.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= www python MAINTAINER= gaod@hychen.org Modified: branches/2019Q3/www/mitmproxy/files/patch-setup.py ============================================================================== --- branches/2019Q3/www/mitmproxy/files/patch-setup.py Sun Aug 4 21:12:28 2019 (r508126) +++ branches/2019Q3/www/mitmproxy/files/patch-setup.py Sun Aug 4 21:15:37 2019 (r508127) @@ -1,6 +1,6 @@ ---- setup.py.orig 2019-02-14 12:22:24 UTC +--- setup.py.orig 2019-07-30 16:02:34 UTC +++ setup.py -@@ -61,7 +61,7 @@ setup( +@@ -61,24 +61,24 @@ setup( # It is not considered best practice to use install_requires to pin dependencies to specific versions. install_requires=[ "blinker>=1.4", @@ -8,8 +8,16 @@ + "brotli>=0.7.0", "certifi>=2015.11.20.1", # no semver here - this should always be on the last release! "click>=6.2", - "cryptography>=2.1.4,<2.4", -@@ -75,10 +75,10 @@ setup( +- "cryptography>=2.1.4,<2.4", ++ "cryptography>=2.1.4", + "h2>=3.0.1,<4", + "hyperframe>=5.1.0,<6", + "kaitaistruct>=0.7,<0.9", + "ldap3>=2.5,<2.6", + "passlib>=1.6.5", + "pyasn1>=0.3.1,<0.5", +- "pyOpenSSL>=17.5,<18.1", ++ "pyOpenSSL>=17.5", "pyparsing>=2.1.3", "pyperclip>=1.6.0", "ruamel.yaml>=0.13.2",