guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit 47b3251168d994bfb324eb5d3dd0cbd6a479dd90
Author: Rodion Goritskov <[email protected]>
AuthorDate: Sat Jan 3 12:27:53 2026 +0100
gnu: miniflux: Update to 2.2.16.
* gnu/packages/web.scm (miniflux): Update to 2.2.16.
[phases]{skip-real-domain-resolve-test}: New phase.
Change-Id: I03fb37186b6e7debc0cf99d1f4752a0667f7a07d
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/web.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index ce651e30ba..809d473f36 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -80,6 +80,7 @@
;;; Copyright © 2025 pinoaffe <[email protected]>
;;; Copyright © 2025 gemmaro <[email protected]>
;;; Copyright © 2025 Igorj Gorjaĉev <[email protected]>
+;;; Copyright © 2026 Rodion Goritskov <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -393,7 +394,7 @@ one.")
(define-public miniflux
(package
(name "miniflux")
- (version "2.2.12")
+ (version "2.2.16")
(source
(origin
(method git-fetch)
@@ -402,7 +403,7 @@ one.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0nz12an801r9d2da8p6fic9qy4524y7cprfpimw13ac5c4iqvr0d"))))
+ (base32 "02bwrmn7j0dyi6hhc38s73fyqrfz6swp1c9yzp92rzg6hj10b7cq"))))
(build-system go-build-system)
(arguments
(list
@@ -414,6 +415,12 @@ one.")
#$version))
#:phases
#~(modify-phases %standard-phases
+ ;; Skipping test case that is trying to resolve a domain name
+ (add-after 'unpack 'skip-real-domain-resolve-test
+ (lambda _
+ (substitute* "src/miniflux.app/v2/internal/urllib/url_test.go"
+ (("\\{\"example.org\", \"example.org\", false\\},")
+ "// {\"example.org\", \"example.org\", false},"))))
(add-after 'install 'install-manpage
(lambda* (#:key import-path #:allow-other-keys)
(let ((man1 (string-append #$output "/share/man/man1/"))