From owner-svn-ports-all@freebsd.org Thu Mar 17 21:08:08 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3832AD4B92; Thu, 17 Mar 2016 21:08:08 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB1521296; Thu, 17 Mar 2016 21:08:08 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2HL87FJ061229; Thu, 17 Mar 2016 21:08:07 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2HL87Gp061226; Thu, 17 Mar 2016 21:08:07 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603172108.u2HL87Gp061226@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Mar 2016 21:08:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r411316 - in branches/2016Q1/net/dbeacon: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Mar 2016 21:08:09 -0000 Author: feld Date: Thu Mar 17 21:08:07 2016 New Revision: 411316 URL: https://svnweb.freebsd.org/changeset/ports/411316 Log: MFH: r411315 net/dbeacon: Unbreak port - New MAINTAINER - New MASTER_SITE - Add patch to clean up some build errors - Cleaned up pkg-descr PR: 208048 Approved by: ports-secteam (with hat) Added: branches/2016Q1/net/dbeacon/files/patch-dbeacon.cpp - copied unchanged from r411315, head/net/dbeacon/files/patch-dbeacon.cpp Modified: branches/2016Q1/net/dbeacon/Makefile branches/2016Q1/net/dbeacon/pkg-descr Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/dbeacon/Makefile ============================================================================== --- branches/2016Q1/net/dbeacon/Makefile Thu Mar 17 21:04:58 2016 (r411315) +++ branches/2016Q1/net/dbeacon/Makefile Thu Mar 17 21:08:07 2016 (r411316) @@ -4,13 +4,11 @@ PORTNAME= dbeacon PORTVERSION= 0.3.9.1 CATEGORIES= net -MASTER_SITES= http://fivebits.net/files/dbeacon/ +MASTER_SITES= http://BSDforge.com/projects/source/net/dbeacon/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= portmaster@BSDforge.com COMMENT= Distributed multicast beacon server -BROKEN= unfetchable - LICENSE= GPLv2 # or later USES= gmake Copied: branches/2016Q1/net/dbeacon/files/patch-dbeacon.cpp (from r411315, head/net/dbeacon/files/patch-dbeacon.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/net/dbeacon/files/patch-dbeacon.cpp Thu Mar 17 21:08:07 2016 (r411316, copy of r411315, head/net/dbeacon/files/patch-dbeacon.cpp) @@ -0,0 +1,34 @@ +--- dbeacon.cpp.orig 2016-03-15 16:06:23.135551000 -0700 ++++ dbeacon.cpp 2016-03-15 16:08:13.104873000 -0700 +@@ -1498,7 +1498,7 @@ + fprintf(fp, " contact=\"%s\"", adminContact.c_str()); + if (!twoLetterCC.empty()) + fprintf(fp, " country=\"%s\"", twoLetterCC.c_str()); +- fprintf(fp, " age=\"%llu\" lastupdate=\"0\" rxlocal=\"true\">\n", (now - startTime) / 1000); ++ fprintf(fp, " age=\"%lu\" lastupdate=\"0\" rxlocal=\"true\">\n", (now - startTime) / 1000); + + for (uint32_t k = 0; k < KnownFlags; k++) { + if (flags & (1 << k)) { +@@ -1526,8 +1526,8 @@ + if (!i->second.CC.empty()) + fprintf(fp, " country=\"%s\"", i->second.CC.c_str()); + +- fprintf(fp, " age=\"%llu\"", (now - i->second.creation) / 1000); +- fprintf(fp, " lastupdate=\"%llu\">\n", (now - i->second.lastevent) / 1000); ++ fprintf(fp, " age=\"%lu\"", (now - i->second.creation) / 1000); ++ fprintf(fp, " lastupdate=\"%lu\">\n", (now - i->second.lastevent) / 1000); + + if (i->second.ASM.s.valid) + dumpStats(fp, "asm", i->second.ASM.s, now, i->second.sttl, true); +@@ -1552,9 +1552,9 @@ + } + i->first.print(tmp, sizeof(tmp)); + fprintf(fp, " addr=\"%s\"", tmp); +- fprintf(fp, " age=\"%llu\"", (now - i->second.creation) / 1000); ++ fprintf(fp, " age=\"%lu\"", (now - i->second.creation) / 1000); + fprintf(fp, " rxlocal=\"%s\"", i->second.rxlocal(now) ? "true" : "false"); +- fprintf(fp, " lastupdate=\"%llu\">\n", (now - i->second.lastevent) / 1000); ++ fprintf(fp, " lastupdate=\"%lu\">\n", (now - i->second.lastevent) / 1000); + + for (uint32_t k = 0; k < KnownFlags; k++) { + if (i->second.Flags & (1 << k)) { Modified: branches/2016Q1/net/dbeacon/pkg-descr ============================================================================== --- branches/2016Q1/net/dbeacon/pkg-descr Thu Mar 17 21:04:58 2016 (r411315) +++ branches/2016Q1/net/dbeacon/pkg-descr Thu Mar 17 21:08:07 2016 (r411316) @@ -1,7 +1,7 @@ -Dbeacon is a distributed multicast monitoring tool. The main purpose of a -beacon is to monitor other beacons' reachability and to collect statistics -such as loss, delay, and jitter between beacons. Dbeacon supports both -IPv4 and IPv6 multicast and supports collecting information using both Any -Source Multicast (ASM) and Source-Specific Multicast (SSM). +Dbeacon is a distributed multicast monitoring tool. The main purpose of a +beacon is to monitor other beacons' reachability and to collect statistics +such as loss, delay, and jitter between beacons. Dbeacon supports both +IPv4, and IPv6 multicast, and supports collecting information using both +Any Source Multicast (ASM) and Source-Specific Multicast (SSM). WWW: http://fivebits.net/proj/dbeacon