From owner-svn-ports-all@freebsd.org Sat Apr 4 07:30:41 2020 Return-Path: Delivered-To: svn-ports-all@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 2B1332A3A87; Sat, 4 Apr 2020 07:30:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48vT401M2Jz3G8x; Sat, 4 Apr 2020 07:30:39 +0000 (UTC) (envelope-from sunpoet@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 88D1C1C83B; Sat, 4 Apr 2020 07:22:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0347M5rk038587; Sat, 4 Apr 2020 07:22:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0347M4SZ038582; Sat, 4 Apr 2020 07:22:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202004040722.0347M4SZ038582@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 4 Apr 2020 07:22:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r530559 - in head/devel: . py-jupyter-telemetry X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-jupyter-telemetry X-SVN-Commit-Revision: 530559 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Apr 2020 07:30:41 -0000 Author: sunpoet Date: Sat Apr 4 07:22:04 2020 New Revision: 530559 URL: https://svnweb.freebsd.org/changeset/ports/530559 Log: Add py-jupyter-telemetry 0.0.5 Jupyter Telemetry enables Jupyter Applications (e.g. Jupyter Server, Jupyter Notebook, JupyterLab, JupyterHub, etc.) to record events - i.e. actions by application users - and transmit them to remote (or local) destinations as structured data. It works with Python's standard logging library to handle the transmission of events allowing users to send events to local files, over the web, etc. WWW: https://github.com/jupyter/telemetry Added: head/devel/py-jupyter-telemetry/ head/devel/py-jupyter-telemetry/Makefile (contents, props changed) head/devel/py-jupyter-telemetry/distinfo (contents, props changed) head/devel/py-jupyter-telemetry/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Apr 4 07:21:46 2020 (r530558) +++ head/devel/Makefile Sat Apr 4 07:22:04 2020 (r530559) @@ -4531,6 +4531,7 @@ SUBDIR += py-jsonrpclib-pelix SUBDIR += py-jsonschema SUBDIR += py-jsonsir + SUBDIR += py-jupyter-telemetry SUBDIR += py-jupyter_client SUBDIR += py-jupyter_console SUBDIR += py-jupyter_core Added: head/devel/py-jupyter-telemetry/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyter-telemetry/Makefile Sat Apr 4 07:22:04 2020 (r530559) @@ -0,0 +1,27 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= jupyter-telemetry +PORTVERSION= 0.0.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= jupyter_telemetry-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Jupyter telemetry library + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jsonschema>=0:devel/py-jsonschema@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-json-logger>=0:devel/py-python-json-logger@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ruamel.yaml>=0:devel/py-ruamel.yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}traitlets>=0:devel/py-traitlets@${PY_FLAVOR} + +USES= python:3.5+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-jupyter-telemetry/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyter-telemetry/distinfo Sat Apr 4 07:22:04 2020 (r530559) @@ -0,0 +1,3 @@ +TIMESTAMP = 1585907180 +SHA256 (jupyter_telemetry-0.0.5.tar.gz) = d3eaac14be17510a4d288f3737580107ce14eef543e6133d56654d3f0e742b9b +SIZE (jupyter_telemetry-0.0.5.tar.gz) = 12900 Added: head/devel/py-jupyter-telemetry/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyter-telemetry/pkg-descr Sat Apr 4 07:22:04 2020 (r530559) @@ -0,0 +1,8 @@ +Jupyter Telemetry enables Jupyter Applications (e.g. Jupyter Server, Jupyter +Notebook, JupyterLab, JupyterHub, etc.) to record events - i.e. actions by +application users - and transmit them to remote (or local) destinations as +structured data. It works with Python's standard logging library to handle the +transmission of events allowing users to send events to local files, over the +web, etc. + +WWW: https://github.com/jupyter/telemetry