From owner-svn-ports-head@freebsd.org Mon Oct 17 18:18:25 2016 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 16720C16006; Mon, 17 Oct 2016 18:18:25 +0000 (UTC) (envelope-from novel@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 CBFDF11D5; Mon, 17 Oct 2016 18:18:24 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9HIINvN062229; Mon, 17 Oct 2016 18:18:23 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9HIINIY062225; Mon, 17 Oct 2016 18:18:23 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201610171818.u9HIINIY062225@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Mon, 17 Oct 2016 18:18:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424140 - in head/devel: . py-futurist 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, 17 Oct 2016 18:18:25 -0000 Author: novel Date: Mon Oct 17 18:18:23 2016 New Revision: 424140 URL: https://svnweb.freebsd.org/changeset/ports/424140 Log: Add py-futurist 0.18.0, useful additions to futures, from the future. PR: 213542 Submitted by: Alexander Nusov Added: head/devel/py-futurist/ head/devel/py-futurist/Makefile (contents, props changed) head/devel/py-futurist/distinfo (contents, props changed) head/devel/py-futurist/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 17 18:15:48 2016 (r424139) +++ head/devel/Makefile Mon Oct 17 18:18:23 2016 (r424140) @@ -4161,6 +4161,7 @@ SUBDIR += py-fusefs SUBDIR += py-future SUBDIR += py-futures + SUBDIR += py-futurist SUBDIR += py-game SUBDIR += py-game_sdl2 SUBDIR += py-gamin Added: head/devel/py-futurist/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-futurist/Makefile Mon Oct 17 18:18:23 2016 (r424140) @@ -0,0 +1,25 @@ +# Created by: Alexander Nusov +# $FreeBSD$ + +PORTNAME= futurist +PORTVERSION= 0.18.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= alexander.nusov@nfvexpress.com +COMMENT= Useful additions to futures, from the future + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}futures>=3.0:devel/py-futures \ + ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}monotonic>=0.6:devel/py-monotonic \ + ${PYTHON_PKGNAMEPREFIX}contextlib2>=0.4.0:devel/py-contextlib2 \ + ${PYTHON_PKGNAMEPREFIX}prettytable>=0:devel/py-prettytable + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-futurist/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-futurist/distinfo Mon Oct 17 18:18:23 2016 (r424140) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476297398 +SHA256 (futurist-0.18.0.tar.gz) = 1334cb7b07e2bd0e80273964569e211419133ace898287402ea9709faa757ef5 +SIZE (futurist-0.18.0.tar.gz) = 34087 Added: head/devel/py-futurist/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-futurist/pkg-descr Mon Oct 17 18:18:23 2016 (r424140) @@ -0,0 +1,7 @@ +Code from the future, delivered to you in the now. The goal of this library +would be to provide a well documented futures classes/utilities/additions that +allows for providing a level of transparency in how asynchronous work gets +executed. This library currently adds statistics gathering, an eventlet +executor, a synchronous executor etc. + +WWW: https://pypi.python.org/pypi/futurist