emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27075: closed ([PATCH] gnu: Add multitail)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27075: closed ([PATCH] gnu: Add multitail)
Date: Thu, 25 May 2017 22:12:02 +0000

Your message dated Fri, 26 May 2017 00:11:29 +0200
with message-id <address@hidden>
and subject line Re: bug#27075: [PATCH] gnu: Add multitail
has caused the debbugs.gnu.org bug report #27075,
regarding [PATCH] gnu: Add multitail
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27075: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27075
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add multitail Date: Thu, 25 May 2017 22:34:45 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)
Hi there,

I am not sure what category fits best for multitail. I have added it to
less as a first attempt.


>From 14ddddd847c1460eca4e1640ada843a6ffff6f55 Mon Sep 17 00:00:00 2001
From: Stefan Reichoer <address@hidden>
Date: Thu, 25 May 2017 22:30:41 +0200
Subject: [PATCH] gnu: Add multitail.

* gnu/packages/less.scm (multitail): New variable.
---
 gnu/packages/less.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/less.scm b/gnu/packages/less.scm
index 0aa4665..ed16c99 100644
--- a/gnu/packages/less.scm
+++ b/gnu/packages/less.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012 Nikita Karetnikov <address@hidden>
+;;; Copyright © 2017 Stefan Reichör <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -46,3 +47,41 @@ backwards and forwards movement through the document.  It 
also does not have
 to read the entire input file before starting, so it starts faster than most
 text editors.")
     (license gpl3+))) ; some files are under GPLv2+
+
+(define-public multitail
+  (package
+    (name "multitail")
+    (version "6.4.2")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "https://vanheusden.com/multitail/multitail-";
+                          version ".tgz"))
+      (sha256
+       (base32
+        "1zd1r89xkxngl1pdrvsc877838nwkfqkbcgfqm3vglwalxc587dg"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags
+       (list "CC=gcc"
+             "PREFIX="
+             (string-append "DESTDIR="
+                            (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'patch-curses-lib
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (substitute* "mt.h"
+                 (("ncursesw\\/panel.h") "panel.h")
+                 (("ncursesw\\/ncurses.h") "ncurses.h")))
+             #t))
+         (delete 'configure)
+         (delete 'check)))) ; no test suite (make check just runs cppcheck)
+    (inputs `(("ncurses" ,ncurses)))
+    (home-page "https://vanheusden.com/multitail/";)
+    (synopsis "Monitor multiple logfiles")
+    (description
+     "MultiTail allows you to monitor logfiles and command output in multiple
+windows in a terminal, colorize, filter and merge.")
+    (license gpl2)))
-- 
2.7.4


--- End Message ---
--- Begin Message --- Subject: Re: bug#27075: [PATCH] gnu: Add multitail Date: Fri, 26 May 2017 00:11:29 +0200 User-agent: Notmuch/0.24.1 (https://notmuchmail.org) Emacs/25.2.1 (x86_64-unknown-linux-gnu)
Stefan Reichör <address@hidden> writes:

> Here is the updated patch:
>
> From 7e98231dbe260b4345fe182cf320aa2bb1f060dd Mon Sep 17 00:00:00 2001
> From: Stefan Reichoer <address@hidden>
> Date: Thu, 25 May 2017 23:34:02 +0200
> Subject: [PATCH] gnu: Add multitail.
>
> * gnu/packages/logging.scm (multitail): New variable.

Applied, thank you!

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]