pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/net/mtr Update to 0.86:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6d6af4f653e1
branches:  trunk
changeset: 643337:6d6af4f653e1
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Dec 14 15:48:44 2014 +0000

description:
Update to 0.86:

V0.86 Fixed default hostname logic.
      Fix for NetBSD: 64bit time_t -- Thomas Klausner
      Fix unnecessary runtime dependency on glib from VSYakovetsky through
           Thomas
      Inverted IPINFO define in the code. Removes double negatives.
         -- Vladimir Yakovetsky, REW.
      Fixed failure on IPv4 only systems when IPv6 was available at
         compile time. -- REW.
      Fixed (longstanding) bug that mtr used 100% cpu when paused.
      Cosmetic changes from Richard Hartman.

diffstat:

 net/mtr/Makefile               |   5 ++---
 net/mtr/distinfo               |  10 ++++------
 net/mtr/patches/patch-asn.c    |  16 ----------------
 net/mtr/patches/patch-report.c |  20 --------------------
 4 files changed, 6 insertions(+), 45 deletions(-)

diffs (73 lines):

diff -r 802b9f223113 -r 6d6af4f653e1 net/mtr/Makefile
--- a/net/mtr/Makefile  Sun Dec 14 15:47:13 2014 +0000
+++ b/net/mtr/Makefile  Sun Dec 14 15:48:44 2014 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.88 2014/10/09 14:06:45 wiz Exp $
+# $NetBSD: Makefile,v 1.89 2014/12/14 15:48:44 wiz Exp $
 
-DISTNAME=      mtr-0.85
-PKGREVISION=   4
+DISTNAME=      mtr-0.86
 CATEGORIES=    net
 MASTER_SITES=  ftp://ftp.bitwizard.nl/mtr/
 
diff -r 802b9f223113 -r 6d6af4f653e1 net/mtr/distinfo
--- a/net/mtr/distinfo  Sun Dec 14 15:47:13 2014 +0000
+++ b/net/mtr/distinfo  Sun Dec 14 15:48:44 2014 +0000
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.40 2013/08/09 11:41:20 fhajny Exp $
+$NetBSD: distinfo,v 1.41 2014/12/14 15:48:44 wiz Exp $
 
-SHA1 (mtr-0.85.tar.gz) = 77204a1a577cfca30c79c43a8fa3daafd280f1b8
-RMD160 (mtr-0.85.tar.gz) = 0ca692799d3b4d4358d02f72787e8705c061c817
-Size (mtr-0.85.tar.gz) = 534196 bytes
-SHA1 (patch-asn.c) = 5582267de8777e2139acf30e0cd360262ae07a84
+SHA1 (mtr-0.86.tar.gz) = 2c81d0f4c9296861a1159f07eec6acfb4bebecf7
+RMD160 (mtr-0.86.tar.gz) = a3bd71a2102722e98e92c31988bc2c1ca13ea26a
+Size (mtr-0.86.tar.gz) = 185374 bytes
 SHA1 (patch-net.c) = b8a88ef7c4bad7cfbb502e60e12fd84b90e601dd
-SHA1 (patch-report.c) = 13c834fa841bce84aadc57124b6de6ffbc8766e9
diff -r 802b9f223113 -r 6d6af4f653e1 net/mtr/patches/patch-asn.c
--- a/net/mtr/patches/patch-asn.c       Sun Dec 14 15:47:13 2014 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-$NetBSD: patch-asn.c,v 1.3 2013/07/06 09:57:20 tron Exp $
-
-Fix build under Mac OS X (Lion).
-
---- asn.c.orig 2013-04-24 10:32:13.000000000 +0100
-+++ asn.c      2013-07-06 10:55:12.000000000 +0100
-@@ -21,9 +21,7 @@
- #include <stdlib.h>
- #include <sys/types.h>
- 
--#ifndef __APPLE__
- #define BIND_8_COMPAT
--#endif
- #include <arpa/nameser.h>
- #ifdef HAVE_ARPA_NAMESER_COMPAT_H
- #include <arpa/nameser_compat.h>
diff -r 802b9f223113 -r 6d6af4f653e1 net/mtr/patches/patch-report.c
--- a/net/mtr/patches/patch-report.c    Sun Dec 14 15:47:13 2014 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-$NetBSD: patch-report.c,v 1.1 2013/07/04 03:41:48 dholland Exp $
-
-Don't print time_t with %lu; it fails on 32-bit netbsd, where time_t is
-wider than that.
-
---- report.c~  2013-05-13 15:22:54.000000000 +0000
-+++ report.c
-@@ -343,10 +343,10 @@ void csv_close(time_t now)
-     if(!ipinfo_no) {
-       char* fmtinfo = fmt_ipinfo(addr);
-       if (fmtinfo != NULL) fmtinfo = trim(fmtinfo);
--      printf("MTR.%s;%lu;%s;%s;%d;%s;%s;%d", MTR_VERSION, now, "OK", Hostname,
-+      printf("MTR.%s;%lld;%s;%s;%d;%s;%s;%d", MTR_VERSION, (long long)now, "OK", Hostname,
-              at+1, name, fmtinfo, last);
-     } else {
--      printf("MTR.%s;%lu;%s;%s;%d;%s;%d", MTR_VERSION, now, "OK", Hostname,
-+      printf("MTR.%s;%lld;%s;%s;%d;%s;%d", MTR_VERSION, (long long)now, "OK", Hostname,
-              at+1, name, last);
-     }
- 



Home | Main Index | Thread Index | Old Index