From owner-svn-ports-head@freebsd.org Thu Mar 29 21:16:57 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 C2053F778D6; Thu, 29 Mar 2018 21:16:57 +0000 (UTC) (envelope-from yuri@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 74268858A1; Thu, 29 Mar 2018 21:16:57 +0000 (UTC) (envelope-from yuri@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 6F1161F6AF; Thu, 29 Mar 2018 21:16:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2TLGvrZ034700; Thu, 29 Mar 2018 21:16:57 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2TLGvPC034696; Thu, 29 Mar 2018 21:16:57 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803292116.w2TLGvPC034696@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 29 Mar 2018 21:16:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465930 - in head/devel: . py-strategies X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-strategies X-SVN-Commit-Revision: 465930 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.25 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: Thu, 29 Mar 2018 21:16:58 -0000 Author: yuri Date: Thu Mar 29 21:16:56 2018 New Revision: 465930 URL: https://svnweb.freebsd.org/changeset/ports/465930 Log: New port: devel/py-strategies: Programmatic control flow Added: head/devel/py-strategies/ head/devel/py-strategies/Makefile (contents, props changed) head/devel/py-strategies/distinfo (contents, props changed) head/devel/py-strategies/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Mar 29 21:06:16 2018 (r465929) +++ head/devel/Makefile Thu Mar 29 21:16:56 2018 (r465930) @@ -4945,6 +4945,7 @@ SUBDIR += py-stdnum SUBDIR += py-stevedore SUBDIR += py-stopit + SUBDIR += py-strategies SUBDIR += py-streamparse SUBDIR += py-structlog SUBDIR += py-stsci.distutils Added: head/devel/py-strategies/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-strategies/Makefile Thu Mar 29 21:16:56 2018 (r465930) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= strategies +DISTVERSION= 0.2.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Programmatic control flow + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}multipledispatch>0:devel/py-multipledispatch@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}toolz>0:devel/py-toolz@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-strategies/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-strategies/distinfo Thu Mar 29 21:16:56 2018 (r465930) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522357603 +SHA256 (strategies-0.2.3.tar.gz) = 488c55a5d7f887c5290f03209e11622f5da4e754826eb123bac1cca473f3240a +SIZE (strategies-0.2.3.tar.gz) = 6373 Added: head/devel/py-strategies/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-strategies/pkg-descr Thu Mar 29 21:16:56 2018 (r465930) @@ -0,0 +1,4 @@ +This project contains a set of complementary higher order functions that +loosely resembles the Stratego language. + +WWW: http://github.com/logpy/strategies