From owner-svn-ports-head@freebsd.org Mon Jan 9 19:01:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F20DCA7260; Mon, 9 Jan 2017 19:01:04 +0000 (UTC) (envelope-from antoine@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 mx1.freebsd.org (Postfix) with ESMTPS id 06E111EA2; Mon, 9 Jan 2017 19:01:03 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v09J13Eb035180; Mon, 9 Jan 2017 19:01:03 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v09J12eE035019; Mon, 9 Jan 2017 19:01:02 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201701091901.v09J12eE035019@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 9 Jan 2017 19:01:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431016 - in head/devel: . py-jupyter_client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Mon, 09 Jan 2017 19:01:04 -0000 Author: antoine Date: Mon Jan 9 19:01:02 2017 New Revision: 431016 URL: https://svnweb.freebsd.org/changeset/ports/431016 Log: New port: devel/py-jupyter_client Jupyter protocol implementation and client libraries. WWW: http://jupyter.org/ Added: head/devel/py-jupyter_client/ head/devel/py-jupyter_client/Makefile (contents, props changed) head/devel/py-jupyter_client/distinfo (contents, props changed) head/devel/py-jupyter_client/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jan 9 18:58:54 2017 (r431015) +++ head/devel/Makefile Mon Jan 9 19:01:02 2017 (r431016) @@ -4319,6 +4319,7 @@ SUBDIR += py-jsonpointer SUBDIR += py-jsonrpclib SUBDIR += py-jsonschema + SUBDIR += py-jupyter_client SUBDIR += py-jupyter_core SUBDIR += py-kaptan SUBDIR += py-kayako Added: head/devel/py-jupyter_client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyter_client/Makefile Mon Jan 9 19:01:02 2017 (r431016) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= jupyter_client +PORTVERSION= 4.4.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Jupyter protocol implementation and client libraries + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jupyter_core>=0:devel/py-jupyter_core \ + ${PYTHON_PKGNAMEPREFIX}pyzmq>=13:net/py-pyzmq \ + ${PYTHON_PKGNAMEPREFIX}traitlets>=0:devel/py-traitlets + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-jupyter_client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyter_client/distinfo Mon Jan 9 19:01:02 2017 (r431016) @@ -0,0 +1,3 @@ +TIMESTAMP = 1483860890 +SHA256 (jupyter_client-4.4.0.tar.gz) = c99a52fac2e5b7a3b714e9252ebf72cbf97536d556ae2b5082baccc3e5cd52ee +SIZE (jupyter_client-4.4.0.tar.gz) = 256379 Added: head/devel/py-jupyter_client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyter_client/pkg-descr Mon Jan 9 19:01:02 2017 (r431016) @@ -0,0 +1,3 @@ +Jupyter protocol implementation and client libraries. + +WWW: http://jupyter.org/