gnu: emacs-elfeed-org: Update to 20250104.0-0.1197cf2.

* gnu/packages/emacs-xyz.scm (emacs-elfeed-org): Update to 20250104.0-0.1197cf2.
[arguments]: Remove obsolete testing tweaks.
[propagated-inputs]: Remove unused dependencies.

Change-Id: I0191e230637cdad43781b34f178c8512fd6225d1
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Sergey Trofimov 2025-02-23 18:11:56 +01:00 committed by Ian Eure
parent dfc0ac7b1d
commit 352e037539
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -16051,10 +16051,12 @@ A function to toggle the @code{*elfeed-log*} buffer in a popup window.
(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)
@ -16063,35 +16065,13 @@ A function to toggle the @code{*elfeed-log*} buffer in a popup window.
(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