From owner-svn-ports-all@freebsd.org Sat May 19 16:32:17 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51BEEED6941; Sat, 19 May 2018 16:32:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0696375819; Sat, 19 May 2018 16:32:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DC7B0193F; Sat, 19 May 2018 16:32:16 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4JGWGAE005567; Sat, 19 May 2018 16:32:16 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4JGWFN0005562; Sat, 19 May 2018 16:32:15 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201805191632.w4JGWFN0005562@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 19 May 2018 16:32:15 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/devel: . py-parallax py-parallax/files X-SVN-Commit-Revision: 470418 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 16:32:17 -0000 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 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 +# $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 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/