From nobody Mon Nov 21 13:53:46 2022 X-Original-To: dev-commits-ports-main@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 4NG8B00RDdz4j6Zd; Mon, 21 Nov 2022 13:58:32 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from sprint-2.amdmi3.ru (sprint-2.amdmi3.ru [185.185.68.145]) by mx1.freebsd.org (Postfix) with ESMTP id 4NG89y6sN2z49Tj; Mon, 21 Nov 2022 13:58:30 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Authentication-Results: mx1.freebsd.org; dkim=none; spf=none (mx1.freebsd.org: domain of amdmi3@amdmi3.ru has no SPF policy when checking 185.185.68.145) smtp.mailfrom=amdmi3@amdmi3.ru; dmarc=none Received: from amdmi3.ru (localhost [127.0.0.1]) by sprint-2.amdmi3.ru (Postfix) with SMTP id 5342A188EC7; Mon, 21 Nov 2022 17:00:29 +0300 (MSK) Received: by amdmi3.ru (nbSMTP-1.00) for uid 1000 amdmi3@amdmi3.ru; Mon, 21 Nov 2022 17:00:29 +0300 (MSK) Date: Mon, 21 Nov 2022 16:53:46 +0300 From: Dmitry Marakasov To: Po-Chuan Hsieh Cc: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org Subject: Re: git: aa1913df7f3f - main - devel/py-responses: switch to USES=pytest Message-ID: References: <202211071228.2A7CSOpv081761@gitrepo.freebsd.org> List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Spamd-Result: default: False [-1.69 / 15.00]; AUTH_NA(1.00)[]; NEURAL_HAM_SHORT(-1.00)[-0.999]; NEURAL_HAM_MEDIUM(-0.93)[-0.929]; NEURAL_HAM_LONG(-0.76)[-0.762]; RCVD_NO_TLS_LAST(0.10)[]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[dev-commits-ports-all@freebsd.org,dev-commits-ports-main@freebsd.org]; RCVD_COUNT_THREE(0.00)[3]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_SPF_NA(0.00)[no SPF record]; ARC_NA(0.00)[]; DMARC_NA(0.00)[amdmi3.ru]; FROM_HAS_DN(0.00)[]; FREEFALL_USER(0.00)[amdmi3]; MIME_TRACE(0.00)[0:+]; RCPT_COUNT_THREE(0.00)[4]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_SOME(0.00)[]; ASN(0.00)[asn:35278, ipnet:185.185.68.0/22, country:RU] X-Rspamd-Queue-Id: 4NG89y6sN2z49Tj X-Spamd-Bar: - X-ThisMailContainsUnwantedMimeParts: N * Po-Chuan Hsieh (sunpoet@freebsd.org) wrote: > On Mon, Nov 7, 2022 at 8:28 PM Dmitry Marakasov wrote: > > The branch main has been updated by amdmi3: > > URL: https://cgit.FreeBSD.org/ports/commit/?id= > aa1913df7f3f2f46e4b276b5c1b4e6d647ed70a4 > > commit aa1913df7f3f2f46e4b276b5c1b4e6d647ed70a4 > Author:     Dmitry Marakasov > AuthorDate: 2022-11-07 12:14:58 +0000 > Commit:     Dmitry Marakasov > CommitDate: 2022-11-07 12:27:46 +0000 > >     devel/py-responses: switch to USES=pytest > > > Please stop doing this. > It should be USE_PYTHON=pytest, not USES=pytest. > Furthermore, all existing USES=pytest should be changed to USE_PYTHON=pytest. Sorry, but you can't just tell me to stop using the framework I've introduced, without at least notifying me beforehand of that there's now a duplicate framework which is now preferred. In fact unfortunately I will not stop unless all the ports are converted to USE_PYTHON=pytest and USES=pytest removed (which you should've done in the first place to save everybodys time and avoid ambiguity) as I have a lot of pending commits with migration to USES=pytest I don't feel like redoing unless I have to. Thank you for your work anyway, this looks more flexible whan USES=pytest. >     Approved by:    portmgr blanket > --- >  devel/py-responses/Makefile | 3 +-- >  1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/devel/py-responses/Makefile b/devel/py-responses/Makefile > index 8469076cffc4..53492b036954 100644 > --- a/devel/py-responses/Makefile > +++ b/devel/py-responses/Makefile > @@ -18,14 +18,13 @@ RUN_DEPENDS=        ${PYTHON_PKGNAMEPREFIX}mypy>= > 0:devel/py-mypy@${PY_FLAVOR} \ >  TEST_DEPENDS=  ${PYTHON_PKGNAMEPREFIX}coverage>=6.0.0:devel/py-coverage@$ > {PY_FLAVOR} \ >                 ${PYTHON_PKGNAMEPREFIX}flake8>=0:devel/py-flake8@$ > {PY_FLAVOR} \ >                 ${PYTHON_PKGNAMEPREFIX}mypy>=0:devel/py-mypy@${PY_FLAVOR} \ > -               ${PYTHON_PKGNAMEPREFIX}pytest>=7.0.0:devel/py-pytest@$ > {PY_FLAVOR} \ >                 ${PYTHON_PKGNAMEPREFIX}pytest-asyncio>=0:devel/ > py-pytest-asyncio@${PY_FLAVOR} \ >                 ${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@$ > {PY_FLAVOR} \ >                 ${PYTHON_PKGNAMEPREFIX}pytest-localserver>=0:devel/ > py-pytest-localserver@${PY_FLAVOR} \ >                 ${PYTHON_PKGNAMEPREFIX}types-mock>=0:devel/py-types-mock@$ > {PY_FLAVOR} \ >                 ${PYTHON_PKGNAMEPREFIX}types-requests>=0:devel/ > py-types-requests@${PY_FLAVOR} > > -USES=          python:3.7+ > +USES=          python:3.7+ pytest >  USE_PYTHON=    autoplist concurrent distutils > >  NO_ARCH=       yes > -- Dmitry Marakasov . amdmi3@amdmi3.ru ..: https://github.com/AMDmi3 https://amdmi3.ru/