From owner-svn-ports-all@freebsd.org Sun Dec 20 20:30:50 2020 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 D742B4CAF34; Sun, 20 Dec 2020 20:30:50 +0000 (UTC) (envelope-from dbaio@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 4CzZ4B5pH9z3hh5; Sun, 20 Dec 2020 20:30:50 +0000 (UTC) (envelope-from dbaio@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 BA41A15B80; Sun, 20 Dec 2020 20:30:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BKKUodi013344; Sun, 20 Dec 2020 20:30:50 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BKKUo9Q013343; Sun, 20 Dec 2020 20:30:50 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202012202030.0BKKUo9Q013343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sun, 20 Dec 2020 20:30:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558775 - head/sysutils/py-azure-cli-core X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-core X-SVN-Commit-Revision: 558775 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.34 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, 20 Dec 2020 20:30:50 -0000 Author: dbaio Date: Sun Dec 20 20:30:50 2020 New Revision: 558775 URL: https://svnweb.freebsd.org/changeset/ports/558775 Log: sysutils/py-azure-cli-core: Fix build after r558672 Just pluralize() is backwards incompatible [1] and azure-cli-core is not using this function. 1 - https://humanfriendly.readthedocs.io/en/latest/changelog.html#release-9-1-2020-12-10 Modified: head/sysutils/py-azure-cli-core/Makefile Modified: head/sysutils/py-azure-cli-core/Makefile ============================================================================== --- head/sysutils/py-azure-cli-core/Makefile Sun Dec 20 20:21:55 2020 (r558774) +++ head/sysutils/py-azure-cli-core/Makefile Sun Dec 20 20:30:50 2020 (r558775) @@ -15,7 +15,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}adal>=1.2.3:net-mg ${PYTHON_PKGNAMEPREFIX}argcomplete>=1.8:devel/py-argcomplete@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-telemetry>=0:sysutils/py-azure-cli-telemetry@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}colorama>=0.4.1:devel/py-colorama@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}humanfriendly>=4.7<9.0:textproc/py-humanfriendly@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}humanfriendly>=4.7:textproc/py-humanfriendly@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jmespath>=0:devel/py-jmespath@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}knack>=0.7.2:devel/py-knack@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}msal>=1.0.0:devel/py-msal@${PY_FLAVOR} \