From owner-svn-ports-head@freebsd.org Fri Aug 9 13:41:16 2019 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 3284FC992B for ; Fri, 9 Aug 2019 13:41:16 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 464mbw0bpqz4b22 for ; Fri, 9 Aug 2019 13:41:16 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from mail-ed1-f43.google.com (mail-ed1-f43.google.com [209.85.208.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: sunpoet) by smtp.freebsd.org (Postfix) with ESMTPSA id AD8C4A3F2 for ; Fri, 9 Aug 2019 13:41:15 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: by mail-ed1-f43.google.com with SMTP id s49so60206380edb.1 for ; Fri, 09 Aug 2019 06:41:15 -0700 (PDT) X-Gm-Message-State: APjAAAWpfvBlXxgAjbdcVWl/8pN4Z0OJNJhoxd1TiPvIh+MLLTmD2x0F NEbQqMUmMFrAZSzqfP5RaiKOpoYw+S04UhQtbuTh4w== X-Google-Smtp-Source: APXvYqycU5wPRG4Z+cyiWL7hf76PG8NvfXluGMv4t7hJd621ULE7WAUx6TI+SYaV+EWIXpGq8l+A0/5XDWvEStfDII8= X-Received: by 2002:aa7:c0cf:: with SMTP id j15mr21957910edp.138.1565358074624; Fri, 09 Aug 2019 06:41:14 -0700 (PDT) MIME-Version: 1.0 References: <201908091254.x79CsRF3072168@repo.freebsd.org> In-Reply-To: <201908091254.x79CsRF3072168@repo.freebsd.org> From: Po-Chuan Hsieh Date: Fri, 9 Aug 2019 21:40:38 +0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r508450 - in head: devel/py-mypy devel/thonny science/py-chainer science/py-chainer-chemistry science/py-onnx To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 09 Aug 2019 13:41:16 -0000 On Fri, Aug 9, 2019 at 8:54 PM Mathieu Arnold wrote: > Author: mat > Date: Fri Aug 9 12:54:26 2019 > New Revision: 508450 > URL: https://svnweb.freebsd.org/changeset/ports/508450 > > Log: > Fix bulk -a with BUILD_ALL_PYTHON_FLAVORS. > > devel/py-typing-extensions does not support Python 3.7+, so ports > requiring it can't either. > Hi mat, I've committed r508454 which should fix the problem. Could you please test again and revert this commit if everything works fine? Thanks. > > Modified: > head/devel/py-mypy/Makefile (contents, props changed) > head/devel/thonny/Makefile (contents, props changed) > head/science/py-chainer-chemistry/Makefile (contents, props changed) > head/science/py-chainer/Makefile (contents, props changed) > head/science/py-onnx/Makefile (contents, props changed) > > Modified: head/devel/py-mypy/Makefile > > ============================================================================== > --- head/devel/py-mypy/Makefile Fri Aug 9 12:47:54 2019 (r508449) > +++ head/devel/py-mypy/Makefile Fri Aug 9 12:54:26 2019 (r508450) > @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mypy_extensions>=0 > > ${PYTHON_PKGNAMEPREFIX}typed-ast>=1.4.0<1.5.0:devel/py-typed-ast@${PY_FLAVOR} > \ > > ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.7.4:devel/py-typing-extensions@ > ${PY_FLAVOR} > > -USES= python:3.5+ shebangfix > +USES= python:3.5-3.6 shebangfix > USE_PYTHON= autoplist distutils > > NO_ARCH= yes > > Modified: head/devel/thonny/Makefile > > ============================================================================== > --- head/devel/thonny/Makefile Fri Aug 9 12:47:54 2019 (r508449) > +++ head/devel/thonny/Makefile Fri Aug 9 12:54:26 2019 (r508450) > @@ -21,7 +21,7 @@ RUN_DEPENDS= pylint:devel/pylint \ > > ${PYTHON_PKGNAMEPREFIX}pyperclip>=1.5.27:devel/py-pyperclip@${PY_FLAVOR} \ > ${PYTHON_PKGNAMEPREFIX}serial>=3.2.1:comms/py-serial@ > ${PY_FLAVOR} > > -USES= python:3.5+ > +USES= python:3.5-3.6 > USE_PYTHON= autoplist distutils > > .include > > Modified: head/science/py-chainer-chemistry/Makefile > > ============================================================================== > --- head/science/py-chainer-chemistry/Makefile Fri Aug 9 12:47:54 2019 > (r508449) > +++ head/science/py-chainer-chemistry/Makefile Fri Aug 9 12:54:26 2019 > (r508450) > @@ -20,7 +20,7 @@ RUN_DEPENDS= ${PYNUMPY} \ > > ${PYTHON_PKGNAMEPREFIX}scikit-learn>0:science/py-scikit-learn@${PY_FLAVOR} > \ > ${PYTHON_PKGNAMEPREFIX}tqdm>0:misc/py-tqdm@${PY_FLAVOR} > > -USES= python > +USES= python:-3.6 > USE_PYTHON= distutils autoplist > > NO_ARCH= yes > > Modified: head/science/py-chainer/Makefile > > ============================================================================== > --- head/science/py-chainer/Makefile Fri Aug 9 12:47:54 2019 > (r508449) > +++ head/science/py-chainer/Makefile Fri Aug 9 12:54:26 2019 > (r508450) > @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PYNUMPY} \ > ${PY_TYPING} \ > > ${PYTHON_PKGNAMEPREFIX}typing-extensions>0:devel/py-typing-extensions@ > ${PY_FLAVOR} > > -USES= python > +USES= python:-3.6 > USE_PYTHON= distutils autoplist > > NO_ARCH= yes > > Modified: head/science/py-onnx/Makefile > > ============================================================================== > --- head/science/py-onnx/Makefile Fri Aug 9 12:47:54 2019 > (r508449) > +++ head/science/py-onnx/Makefile Fri Aug 9 12:54:26 2019 > (r508450) > @@ -21,7 +21,7 @@ RUN_DEPENDS= ${PYNUMPY} \ > ${PY_TYPING} \ > > ${PYTHON_PKGNAMEPREFIX}typing-extensions>0:devel/py-typing-extensions@ > ${PY_FLAVOR} > > -USES= python > +USES= python:-3.6 > USE_PYTHON= distutils concurrent autoplist > > BINARY_ALIAS= python=${PYTHON_CMD} > _______________________________________________ > svn-ports-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" >