[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#71451] [PATCH] gnu: multitail: Update to 7.1.2.
From: |
kiasoc5 |
Subject: |
[bug#71451] [PATCH] gnu: multitail: Update to 7.1.2. |
Date: |
Sun, 9 Jun 2024 12:25:33 -0400 |
* gnu/packages/logging.scm (multitail): Update to 7.1.2.
[source]: Update upstream repository location.
[arguments]: Use G-expressions.
Change-Id: I2136e73553cc8189a9ed0a84db61a0167873e843
---
gnu/packages/logging.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm
index a757c22154..9f503a7c11 100644
--- a/gnu/packages/logging.scm
+++ b/gnu/packages/logging.scm
@@ -167,24 +167,25 @@ (define-public tailon
(define-public multitail
(package
(name "multitail")
- (version "6.5.2")
+ (version "7.1.2")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/halturin/multitail")
+ (url "https://github.com/folkertvanheusden/multitail")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "17hg5qpangyx4m7hp2x4h56mp6w3wsaslg1il39qcpwsffh1rihc"))))
(build-system gnu-build-system)
(arguments
- `(#:make-flags
- (list (string-append "CC=" ,(cc-for-target))
- (string-append "PREFIX=" (assoc-ref %outputs "out"))
- "SYSCONFDIR=$(PREFIX)/etc")
+ (list
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output)
+ "SYSCONFDIR=$(PREFIX)/etc")
#:phases
- (modify-phases %standard-phases
+ #~(modify-phases %standard-phases
(add-after 'unpack 'fix-broken-build
;; With some luck, you might be able to remove this when updating…
(lambda _
@@ -196,7 +197,7 @@ (define-public multitail
"\t$(INSTALL_DIR) $(DESTDIR)$(SYSCONFDIR)\n")))
(substitute* "version"
(("(VERSION=).*" _ assign)
- (string-append assign ,version)))))
+ (string-append assign #$version)))))
(add-after 'unpack 'patch-curses-headers
(lambda _
(substitute* "mt.h"
base-commit: 580d77d0fb12448ef1621699cc0c56e787e2aadb
--
2.45.1
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#71451] [PATCH] gnu: multitail: Update to 7.1.2.,
kiasoc5 <=