Index: branches/2020Q2/security/pssh/Makefile =================================================================== --- branches/2020Q2/security/pssh/Makefile (revision 531617) +++ branches/2020Q2/security/pssh/Makefile (revision 531618) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= pssh PORTVERSION= 2.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security net sysutils MASTER_SITES= CHEESESHOP -MAINTAINER= brooks@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Parallel versions of the openssh tools LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rsync:net/rsync NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils concurrent optsuffix .include Index: branches/2020Q2/security/pssh/files/patch-psshlib_cli.py =================================================================== --- branches/2020Q2/security/pssh/files/patch-psshlib_cli.py (nonexistent) +++ branches/2020Q2/security/pssh/files/patch-psshlib_cli.py (revision 531618) @@ -0,0 +1,11 @@ +--- psshlib/cli.py.orig ++++ psshlib/cli.py +@@ -6,7 +6,7 @@ + import shlex + import sys + import textwrap +-import version ++from psshlib import version + + _DEFAULT_PARALLELISM = 32 + _DEFAULT_TIMEOUT = 0 # "infinity" by default Property changes on: branches/2020Q2/security/pssh/files/patch-psshlib_cli.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2020Q2/security/pssh/files/patch-psshlib_manager.py =================================================================== --- branches/2020Q2/security/pssh/files/patch-psshlib_manager.py (nonexistent) +++ branches/2020Q2/security/pssh/files/patch-psshlib_manager.py (revision 531618) @@ -0,0 +1,18 @@ +--- psshlib/manager.py.orig ++++ psshlib/manager.py +@@ -2,6 +2,7 @@ + + from errno import EINTR + import os ++import fcntl + import select + import signal + import sys +@@ -209,6 +210,7 @@ + + # Setup the wakeup file descriptor to avoid hanging on lost signals. + wakeup_readfd, wakeup_writefd = os.pipe() ++ fcntl.fcntl(wakeup_writefd, fcntl.F_SETFL, os.O_NONBLOCK) + self.register_read(wakeup_readfd, self.wakeup_handler) + # TODO: remove test when we stop supporting Python <2.5 + if hasattr(signal, 'set_wakeup_fd'): Property changes on: branches/2020Q2/security/pssh/files/patch-psshlib_manager.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2020Q2 =================================================================== --- branches/2020Q2 (revision 531617) +++ branches/2020Q2 (revision 531618) Property changes on: branches/2020Q2 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r531333