From 97714ba894b55c5076c9e185602b51b4dfc25423 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Mon, 9 Mar 2026 16:47:47 +0100 Subject: [PATCH] gnu: sshoot: Update to 1.6.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/vpn.scm (sshoot): Update to 1.6.0. [arguments]: Fix path in ’patch-paths #:phase. [native-inputs]: Remove python-wheel. Change-Id: I3243eb6e8b37dfb1295fd070b2b070f1d843e651 --- gnu/packages/vpn.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 0ebc98516d..454ef04e44 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -1247,7 +1247,7 @@ DNS domain name queries.") (define-public sshoot (package (name "sshoot") - (version "1.5.1") + (version "1.6.0") (source (origin (method git-fetch) @@ -1256,7 +1256,7 @@ DNS domain name queries.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0725p0l2gx881hsjw3nj44n4gm1kv9hirv5cd4d9yr1ba87whp3q")))) + (base32 "0xyj1ahhkcc7m27ym7ch4dwp2x43v9mfs9aiqnnnkq226rydffjl")))) (build-system pyproject-build-system) (arguments (list @@ -1264,13 +1264,12 @@ DNS domain name queries.") #~(modify-phases %standard-phases (add-after 'unpack 'patch-paths (lambda* (#:key inputs #:allow-other-keys) - (substitute* "sshoot/tests/test_manager.py" + (substitute* "tests/manager_test.py" (("/bin/sh") (search-input-file inputs "bin/sh")))))))) (inputs (list python-argcomplete python-prettytable python-pyyaml python-pyxdg python-toolrack)) - (native-inputs (list python-pytest python-pytest-mock python-setuptools - python-wheel)) + (native-inputs (list python-pytest python-pytest-mock python-setuptools)) (home-page "https://github.com/albertodonato/sshoot") (synopsis "VPN session manager (sshuttle)") (description