From owner-freebsd-python@freebsd.org Wed Dec 16 03:42:38 2020 Return-Path: Delivered-To: freebsd-python@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 47E8A4AEF52 for ; Wed, 16 Dec 2020 03:42:38 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4Cwgtj5f52z3rf2 for ; Wed, 16 Dec 2020 03:42:37 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: by mailman.nyi.freebsd.org (Postfix) id C1A244AF307; Wed, 16 Dec 2020 03:42:37 +0000 (UTC) Delivered-To: python@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 C15714AF305 for ; Wed, 16 Dec 2020 03:42:37 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from udns.ultimatedns.net (static-24-113-41-81.wavecable.com [24.113.41.81]) (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 "ultimatedns.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cwgtj3TjXz3rnV for ; Wed, 16 Dec 2020 03:42:37 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from ultimatedns.net (localhost [127.0.0.1]) by udns.ultimatedns.net (8.16.1/8.16.1) with ESMTP id 0BG3gcwT027601; Tue, 15 Dec 2020 19:42:44 -0800 (PST) (envelope-from bsd-lists@bsdforge.com) MIME-Version: 1.0 Date: Tue, 15 Dec 2020 19:42:38 -0800 From: Chris To: Mark Linimon Cc: python@freebsd.org Subject: Re: svn commit: r558197 - head/devel/py-pip In-Reply-To: <20201216014759.GA6658@lonesome.com> References: <202012160145.0BG1j1mJ097097@repo.freebsd.org> <20201216014759.GA6658@lonesome.com> User-Agent: UDNSMS/17.0 Message-ID: <1448e25a3f6f2c7c0b2581b02daeff41@bsdforge.com> X-Sender: bsd-lists@bsdforge.com Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4Cwgtj3TjXz3rnV X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Dec 2020 03:42:38 -0000 On 2020-12-15 17:48, Mark Linimon wrote: > On Wed, Dec 16, 2020 at 01:45:01AM +0000, Mark Linimon wrote: >> Author: linimon >> Date: Wed Dec 16 01:45:01 2020 >> New Revision: 558197 >> URL: https://svnweb.freebsd.org/changeset/ports/558197 >> >> Log: >> Defuse a ticking time-bomb by removing the dependency on devel/bzr. >> >> It is likely that this will break "make test", so, why am I doing it? >> >> The answer is that devel/bzr unconditionally depends on python27 (it is >> known not to build with python37) -- and python27 is imminently due for >> removal (see PR 249337). >> >> This would not matter so much except that py-pip winds up a dependency >> of devel/cmake, and thus, over 2000 ports -- all of which would have >> broken when python27 was removed. >> >> Unfortunately the time before that removal happens is simply too short >> to have a proper discussion with all stakeholders. We need to remove >> the dependency immediately so that PR 249337 can proceed. >> >> PR: 249337 (related to) >> >> Modified: >> head/devel/py-pip/Makefile >> >> Modified: head/devel/py-pip/Makefile >> ============================================================================== >> --- head/devel/py-pip/Makefile Wed Dec 16 01:17:43 2020 (r558196) >> +++ head/devel/py-pip/Makefile Wed Dec 16 01:45:01 2020 (r558197) >> @@ -37,7 +37,6 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=0:s >> ${PYTHON_PKGNAMEPREFIX}virtualenv>=0:devel/py-virtualenv@${PY_FLAVOR} \ >> ${PYTHON_PKGNAMEPREFIX}werkzeug>=0:www/py-werkzeug@${PY_FLAVOR} \ >> ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} \ >> - bzr:devel/bzr \ >> hg:devel/mercurial \ >> git:devel/git \ >> svn:devel/subversion > > I realize this is a drive-by commit _without_ maintainer approval, > but my reasoning is below. Give the alternative on January 1st > of either breaking 2000+ ports, or merely "make test" here, I chose > the former. > > If anyone has the cycles in the next few weeks to look at "make > test" here, please let me know (I do not). > > mcl > I mentioned it in the related bugzilla pr(1). But'll repeat it here; I can take a stab at devel/bzr. I should have something useful by (or before) the end of the week. --Chris