summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2025-06-13 12:44:32 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2025-06-25 23:00:59 +0900
commit4664ab4641097ae823e97f354d0107e33aa627cd (patch)
tree47ff2e6e488d0f64780ca9e6f33abc94cec05a9e /gnu
parent59a166d5d675fb5a1939c48bab8269aaa7b86b92 (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/local.mk2
-rw-r--r--gnu/packages/emacs-xyz.scm19
2 files changed, 8 insertions, 13 deletions
diff --git a/gnu/local.mk b/gnu/local.mk
index 4af4c883501..3a1ff0ea956 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1236,8 +1236,6 @@ dist_patch_DATA = \
%D%/packages/patches/emacs-exec-path.patch \
%D%/packages/patches/emacs-fix-scheme-indent-function.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-tests.patch \
%D%/packages/patches/emacs-highlight-stages-add-gexp.patch \
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b7acf981d47..a84326b34ae 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -37781,23 +37781,20 @@ message.
(define-public emacs-gnus-desktop-notify
(package
(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
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/wavexx/gnus-desktop-notify.el.git")
- (commit "24588a3e024b204d930480fdc8bca31426f4e846")))
+ (commit "12d2a52c0340a6d822f23cf8bc3f4d929c2d8838")))
(file-name (git-file-name name version))
(sha256
- (base32 "06gxqlhfrc9ykq8v7qhxsr4w8hwyv1jkrifpp0kqjhf7idv96010"))
- (patches
- (search-patches
- "emacs-gnus-desktop-notify-fix-notifications.patch"
- "emacs-gnus-desktop-notify-rescan.patch"))))
+ (base32 "15gs8j5z88yvbpxjx9760isdiv6rz43m11f38yp5xh8i79x2gzwp"))))
(build-system emacs-build-system)
- (home-page
- "http://www.thregr.org/~wavexx/software/gnus-desktop-notify.el/")
+ (home-page "https://www.thregr.org/wavexx/software/gnus-desktop-notify.el/")
(synopsis "Gnus desktop notification global minor mode")
(description
"@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.:
;; (gnus-demon-add-handler 'gnus-demon-scan-news 10 1)
@end lisp
-The above causes Gnus to scan all configured groups every two 2 hours when
-Emacs has been idle for 1 hour, with desktop notifications emitted for new
+The above causes Gnus to scan all configured groups every two hours when
+Emacs has been idle for one hour, with desktop notifications emitted for new
messages received.")
(license license:gpl3+)))