From owner-svn-ports-all@freebsd.org Tue Oct 18 20:59:41 2016 Return-Path: Delivered-To: svn-ports-all@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 DCB36C171C7; Tue, 18 Oct 2016 20:59:41 +0000 (UTC) (envelope-from feld@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 B4656B68; Tue, 18 Oct 2016 20:59:41 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9IKxebo078809; Tue, 18 Oct 2016 20:59:40 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9IKxeQD078805; Tue, 18 Oct 2016 20:59:40 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201610182059.u9IKxeQD078805@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 18 Oct 2016 20:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424214 - in head/devel: . py-sarge X-SVN-Group: ports-head 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.23 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: Tue, 18 Oct 2016 20:59:42 -0000 Author: feld Date: Tue Oct 18 20:59:40 2016 New Revision: 424214 URL: https://svnweb.freebsd.org/changeset/ports/424214 Log: The sarge package provides a wrapper for subprocess which provides command pipeline functionality. This package leverages subprocess to provide easy-to-use cross-platform command pipelines with a Posix flavour: you can have chains of commands using ;, &, pipes using | and |&, and redirection. The latest version of sarge can be found on BitBucket: https://bitbucket.org/vinay.sajip/sarge/ The latest documentation (kept updated between releases) is on Read The Docs: http://sarge.readthedocs.org/ Please report any problems or suggestions for improvement either via the mailing list or the issue tracker. WWW: http://sarge.readthedocs.org/ PR: 213324 Submitted by: Kyle Evans Added: head/devel/py-sarge/ head/devel/py-sarge/Makefile (contents, props changed) head/devel/py-sarge/distinfo (contents, props changed) head/devel/py-sarge/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 18 20:56:50 2016 (r424213) +++ head/devel/Makefile Tue Oct 18 20:59:40 2016 (r424214) @@ -4484,6 +4484,7 @@ SUBDIR += py-rtree SUBDIR += py-ruledispatch SUBDIR += py-sanetime + SUBDIR += py-sarge SUBDIR += py-scripttest SUBDIR += py-sdl2 SUBDIR += py-selection Added: head/devel/py-sarge/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-sarge/Makefile Tue Oct 18 20:59:40 2016 (r424214) @@ -0,0 +1,19 @@ +# Created by: Kyle Evans +# $FreeBSD$ + +PORTNAME= sarge +PORTVERSION= 0.1.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bsdports@kyle-evans.net +COMMENT= Wrapper for subprocess which provides command pipeline functionality + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-sarge/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-sarge/distinfo Tue Oct 18 20:59:40 2016 (r424214) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475906135 +SHA256 (sarge-0.1.4.tar.gz) = 59f93216723ddd9062d17cbbb90ed9e69267b84825cf0bde0b7f8d934c424823 +SIZE (sarge-0.1.4.tar.gz) = 50472 Added: head/devel/py-sarge/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-sarge/pkg-descr Tue Oct 18 20:59:40 2016 (r424214) @@ -0,0 +1,23 @@ + + + + +The sarge package provides a wrapper for subprocess which provides command +pipeline functionality. + +This package leverages subprocess to provide easy-to-use cross-platform command +pipelines with a Posix flavour: you can have chains of commands using ;, &, +pipes using | and |&, and redirection. + +The latest version of sarge can be found on BitBucket: + +https://bitbucket.org/vinay.sajip/sarge/ + +The latest documentation (kept updated between releases) is on Read The Docs: + +http://sarge.readthedocs.org/ + +Please report any problems or suggestions for improvement either via the mailing +list or the issue tracker. + +WWW: http://sarge.readthedocs.org/