Date: Tue, 18 Oct 2016 20:59:40 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424214 - in head/devel: . py-sarge Message-ID: <201610182059.u9IKxeQD078805@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsdports@kyle-evans.net> 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 <bsdports@kyle-evans.net> +# $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 <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610182059.u9IKxeQD078805>