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

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

[debbugs-tracker] bug#29502: closed ([PATCH] gnu: Add mtr.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#29502: closed ([PATCH] gnu: Add mtr.)
Date: Fri, 01 Dec 2017 15:12:02 +0000

Your message dated Fri, 1 Dec 2017 16:13:39 +0100
with message-id <address@hidden>
and subject line Re: [bug#29502] [PATCH] gnu: Add mtr.
has caused the debbugs.gnu.org bug report #29502,
regarding [PATCH] gnu: Add mtr.
to be marked as done.

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


-- 
29502: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=29502
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add mtr. Date: Thu, 30 Nov 2017 03:10:35 +0100
* gnu/packages/networking.scm (mtr): New public variable.
---

Guix,

This adds mtr, the “it can't not be in Guix already what am I searching
wrong!?” network monitor.

Kind regards,

T G-R

 gnu/packages/networking.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 1f4906b7b..755f76b15 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1536,3 +1536,34 @@ at the IP layer and link layer, as well as a host of 
supplementary
 functionality.  Using libnet, quick and simple packet assembly applications
 can be whipped up with little effort.")
     (license license:bsd-2)))
+
+(define-public mtr
+  (package
+    (name "mtr")
+    (version "0.92")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "ftp://ftp.bitwizard.nl/"; name "/"
+                           name "-" version ".tar.gz"))
+       (sha256
+        (base32 "10j3ds3p27jygys4x08kj8fi3zlsgiv72xsfazkah6plwawrv5zj"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("libcap" ,libcap)
+       ("ncurses" ,ncurses)))
+    (native-inputs
+     ;; The 0.92 release tarball still requires the ‘autoheader’ tool.
+     `(("autoconf" ,autoconf)))
+    (arguments
+     `(#:tests? #f))                    ; tests require network access
+    (home-page "https://www.bitwizard.nl/mtr/";)
+    (synopsis "Network diagnostic tool")
+    (description
+     "@dfn{mtr} (My TraceRoute) combines the functionality of the
address@hidden and @command{ping} programs in a single network diagnostic
+tool.  @command{mtr} uses ICMP ECHO packets to detect intermediate routers (or
address@hidden) between the local host and a user-specified destination.  It 
then
+continually measures the response time and packet loss at each hop, and
+displays the results in real time.")
+    (license license:gpl2+)))
-- 
2.15.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#29502] [PATCH] gnu: Add mtr. Date: Fri, 1 Dec 2017 16:13:39 +0100 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0
Ludovic Courtès wrote on 30/11/17 at 18:13:
> Heheh, I didn’t know it.  :-)  LGTM!

Thanks! Pushed as b59a8fd49afa79bb9c3bf5e71dce6f3eec2a0808.

Kind regards,

T G-R


--- End Message ---

reply via email to

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