From nobody Wed Oct 13 19:21:31 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 49D5A17F46A5; Wed, 13 Oct 2021 19:21:43 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HV2TK0npPz4r8C; Wed, 13 Oct 2021 19:21:40 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 911582D7A4; Wed, 13 Oct 2021 19:21:31 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19DJLV1P076655; Wed, 13 Oct 2021 19:21:31 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19DJLVgc076654; Wed, 13 Oct 2021 19:21:31 GMT (envelope-from git) Date: Wed, 13 Oct 2021 19:21:31 GMT Message-Id: <202110131921.19DJLVgc076654@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 2e00b6e49370 - main - devel/py-moto: Remove workaround for FreeBSD 11 List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 2e00b6e493700d5a71a5a23fe65231d513f26598 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=2e00b6e493700d5a71a5a23fe65231d513f26598 commit 2e00b6e493700d5a71a5a23fe65231d513f26598 Author: Po-Chuan Hsieh AuthorDate: 2021-10-13 19:13:46 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-10-13 19:13:46 +0000 devel/py-moto: Remove workaround for FreeBSD 11 - Bump PORTREVISION for package change --- devel/py-moto/Makefile | 3 ++- devel/py-moto/files/patch-setup.py | 11 ----------- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/devel/py-moto/Makefile b/devel/py-moto/Makefile index 3b52e5d80191..8dc8ce8765d7 100644 --- a/devel/py-moto/Makefile +++ b/devel/py-moto/Makefile @@ -2,6 +2,7 @@ PORTNAME= moto PORTVERSION= 2.2.8 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto3>=1.9.201:www/py-boto3@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}botocore>=1.12.201:devel/py-botocore@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}cryptography>=2.9.2:security/py-cryptography@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cryptography>=3.3.1:security/py-cryptography@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10.1:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}markupsafe>=0:textproc/py-markupsafe@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}more-itertools>=0:devel/py-more-itertools@${PY_FLAVOR} \ diff --git a/devel/py-moto/files/patch-setup.py b/devel/py-moto/files/patch-setup.py deleted file mode 100644 index 94b05af264de..000000000000 --- a/devel/py-moto/files/patch-setup.py +++ /dev/null @@ -1,11 +0,0 @@ ---- setup.py.orig 2021-05-03 12:18:17 UTC -+++ setup.py -@@ -32,7 +32,7 @@ def get_version(): - install_requires = [ - "boto3>=1.9.201", - "botocore>=1.12.201", -- "cryptography>=3.3.1", -+ "cryptography>=2.9.2", - "requests>=2.5", - "xmltodict", - "six>1.9",