From dadedd0adac684b7fdc0310038b5d599d23586f2 Mon Sep 17 00:00:00 2001 From: Sergey Trofimov Date: Fri, 26 Sep 2025 09:13:28 +0200 Subject: [PATCH] gnu: secretsd: Update to d12eefee. * gnu/packages/password-utils.scm (secretsd): Update to d12eefee. [arguments]<#:tests?>: Disable as there are no tests to run. [inputs]: Remove unused python-xdg. Change-Id: Ic42d9f06e5f8af6684d61a58b7944e05ae3382ce Reviewed-by: Andreas Enge Signed-off-by: Sharlatan Hellseher --- gnu/packages/password-utils.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index 29149e5c50063fa833e2cdef092bfb3747d537e7..9f679e517a2f289b0dffccfb752631ab17a05838 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -1404,8 +1404,8 @@ winner of the 2015 Password Hashing Competition.") (define-public secretsd ;; there are neither tags nor releases in the repository - (let ((commit "4ea56226b8f7c8739eea7fc8d1ffca8e18cf58c9") - (revision "0")) + (let ((commit "d12eefee00dbd4b0f756dcf7c52d31539dbcfc67") + (revision "1")) (package (name "secretsd") (version (git-version "1.0" revision commit)) @@ -1417,7 +1417,7 @@ winner of the 2015 Password Hashing Competition.") (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "0ka21vmvm25kal3sa8zmrifh4zac878hk24y7y3jj3ig8dkv0vfy")) + (base32 "1cr6vpb1mc48b60mjbnzalp58vx07sh7hg9r65j0cppk0n4gc0aj")) (modules '((guix build utils))) (snippet ;; don't install platform dependencies @@ -1425,6 +1425,7 @@ winner of the 2015 Password Hashing Competition.") (build-system pyproject-build-system) (arguments (list + #:tests? #f ; no tests #:phases #~(modify-phases %standard-phases (add-after 'create-entrypoints 'wrap-program @@ -1433,7 +1434,7 @@ winner of the 2015 Password Hashing Competition.") `("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH"))))))))) (inputs (list python-dbus python-platformdirs python-cryptography - python-xdg python-pygobject)) + python-pygobject)) (native-inputs (list bash-minimal python-setuptools python-wheel)) (home-page "https://github.com/grawity/secretsd") (synopsis "Basic FreeDesktop.org Secret Service backend")