[bug#76412,v1] gnu: emacs-elfeed-org: Update to 20250104.0.
Commit Message
* gnu/packages/emacs-xyz.scm (emacs-elfeed-org): Update to 20250104.0.
[arguments]: Remove obsolete testing tweaks.
[propagated-inputs]: Remove unused dependencies.
---
gnu/packages/emacs-xyz.scm | 36 ++++++++----------------------------
1 file changed, 8 insertions(+), 28 deletions(-)
base-commit: 23b068c036223e70bdea9d7d579850a1cffc02a7
prerequisite-patch-id: f9cc903b8048c8c6fde576fbf38ab110263020e3
prerequisite-patch-id: d09c064d38df73405d505b90d222dccfd7be09b9
Comments
>dim. 23 févr. 2025 at 18:11, Sergey Trofimov <sarg@sarg.org.ru> wrote:
> * gnu/packages/emacs-xyz.scm (emacs-elfeed-org): Update to 20250104.0.
Look at equivalent emacs update messages, corresponding to packages with
no releases, as this is the case.
I think message must be rather (version-revision-commit):
Update to 20250104.0-0.1197cf2.
@@ -15933,10 +15933,12 @@ (define-public emacs-elfeed-goodies
(license license:gpl3+))))
(define-public emacs-elfeed-org
- (let ((commit "77b6bbf222487809813de260447d31c4c59902c9"))
+ (let ((commit "1197cf29f6604e572ec604874a8f50b58081176a")
+ (version "20250104.0")
+ (revision "0"))
(package
(name "emacs-elfeed-org")
- (version (git-version "0.1" "1" commit))
+ (version (git-version version revision commit))
(source
(origin
(method git-fetch)
@@ -15945,35 +15947,13 @@ (define-public emacs-elfeed-org
(commit commit)))
(file-name (git-file-name name version))
(sha256
- (base32 "0a2ibka82xq1dhy2z7rd2y9zhcj8rna8357881yz49wf55ccgm53"))))
+ (base32 "0giwnzlqk2s5hb6fs8a0l4dxcmn2fvkngpj1fayzwj0qnvds1kri"))))
(build-system emacs-build-system)
(arguments
`(#:tests? #t
- #:test-command '("ert-runner" "-L" "org-mode/lisp")
- #:phases
- (modify-phases %standard-phases
- (add-before 'check 'chmod
- (lambda _
- (chmod "test/fixture-mark-feed-ignore.org" #o644)))
- (add-before 'check 'xt-number-tests
- (lambda _
- ((lambda (file test-name) ; variant of ert-number-tests
- (emacs-batch-edit-file file
- `(let ((i 0))
- (while (re-search-forward ,(string-append "xt-deftest "
- test-name)
- nil t)
- (goto-char (match-beginning 0))
- (kill-region (match-beginning 0) (match-end 0))
- (insert (format "xt-deftest %s-%d" ,test-name i))
- (setq i (+ i 1)))
- (basic-save-buffer))))
- "test/elfeed-org-test.el"
- "rmh-elfeed-org-convert-headline-to-tagger-params"))))))
- (propagated-inputs
- (list emacs-elfeed emacs-org emacs-dash emacs-s))
- (native-inputs
- (list emacs-ert-runner emacs-xtest))
+ #:test-command '("ert-runner" "-L" "org-mode/lisp")))
+ (propagated-inputs (list emacs-elfeed))
+ (native-inputs (list emacs-ert-runner emacs-xtest))
(home-page "https://github.com/remyhonig/elfeed-org")
(synopsis "Configure Elfeed with an Org-mode file")
(description