mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
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 <sharlatanus@gmail.com>
This commit is contained in:
parent
3d409c98dc
commit
47b3251168
1 changed files with 9 additions and 2 deletions
|
|
@ -80,6 +80,7 @@
|
|||
;;; Copyright © 2025 pinoaffe <pinoaffe@gmail.com>
|
||||
;;; Copyright © 2025 gemmaro <gemmaro.dev@gmail.com>
|
||||
;;; Copyright © 2025 Igorj Gorjaĉev <igor@goryachev.org>
|
||||
;;; Copyright © 2026 Rodion Goritskov <rodion@goritskov.com>
|
||||
;;;
|
||||
;;; 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/"))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue