From owner-svn-ports-head@freebsd.org Tue Jul 21 17:15:08 2020 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 7BDC936277F; Tue, 21 Jul 2020 17:15:08 +0000 (UTC) (envelope-from amdmi3@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4BB4wX2kmnz3gvk; Tue, 21 Jul 2020 17:15:08 +0000 (UTC) (envelope-from amdmi3@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 40BAA21575; Tue, 21 Jul 2020 17:15:08 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06LHF8PV019684; Tue, 21 Jul 2020 17:15:08 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06LHF7QM019680; Tue, 21 Jul 2020 17:15:07 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <202007211715.06LHF7QM019680@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 21 Jul 2020 17:15:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542760 - in head/devel: . py-trio X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/devel: . py-trio X-SVN-Commit-Revision: 542760 X-SVN-Commit-Repository: ports 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.33 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: Tue, 21 Jul 2020 17:15:08 -0000 Author: amdmi3 Date: Tue Jul 21 17:15:07 2020 New Revision: 542760 URL: https://svnweb.freebsd.org/changeset/ports/542760 Log: - Add devel/py-trio: Friendly Python library for async concurrency and I/O The Trio project’s goal is to produce a production-quality, permissively licensed, async/await-native I/O library for Python. Like all async libraries, its main purpose is to help you write programs that do multiple things at the same time with parallelized I/O. A web spider that wants to fetch lots of pages in parallel, a web server that needs to juggle lots of downloads and websocket connections at the same time, a process supervisor monitoring multiple subprocesses… that sort of thing. Compared to other libraries, Trio attempts to distinguish itself with an obsessive focus on usability and correctness. Concurrency is complicated; we try to make it easy to get things right. WWW: https://pypi.org/project/trio/ Added: head/devel/py-trio/ head/devel/py-trio/Makefile (contents, props changed) head/devel/py-trio/distinfo (contents, props changed) head/devel/py-trio/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jul 21 17:11:25 2020 (r542759) +++ head/devel/Makefile Tue Jul 21 17:15:07 2020 (r542760) @@ -5162,6 +5162,7 @@ SUBDIR += py-transitions SUBDIR += py-tree-format SUBDIR += py-trimesh + SUBDIR += py-trio SUBDIR += py-trollius SUBDIR += py-ttictoc SUBDIR += py-ttystatus Added: head/devel/py-trio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-trio/Makefile Tue Jul 21 17:15:07 2020 (r542760) @@ -0,0 +1,38 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= trio +PORTVERSION= 0.16.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Friendly Python library for async concurrency and I/O + +LICENSE= MIT APACHE20 +LICENSE_COMB= dual +LICENSE_FILE_MIT= ${WRKSRC}/LICENSE.MIT +LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.APACHE2 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}async_generator>=0:devel/py-async_generator@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sniffio>=0:devel/py-sniffio@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sortedcontainers>=0:devel/py-sortedcontainers@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}attrs>=0:devel/py-attrs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}idna>=0:dns/py-idna@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}outcome>=0:devel/py-outcome@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}astor>=0:devel/py-astor@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}jedi>=0:devel/py-jedi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openssl>=0:security/py-openssl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}trustme>=0:security/py-trustme@${PY_FLAVOR} \ + pylint${PYTHON_PKGNAMESUFFIX}>=0:devel/pylint@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +do-test: + @cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs + +.include Added: head/devel/py-trio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-trio/distinfo Tue Jul 21 17:15:07 2020 (r542760) @@ -0,0 +1,3 @@ +TIMESTAMP = 1594817001 +SHA256 (trio-0.16.0.tar.gz) = df067dd0560c321af39d412cd81fc3a7d13f55af9150527daab980683e9fcf3c +SIZE (trio-0.16.0.tar.gz) = 414931 Added: head/devel/py-trio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-trio/pkg-descr Tue Jul 21 17:15:07 2020 (r542760) @@ -0,0 +1,13 @@ +The Trio project’s goal is to produce a production-quality, +permissively licensed, async/await-native I/O library for Python. +Like all async libraries, its main purpose is to help you write +programs that do multiple things at the same time with parallelized +I/O. A web spider that wants to fetch lots of pages in parallel, a +web server that needs to juggle lots of downloads and websocket +connections at the same time, a process supervisor monitoring +multiple subprocesses… that sort of thing. Compared to other +libraries, Trio attempts to distinguish itself with an obsessive +focus on usability and correctness. Concurrency is complicated; we +try to make it easy to get things right. + +WWW: https://pypi.org/project/trio/