svn commit: r424214 - in head/devel: . py-sarge
Mark Felder
feld at FreeBSD.org
Tue Oct 18 20:59:42 UTC 2016
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 at 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 at kyle-evans.net>
+# $FreeBSD$
+
+PORTNAME= sarge
+PORTVERSION= 0.1.4
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= bsdports at 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/
More information about the svn-ports-head
mailing list