Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 May 2019 08:08:11 +0000 (UTC)
From:      Dave Cottlehuber <dch@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502863 - in head/sysutils: . py-mitogen py-mitogen/files
Message-ID:  <201905280808.x4S88B52068344@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dch
Date: Tue May 28 08:08:11 2019
New Revision: 502863
URL: https://svnweb.freebsd.org/changeset/ports/502863

Log:
  sysutils/py-mitogen: new port for accelerating ansible
  
  Reviewed by:	matthew, bcr
  Approved by:	jrm (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20434

Added:
  head/sysutils/py-mitogen/
  head/sysutils/py-mitogen/Makefile   (contents, props changed)
  head/sysutils/py-mitogen/distinfo   (contents, props changed)
  head/sysutils/py-mitogen/files/
  head/sysutils/py-mitogen/files/pkg-message.in   (contents, props changed)
  head/sysutils/py-mitogen/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Tue May 28 06:51:02 2019	(r502862)
+++ head/sysutils/Makefile	Tue May 28 08:08:11 2019	(r502863)
@@ -1029,6 +1029,7 @@
     SUBDIR += py-hpilo
     SUBDIR += py-iowait
     SUBDIR += py-leviathan
+    SUBDIR += py-mitogen
     SUBDIR += py-mqttwarn
     SUBDIR += py-nagiosplugin
     SUBDIR += py-packet-python

Added: head/sysutils/py-mitogen/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-mitogen/Makefile	Tue May 28 08:08:11 2019	(r502863)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	mitogen
+DISTVERSION=	0.2.7
+CATEGORIES=	sysutils python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dch@FreeBSD.org
+COMMENT=	Ansible accelerator & python library for writing distributed programs
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	distutils autoplist concurrent
+
+NO_ARCH=	yes
+
+SUB_FILES=	pkg-message
+SUB_LIST=	PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR}
+
+.include <bsd.port.mk>

Added: head/sysutils/py-mitogen/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-mitogen/distinfo	Tue May 28 08:08:11 2019	(r502863)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1558988017
+SHA256 (mitogen-0.2.7.tar.gz) = c2dd28d6b964699822455f6c91acedc16324913586837f046a76e2e4ac1d716c
+SIZE (mitogen-0.2.7.tar.gz) = 187461

Added: head/sysutils/py-mitogen/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-mitogen/files/pkg-message.in	Tue May 28 08:08:11 2019	(r502863)
@@ -0,0 +1,7 @@
+If you are intending to use mitogen together with [sysutils/ansible]
+then simply append this into your ansible.cfg file, whether in /etc
+or in the root directory of your ansible playbook:
+
+[defaults]
+strategy         = mitogen_linear
+strategy_plugins = %%PYTHON_SITELIBDIR%%/ansible_mitogen/plugins/strategy

Added: head/sysutils/py-mitogen/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-mitogen/pkg-descr	Tue May 28 08:08:11 2019	(r502863)
@@ -0,0 +1,12 @@
+Python library for writing distributed, self-replicating programs. Its
+main feature is a pythonic "remote fork", enabling your program to
+bootstrap and communicate with remote copies of itself, requiring only
+an existing installed python, and a suitable ssh client.
+
+Mitogen also includes a highly efficient re-implementation of Ansible's
+RPC layer, providing a staggering and massive speed-up compared to stock
+ansible. Installation is trivial, and the results are impressive.
+
+https://mitogen.networkgenomics.com/ansible_detailed.html
+
+WWW: https://mitogen.networkgenomics.com/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905280808.x4S88B52068344>