This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 97714ba894 gnu: sshoot: Update to 1.6.0.
97714ba894 is described below
commit 97714ba894b55c5076c9e185602b51b4dfc25423
Author: Cayetano Santos <[email protected]>
AuthorDate: Mon Mar 9 16:47:47 2026 +0100
gnu: sshoot: Update to 1.6.0.
* 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