Date: Sat, 19 May 2018 16:32:15 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470418 - in head/devel: . py-parallax py-parallax/files Message-ID: <201805191632.w4JGWFN0005562@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Sat May 19 16:32:15 2018 New Revision: 470418 URL: https://svnweb.freebsd.org/changeset/ports/470418 Log: Parallax SSH is a fork of Parallel SSH which focuses less on command-line tools and more on providing a flexible and programmable API that can be used by Python application developers to perform SSH operations across multiple machines. WWW: https://github.com/krig/parallax/ PR: 228184 Submitted by: David Shane Holden <dpejesh@yahoo.com> Sponsored by: iXsystems Inc. Added: head/devel/py-parallax/ head/devel/py-parallax/Makefile (contents, props changed) head/devel/py-parallax/distinfo (contents, props changed) head/devel/py-parallax/files/ head/devel/py-parallax/files/patch-parallax_____init____.py (contents, props changed) head/devel/py-parallax/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat May 19 16:25:15 2018 (r470417) +++ head/devel/Makefile Sat May 19 16:32:15 2018 (r470418) @@ -4742,6 +4742,7 @@ SUBDIR += py-p4python SUBDIR += py-packaging SUBDIR += py-palm + SUBDIR += py-parallax SUBDIR += py-parsedatetime SUBDIR += py-path.py SUBDIR += py-pathlib Added: head/devel/py-parallax/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-parallax/Makefile Sat May 19 16:32:15 2018 (r470418) @@ -0,0 +1,20 @@ +# Created by: David Shane Holden <dpejesh@yahoo.com> +# $FreeBSD$ + +PORTNAME= parallax +PORTVERSION= 1.0.3 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dpejesh@yahoo.com +COMMENT= Python API for SSH + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +USE_GITHUB= yes +GH_ACCOUNT= krig + +.include <bsd.port.mk> Added: head/devel/py-parallax/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-parallax/distinfo Sat May 19 16:32:15 2018 (r470418) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524103983 +SHA256 (krig-parallax-1.0.3_GH0.tar.gz) = 6a0199ea1c3fedd84ea25ab9a1a2c7b7a30e6484331dc33b03ee4e23b5f7b239 +SIZE (krig-parallax-1.0.3_GH0.tar.gz) = 16310 Added: head/devel/py-parallax/files/patch-parallax_____init____.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-parallax/files/patch-parallax_____init____.py Sat May 19 16:32:15 2018 (r470418) @@ -0,0 +1,11 @@ +--- parallax/__init__.py.orig 2018-04-19 02:38:57 UTC ++++ parallax/__init__.py +@@ -61,7 +61,7 @@ class Error(BaseException): + that host. + """ + def __init__(self, msg, task): +- super().__init__(self) ++ super(BaseException, self).__init__() + self.msg = msg + self.task = task + Added: head/devel/py-parallax/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-parallax/pkg-descr Sat May 19 16:32:15 2018 (r470418) @@ -0,0 +1,6 @@ +Parallax SSH is a fork of Parallel SSH which focuses less on command-line +tools and more on providing a flexible and programmable API that can be used by +Python application developers to perform SSH operations across multiple +machines. + +WWW: https://github.com/krig/parallax/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805191632.w4JGWFN0005562>