From owner-svn-ports-head@freebsd.org Sat Jan 9 16:20:26 2021 Return-Path: Delivered-To: svn-ports-head@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 1C93D4DB3BA; Sat, 9 Jan 2021 16:20:26 +0000 (UTC) (envelope-from nc@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4DClZ20L5vz3Q4h; Sat, 9 Jan 2021 16:20:26 +0000 (UTC) (envelope-from nc@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 F28CF186DC; Sat, 9 Jan 2021 16:20:25 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 109GKPXd021628; Sat, 9 Jan 2021 16:20:25 GMT (envelope-from nc@FreeBSD.org) Received: (from nc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 109GKP7j021627; Sat, 9 Jan 2021 16:20:25 GMT (envelope-from nc@FreeBSD.org) Message-Id: <202101091620.109GKP7j021627@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nc set sender to nc@FreeBSD.org using -f From: Neel Chauhan Date: Sat, 9 Jan 2021 16:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r560873 - in head/mail/py-python-slimta: . files X-SVN-Group: ports-head X-SVN-Commit-Author: nc X-SVN-Commit-Paths: in head/mail/py-python-slimta: . files X-SVN-Commit-Revision: 560873 X-SVN-Commit-Repository: ports 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.34 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: Sat, 09 Jan 2021 16:20:26 -0000 Author: nc Date: Sat Jan 9 16:20:25 2021 New Revision: 560873 URL: https://svnweb.freebsd.org/changeset/ports/560873 Log: mail/py-python-slimta: Unbreak import with FreeBSD Python In order to retain compatibility with Python 2, mail/py-python-slimta mandates an older version of mail/py-pysasl than what is in Ports. However, lang/python27 has expired so there should be no compatibility issues with FreeBSD. Reviewed by: 0mp (mentor) Approved by: 0mp (mentor) Differential Revision: https://reviews.freebsd.org/D28051 Added: head/mail/py-python-slimta/files/ head/mail/py-python-slimta/files/patch-setup.py (contents, props changed) Modified: head/mail/py-python-slimta/Makefile Modified: head/mail/py-python-slimta/Makefile ============================================================================== --- head/mail/py-python-slimta/Makefile Sat Jan 9 16:00:21 2021 (r560872) +++ head/mail/py-python-slimta/Makefile Sat Jan 9 16:20:25 2021 (r560873) @@ -2,6 +2,7 @@ PORTNAME= python-slimta PORTVERSION= 4.1.1 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Added: head/mail/py-python-slimta/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-python-slimta/files/patch-setup.py Sat Jan 9 16:20:25 2021 (r560873) @@ -0,0 +1,11 @@ +--- setup.py.orig 2021-01-08 23:33:01 UTC ++++ setup.py +@@ -40,7 +40,7 @@ setup(name='python-slimta', + packages=find_packages(), + namespace_packages=['slimta'], + install_requires=['gevent >= 1.1rc', +- 'pysasl >= 0.4.0, < 0.5', ++ 'pysasl >= 0.4.0', + 'pycares < 3.0.0; python_version < "3.0"', + 'pycares >= 1; python_version >= "3.0"'], + extras_require={'spf': ['pyspf', 'py3dns; python_version >= "3.0"',