svn commit: r558472 - in head/devel: . py-capturer

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Dec 19 20:03:51 UTC 2020


Author: sunpoet
Date: Sat Dec 19 20:03:50 2020
New Revision: 558472
URL: https://svnweb.freebsd.org/changeset/ports/558472

Log:
  Add py-capturer 3.0
  
  The capturer package makes it easy to capture the stdout and stderr streams of
  the current process and subprocesses. Output can be relayed to the terminal in
  real time but is also available to the Python program for additional processing.
  
  WWW: https://capturer.readthedocs.io/en/latest/
  WWW: https://github.com/xolox/python-capturer

Added:
  head/devel/py-capturer/
  head/devel/py-capturer/Makefile   (contents, props changed)
  head/devel/py-capturer/distinfo   (contents, props changed)
  head/devel/py-capturer/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Dec 19 20:03:03 2020	(r558471)
+++ head/devel/Makefile	Sat Dec 19 20:03:50 2020	(r558472)
@@ -4204,6 +4204,7 @@
     SUBDIR += py-cachy
     SUBDIR += py-canonicaljson
     SUBDIR += py-capstone
+    SUBDIR += py-capturer
     SUBDIR += py-case
     SUBDIR += py-castellan
     SUBDIR += py-castellan1

Added: head/devel/py-capturer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-capturer/Makefile	Sat Dec 19 20:03:50 2020	(r558472)
@@ -0,0 +1,23 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	capturer
+PORTVERSION=	3.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Capture stdout/stderr of the current process and subprocesses
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}humanfriendly>=8.0:textproc/py-humanfriendly@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-capturer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-capturer/distinfo	Sat Dec 19 20:03:50 2020	(r558472)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1608366066
+SHA256 (capturer-3.0.tar.gz) = 4849032f6a670c02be434c484a0abf43c870a1efafafbfffd2e6f1c1f7ef5001
+SIZE (capturer-3.0.tar.gz) = 18146

Added: head/devel/py-capturer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-capturer/pkg-descr	Sat Dec 19 20:03:50 2020	(r558472)
@@ -0,0 +1,6 @@
+The capturer package makes it easy to capture the stdout and stderr streams of
+the current process and subprocesses. Output can be relayed to the terminal in
+real time but is also available to the Python program for additional processing.
+
+WWW: https://capturer.readthedocs.io/en/latest/
+WWW: https://github.com/xolox/python-capturer


More information about the svn-ports-all mailing list