From owner-svn-ports-head@freebsd.org Fri Dec 7 18:18:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1D421315D63; Fri, 7 Dec 2018 18:18:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7894A7146A; Fri, 7 Dec 2018 18:18:44 +0000 (UTC) (envelope-from swills@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 3C4AC16AB6; Fri, 7 Dec 2018 18:18:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB7IIiZ4029408; Fri, 7 Dec 2018 18:18:44 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB7IIhib029405; Fri, 7 Dec 2018 18:18:43 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201812071818.wB7IIhib029405@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 7 Dec 2018 18:18:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486879 - in head/devel: . py-ipykernel5 X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . py-ipykernel5 X-SVN-Commit-Revision: 486879 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7894A7146A X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.99)[-0.989,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; NEURAL_HAM_LONG(-0.99)[-0.991,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org 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, 07 Dec 2018 18:18:45 -0000 Author: swills Date: Fri Dec 7 18:18:43 2018 New Revision: 486879 URL: https://svnweb.freebsd.org/changeset/ports/486879 Log: devel/py-ipykernel5: create port py-ipykernel 5.x, which requires python 3.4 or newer Added: head/devel/py-ipykernel5/ - copied from r486878, head/devel/py-ipykernel/ Modified: head/devel/Makefile head/devel/py-ipykernel5/Makefile head/devel/py-ipykernel5/distinfo Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Dec 7 18:13:20 2018 (r486878) +++ head/devel/Makefile Fri Dec 7 18:18:43 2018 (r486879) @@ -4663,6 +4663,7 @@ SUBDIR += py-ipaddr SUBDIR += py-ipdb SUBDIR += py-ipykernel + SUBDIR += py-ipykernel5 SUBDIR += py-ipyparallel SUBDIR += py-ipython_genutils SUBDIR += py-ipywidgets Modified: head/devel/py-ipykernel5/Makefile ============================================================================== --- head/devel/py-ipykernel/Makefile Fri Dec 7 18:13:20 2018 (r486878) +++ head/devel/py-ipykernel5/Makefile Fri Dec 7 18:18:43 2018 (r486879) @@ -1,10 +1,11 @@ # $FreeBSD$ PORTNAME= ipykernel -PORTVERSION= 4.10.0 +PORTVERSION= 5.1.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMESUFFIX= 5 MAINTAINER= python@FreeBSD.org COMMENT= IPython Kernel for Jupyter @@ -13,14 +14,14 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING.md BUILD_DEPENDS= ${RUN_DEPENDS} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython5>=4.0.0:devel/ipython5@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=7.0.0:devel/ipython@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jupyter_client>=0:devel/py-jupyter_client@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tornado>=4.0:www/py-tornado@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}traitlets>=4.1.0:devel/py-traitlets@${PY_FLAVOR} -USES= python -USE_PYTHON= autoplist concurrent distutils +USES= python:3.4+ +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include Modified: head/devel/py-ipykernel5/distinfo ============================================================================== --- head/devel/py-ipykernel/distinfo Fri Dec 7 18:13:20 2018 (r486878) +++ head/devel/py-ipykernel5/distinfo Fri Dec 7 18:18:43 2018 (r486879) @@ -1,3 +1,3 @@ -TIMESTAMP = 1539030193 -SHA256 (ipykernel-4.10.0.tar.gz) = 699103c8e64886e3ec7053f2a6aa83bb90426063526f63a818732ff385202bad -SIZE (ipykernel-4.10.0.tar.gz) = 96242 +TIMESTAMP = 1543978655 +SHA256 (ipykernel-5.1.0.tar.gz) = 0fc0bf97920d454102168ec2008620066878848fcfca06c22b669696212e292f +SIZE (ipykernel-5.1.0.tar.gz) = 101198