This patches add compatibility for the forthcoming RobotFramework 5. Taken from: https://github.com/robotframework/SSHLibrary/pull/403. diff --git a/src/SSHLibrary/pythonforward.py b/src/SSHLibrary/pythonforward.py index 8b85997b7..607985cf4 100644 --- a/src/SSHLibrary/pythonforward.py +++ b/src/SSHLibrary/pythonforward.py @@ -1,9 +1,9 @@ import select import socket import threading -from robot.utils import platform +from robot.utils import PY2, WINDOWS from .logger import logger -if platform.PY2 and platform.WINDOWS: +if PY2 and WINDOWS: import win_inet_pton try: import SocketServer ba58fd31ea2151301d58419d6996f601587'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/hardware.scm
AgeCommit message (Expand)Author
2022-11-15installer: Report known-unsupported PCI devices....* gnu/installer/hardware.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add it. * po/guix/POTFILES.in: Add it. * gnu/installer.scm (installer-steps): Pass #:pci-database to the 'welcome' step procedure. * gnu/installer/newt.scm (welcome-page): Add #:pci-database and pass it to 'run-welcome-page'. * gnu/installer/newt/welcome.scm (check-hardware-support): Add #:pci-database. Enumerate unsupported PCI devices and run an error page when unsupported devices are found. (run-welcome-page): Add #:pci-database and pass it to 'check-hardware-support' and to the recursive call. * gnu/installer/record.scm (<installer>)[welcome-page]: Adjust comment. * doc/guix.texi (Hardware Considerations): Mention it. Ludovic Courtès