gnu: emacs-gnus-desktop-notify: Update to latest commit.

* gnu/packages/emacs-xyz.scm (emacs-gnus-desktop-notify): Update to latest
commit.
[description]: Fix typo.
* gnu/packages/patches/emacs-gnus-desktop-notify-fix-notifications.patch:
Delete file.
* gnu/packages/patches/emacs-gnus-desktop-notify-rescan.patch: Likewise.
* gnu/local.mk (dist_patch_DATA): De-register them.

Change-Id: I7f25870949411f8f1326871d67bdbdbe59feef6b
This commit is contained in:
Maxim Cournoyer 2025-06-13 12:44:32 +09:00 committed by Maxim Cournoyer
parent 59a166d5d6
commit 4664ab4641
No known key found for this signature in database
GPG key ID: 1260E46482E63562
2 changed files with 8 additions and 13 deletions

View file

@ -1236,8 +1236,6 @@ dist_patch_DATA = \
%D%/packages/patches/emacs-exec-path.patch \ %D%/packages/patches/emacs-exec-path.patch \
%D%/packages/patches/emacs-fix-scheme-indent-function.patch \ %D%/packages/patches/emacs-fix-scheme-indent-function.patch \
%D%/packages/patches/emacs-gnus-alias-reference-signature.patch \ %D%/packages/patches/emacs-gnus-alias-reference-signature.patch \
%D%/packages/patches/emacs-gnus-desktop-notify-fix-notifications.patch \
%D%/packages/patches/emacs-gnus-desktop-notify-rescan.patch \
%D%/packages/patches/emacs-helpful-fix-signature.patch \ %D%/packages/patches/emacs-helpful-fix-signature.patch \
%D%/packages/patches/emacs-helpful-fix-tests.patch \ %D%/packages/patches/emacs-helpful-fix-tests.patch \
%D%/packages/patches/emacs-highlight-stages-add-gexp.patch \ %D%/packages/patches/emacs-highlight-stages-add-gexp.patch \

View file

@ -37781,23 +37781,20 @@ message.
(define-public emacs-gnus-desktop-notify (define-public emacs-gnus-desktop-notify
(package (package
(name "emacs-gnus-desktop-notify") (name "emacs-gnus-desktop-notify")
(version "20180623.1538") ;; There is no version tag; use a MELPA style date corresponding to that
;; of the last commit.
(version "20250616.0809")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://gitlab.com/wavexx/gnus-desktop-notify.el.git") (url "https://gitlab.com/wavexx/gnus-desktop-notify.el.git")
(commit "24588a3e024b204d930480fdc8bca31426f4e846"))) (commit "12d2a52c0340a6d822f23cf8bc3f4d929c2d8838")))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "06gxqlhfrc9ykq8v7qhxsr4w8hwyv1jkrifpp0kqjhf7idv96010")) (base32 "15gs8j5z88yvbpxjx9760isdiv6rz43m11f38yp5xh8i79x2gzwp"))))
(patches
(search-patches
"emacs-gnus-desktop-notify-fix-notifications.patch"
"emacs-gnus-desktop-notify-rescan.patch"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page (home-page "https://www.thregr.org/wavexx/software/gnus-desktop-notify.el/")
"http://www.thregr.org/~wavexx/software/gnus-desktop-notify.el/")
(synopsis "Gnus desktop notification global minor mode") (synopsis "Gnus desktop notification global minor mode")
(description (description
"@code{gnus-desktop-notify} provides a simple mechanism to notify the "@code{gnus-desktop-notify} provides a simple mechanism to notify the
@ -37810,8 +37807,8 @@ configuration snippet in your @file{~/.gnus.el} configuration file:
;; Alternatively, configure the period and idle times specifically, e.g.: ;; Alternatively, configure the period and idle times specifically, e.g.:
;; (gnus-demon-add-handler 'gnus-demon-scan-news 10 1) ;; (gnus-demon-add-handler 'gnus-demon-scan-news 10 1)
@end lisp @end lisp
The above causes Gnus to scan all configured groups every two 2 hours when The above causes Gnus to scan all configured groups every two hours when
Emacs has been idle for 1 hour, with desktop notifications emitted for new Emacs has been idle for one hour, with desktop notifications emitted for new
messages received.") messages received.")
(license license:gpl3+))) (license license:gpl3+)))