Package: guix-patches;
Reported by: Giacomo Leidi <goodoldpaul <at> autistici.org>
Date: Sat, 4 Jan 2025 00:35:02 UTC
Severity: normal
Tags: patch
Done: Efraim Flashner <efraim <at> flashner.co.il>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75331 in the body.
You can then email your comments to 75331 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
View this report as an mbox folder, status mbox, maintainer mbox
liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, vivien <at> planete-kraus.eu, guix-patches <at> gnu.org
:bug#75331
; Package guix-patches
.
(Sat, 04 Jan 2025 00:35:02 GMT) Full text and rfc822 format available.Giacomo Leidi <goodoldpaul <at> autistici.org>
:liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, vivien <at> planete-kraus.eu, guix-patches <at> gnu.org
.
(Sat, 04 Jan 2025 00:35:02 GMT) Full text and rfc822 format available.Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From: Giacomo Leidi <goodoldpaul <at> autistici.org> To: guix-patches <at> gnu.org Cc: Giacomo Leidi <goodoldpaul <at> autistici.org> Subject: [PATCH rust-team] gnu: authenticator: Deprecate in favor of gnome-authenticator. Date: Sat, 4 Jan 2025 01:33:33 +0100
This commit is a follow up to 64bcc8ba0f1ea8addaf0a1c65b3fca6cb1bf5422, it deprecates the old Python authenticator package in favor of the new gnome-authenticator Rust implementation. * gnu/services/gnome.scm (authenticator): Deprecate in favor of gnome-authenticator. Change-Id: I02081f4cd1dfdb8bd2327a9931299e97f8a11aee --- gnu/packages/gnome.scm | 326 ++++++++++++++++------------------------- 1 file changed, 127 insertions(+), 199 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index a5891cb82d..30038379f5 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -36,7 +36,7 @@ ;;; Copyright © 2019 Danny Milosavljevic <dannym <at> scratchpost.org> ;;; Copyright © 2019, 2020, 2022 Marius Bakke <marius <at> gnu.org> ;;; Copyright © 2019 Florian Pelz <pelzflorian <at> pelzflorian.de> -;;; Copyright © 2019 Giacomo Leidi <goodoldpaul <at> autistici.org> +;;; Copyright © 2019, 2024, 2025 Giacomo Leidi <goodoldpaul <at> autistici.org> ;;; Copyright © 2019 Jelle Licht <jlicht <at> fsfe.org> ;;; Copyright © 2019 Jonathan Frederickson <jonathan <at> terracrypt.net> ;;; Copyright © 2019-2024 Maxim Cournoyer <maxim.cournoyer <at> gmail.com> @@ -79,7 +79,6 @@ ;;; Copyright © 2023 Zhu Zihao <all_but_last <at> 163.com> ;;; Copyright © 2024 Dariqq <dariqq <at> posteo.net> ;;; Copyright © 2024 James Smith <jsubuntuxp <at> disroot.org> -;;; Copyright © 2024 Giacomo Leidi <goodoldpaul <at> autistici.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -10493,81 +10492,152 @@ (define-public byzanz (home-page "https://git.gnome.org/browse/byzanz") (license license:gpl2+)))) -(define-public authenticator +(define-public gnome-authenticator (package - (name "authenticator") - (version "3.32.2") + (name "gnome-authenticator") + (version "4.4.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://gitlab.gnome.org/World/Authenticator") + (url "https://gitlab.gnome.org/World/Authenticator.git/") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1c4r9rnrz5gazrfg0z2rcwax4nscs7z391bcjcl74k6ln3blwzpr")))) - (build-system meson-build-system) + (base32 "0zavax35n048spx097ymiq31s8b879qwbg8xmcxcx73r6m823mic")))) + (build-system cargo-build-system) (arguments (list - #:glib-or-gtk? #t + #:install-source? #f + #:vendor-dir "vendor" + #:cargo-inputs + (list rust-aes-gcm-0.10 + rust-anyhow-1 + rust-async-std-1 + rust-aperture-0.3 + rust-ashpd-0.6 + rust-data-encoding-2 + rust-diesel-2 + rust-diesel-migrations-2 + rust-futures-channel-0.3 + rust-futures-executor-0.3 + rust-futures-util-0.3 + rust-gettext-rs-0.7 + rust-gtk4-0.7 + rust-hex-0.4 + rust-image-0.24 + rust-libadwaita-0.5 + rust-oo7-0.2 + rust-percent-encoding-2 + rust-prost-0.12 + rust-qrencode-0.14 + rust-quick-xml-0.30 + rust-rand-0.8 + rust-reqwest-0.11 + rust-ring-0.17 + rust-rust-argon2-2 + rust-scrypt-0.11 + rust-search-provider-0.6 + rust-serde-1 + rust-serde-json-1 + rust-svg-metadata-0.4 + rust-tokio-1 + rust-tracing-0.1 + rust-tracing-subscriber-0.3 + rust-url-2 + rust-uuid-1 + rust-zbar-rust-0.0.23 ; any 0.0.* + rust-zeroize-1) + #:imported-modules `(,@%meson-build-system-modules + ,@%glib-or-gtk-build-system-modules + ,@%cargo-build-system-modules) + #:modules `((guix build cargo-build-system) + ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:) + ((guix build meson-build-system) #:prefix meson:) + (guix build utils)) #:phases #~(modify-phases %standard-phases - (add-after 'unpack 'patch-meson.build + (add-after 'unpack 'generate-gdk-pixbuf-loaders-cache-file + (assoc-ref glib-or-gtk:%standard-phases + 'generate-gdk-pixbuf-loaders-cache-file)) + (add-after 'unpack 'prepare-for-build (lambda _ - (substitute* "data/meson.build" - (("^ 'desktop',.*") "") - (("^ 'appdata',.*") "")))) - (add-after 'glib-or-gtk-wrap 'python-and-gi-wrap - (lambda* (#:key inputs outputs #:allow-other-keys) - (let ((prog (search-input-file outputs "bin/authenticator")) - (pylib (string-append #$output "/lib/python" - #$(version-major+minor - (package-version - (this-package-input "python"))) - "/site-packages"))) - (wrap-program prog - `("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH") ,pylib)) - `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))))) - (native-inputs - (list desktop-file-utils - gettext-minimal - `(,glib "bin") - gobject-introspection - `(,gtk+ "bin") - pkg-config)) - (inputs - (list bash-minimal - gsettings-desktop-schemas - gtk+ - libhandy-0.0 - libsecret - python - python-beautifulsoup4 - python-pillow - python-pyfavicon - python-pygobject - python-pyotp - python-pyzbar - yoyo-migrations - zbar)) - (home-page "https://gitlab.gnome.org/World/Authenticator/") - (synopsis "Two-factor authentication application built for GNOME") - (description - "Authenticator is a two-factor authentication (2FA) application built for -the GNOME desktop environment. + (substitute* "meson.build" + (("gtk_update_icon_cache: true") + "gtk_update_icon_cache: false") + (("update_desktop_database: true") + "update_desktop_database: false")) + ;; Help the tests find the Cargo.toml in the sources. + (substitute* "src/meson.build" + (("'test'") "'test', cargo_options")) + (delete-file "Cargo.lock"))) + ;; Add meson-configure phase here and not before 'configure because + ;; the meson 'configure phase changes to a different directory and + ;; we need it created before unpacking the crates. + (add-before 'unpack-rust-crates 'meson-configure + (lambda args + (apply (assoc-ref meson:%standard-phases 'configure) + #:build-type "debugoptimized" + #:configure-flags '() + args))) + (replace 'build + (assoc-ref meson:%standard-phases 'build)) + (replace 'check + (lambda args + (apply (assoc-ref meson:%standard-phases 'check) + #:test-options '() + args))) + (replace 'install + (assoc-ref meson:%standard-phases 'install)) + (add-after 'install 'glib-or-gtk-compile-schemas + (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)) + (add-after 'install 'glib-or-gtk-wrap + (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)) + (add-after 'glib-or-gtk-wrap 'wrap-extra-paths + (lambda _ + (let ((gst-plugins-path (getenv "GST_PLUGIN_SYSTEM_PATH"))) + (wrap-program (string-append #$output "/bin/authenticator") + `("GST_PLUGIN_SYSTEM_PATH" ":" suffix (,gst-plugins-path)))))) + (add-after 'strip 'shrink-runpath + (assoc-ref meson:%standard-phases 'shrink-runpath))))) + (native-inputs (list gettext-minimal + `(,glib "bin") ; for glib-compile-schemas + meson + ninja + pkg-config)) + (inputs (list bash-minimal + glib + gstreamer + gst-plugins-base + gst-plugins-bad + gtk + libadwaita + openssl + pipewire ; Needed but not listed + sqlite + zbar)) + (home-page "https://apps.gnome.org/Authenticator") + (synopsis "Generate two-factor codes") + (description "Simple application for generating Two-Factor Authentication +Codes: -Features: +It features: @itemize -@item QR code scanner +@item Time-based/Counter-based/Steam methods support +@item SHA-1/SHA-256/SHA-512 algorithms support +@item QR code scanner using a camera or from a screenshot +@item Lock the application with a password @item Beautiful UI -@item Huge database of more than 560 supported services -@item Keep your PIN tokens secure by locking the application with a password -@item Automatically fetch an image for services using their favicon -@item The possibility to add new services +@item GNOME Shell search provider +@item Backup/Restore from/into known applications like FreeOTP+, +Aegis (encrypted / plain-text), andOTP, Google Authenticator @end itemize") (license license:gpl3+))) +(define-public authenticator + (deprecated-package "authenticator" gnome-authenticator)) + (define-public gsound (package (name "gsound") @@ -13567,148 +13637,6 @@ (define-public gnome-builder profiler via Sysprof, debugging support, and more.") (license license:gpl3+))) -(define-public gnome-authenticator - (package - (name "gnome-authenticator") - (version "4.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gitlab.gnome.org/World/Authenticator.git/") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zavax35n048spx097ymiq31s8b879qwbg8xmcxcx73r6m823mic")))) - (build-system cargo-build-system) - (arguments - (list - #:install-source? #f - #:vendor-dir "vendor" - #:cargo-inputs - (list rust-aes-gcm-0.10 - rust-anyhow-1 - rust-async-std-1 - rust-aperture-0.3 - rust-ashpd-0.6 - rust-data-encoding-2 - rust-diesel-2 - rust-diesel-migrations-2 - rust-futures-channel-0.3 - rust-futures-executor-0.3 - rust-futures-util-0.3 - rust-gettext-rs-0.7 - rust-gtk4-0.7 - rust-hex-0.4 - rust-image-0.24 - rust-libadwaita-0.5 - rust-oo7-0.2 - rust-percent-encoding-2 - rust-prost-0.12 - rust-qrencode-0.14 - rust-quick-xml-0.30 - rust-rand-0.8 - rust-reqwest-0.11 - rust-ring-0.17 - rust-rust-argon2-2 - rust-scrypt-0.11 - rust-search-provider-0.6 - rust-serde-1 - rust-serde-json-1 - rust-svg-metadata-0.4 - rust-tokio-1 - rust-tracing-0.1 - rust-tracing-subscriber-0.3 - rust-url-2 - rust-uuid-1 - rust-zbar-rust-0.0.23 ; any 0.0.* - rust-zeroize-1) - #:imported-modules `(,@%meson-build-system-modules - ,@%glib-or-gtk-build-system-modules - ,@%cargo-build-system-modules) - #:modules `((guix build cargo-build-system) - ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:) - ((guix build meson-build-system) #:prefix meson:) - (guix build utils)) - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'generate-gdk-pixbuf-loaders-cache-file - (assoc-ref glib-or-gtk:%standard-phases - 'generate-gdk-pixbuf-loaders-cache-file)) - (add-after 'unpack 'prepare-for-build - (lambda _ - (substitute* "meson.build" - (("gtk_update_icon_cache: true") - "gtk_update_icon_cache: false") - (("update_desktop_database: true") - "update_desktop_database: false")) - ;; Help the tests find the Cargo.toml in the sources. - (substitute* "src/meson.build" - (("'test'") "'test', cargo_options")) - (delete-file "Cargo.lock"))) - ;; Add meson-configure phase here and not before 'configure because - ;; the meson 'configure phase changes to a different directory and - ;; we need it created before unpacking the crates. - (add-before 'unpack-rust-crates 'meson-configure - (lambda args - (apply (assoc-ref meson:%standard-phases 'configure) - #:build-type "debugoptimized" - #:configure-flags '() - args))) - (replace 'build - (assoc-ref meson:%standard-phases 'build)) - (replace 'check - (lambda args - (apply (assoc-ref meson:%standard-phases 'check) - #:test-options '() - args))) - (replace 'install - (assoc-ref meson:%standard-phases 'install)) - (add-after 'install 'glib-or-gtk-compile-schemas - (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)) - (add-after 'install 'glib-or-gtk-wrap - (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)) - (add-after 'glib-or-gtk-wrap 'wrap-extra-paths - (lambda _ - (let ((gst-plugins-path (getenv "GST_PLUGIN_SYSTEM_PATH"))) - (wrap-program (string-append #$output "/bin/authenticator") - `("GST_PLUGIN_SYSTEM_PATH" ":" suffix (,gst-plugins-path)))))) - (add-after 'strip 'shrink-runpath - (assoc-ref meson:%standard-phases 'shrink-runpath))))) - (native-inputs (list gettext-minimal - `(,glib "bin") ; for glib-compile-schemas - meson - ninja - pkg-config)) - (inputs (list glib - gstreamer - gst-plugins-base - gst-plugins-bad - gtk - libadwaita - openssl - pipewire ; Needed but not listed - sqlite - zbar)) - (home-page "https://apps.gnome.org/Authenticator") - (synopsis "Generate two-factor codes") - (description "Simple application for generating Two-Factor Authentication -Codes: - -It features: - -@itemize -@item Time-based/Counter-based/Steam methods support -@item SHA-1/SHA-256/SHA-512 algorithms support -@item QR code scanner using a camera or from a screenshot -@item Lock the application with a password -@item Beautiful UI -@item GNOME Shell search provider -@item Backup/Restore from/into known applications like FreeOTP+, -Aegis (encrypted / plain-text), andOTP, Google Authenticator -@end itemize") - (license license:gpl3+))) - (define-public komikku (package (name "komikku") base-commit: 5f92f009a19c1a5a8b7df5a7bcb1e1f283a953f8 -- 2.47.1
guix-patches <at> gnu.org
:bug#75331
; Package guix-patches
.
(Sat, 04 Jan 2025 00:40:02 GMT) Full text and rfc822 format available.Message #8 received at 75331 <at> debbugs.gnu.org (full text, mbox):
From: paul <goodoldpaul <at> autistici.org> To: 75331 <at> debbugs.gnu.org Cc: efraim <at> flashner.co.il Subject: Re: gnu: authenticator: Deprecate in favor of gnome-authenticator. Date: Sat, 4 Jan 2025 01:39:09 +0100
Hi Efraim, I noticed that there was an old authenticator package at gnome.scm . I made this patch against the rust-team branch to deprecate it in favor of gnome-authenticator. Thank you for your work cheers, giacomo
Efraim Flashner <efraim <at> flashner.co.il>
:Giacomo Leidi <goodoldpaul <at> autistici.org>
:Message #13 received at 75331-done <at> debbugs.gnu.org (full text, mbox):
From: Efraim Flashner <efraim <at> flashner.co.il> To: paul <goodoldpaul <at> autistici.org> Cc: 75331-done <at> debbugs.gnu.org Subject: Re: gnu: authenticator: Deprecate in favor of gnome-authenticator. Date: Sun, 5 Jan 2025 17:26:00 +0200
[Message part 1 (text/plain, inline)]
Looks good to me. Pushed to the rust-team branch. -- Efraim Flashner <efraim <at> flashner.co.il> אפרים פלשנר GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]
Debbugs Internal Request <help-debbugs <at> gnu.org>
to internal_control <at> debbugs.gnu.org
.
(Mon, 03 Feb 2025 12:24:09 GMT) Full text and rfc822 format available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.