From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 31 00:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9AF1B642 for ; Sat, 31 May 2014 00:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 7503F20F8 for ; Sat, 31 May 2014 00:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4V0o1Hd013866 for ; Sat, 31 May 2014 00:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4V0o1G7013865; Sat, 31 May 2014 00:50:01 GMT (envelope-from gnats) Resent-Date: Sat, 31 May 2014 00:50:01 GMT Resent-Message-Id: <201405310050.s4V0o1G7013865@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthew Luckie Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF3234E8 for ; Sat, 31 May 2014 00:44:25 +0000 (UTC) Received: from caida.org (rommie.caida.org [192.172.226.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9669C20BE for ; Sat, 31 May 2014 00:44:24 +0000 (UTC) Received: from sorcerer.caida.org (sorcerer.caida.org [192.172.226.95]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by caida.org (Postfix) with ESMTP id B5BC7B951 for ; Fri, 30 May 2014 17:44:18 -0700 (PDT) Received: from mjl by sorcerer.caida.org with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WqXPG-000Ewr-If for FreeBSD-gnats-submit@freebsd.org; Fri, 30 May 2014 17:44:18 -0700 Message-Id: Date: Fri, 30 May 2014 17:44:18 -0700 From: Matthew Luckie Sender: Matthew Luckie Reply-To: Matthew Luckie To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/190440: [patch] update net/scamper to 20140530 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 00:50:01 -0000 >Number: 190440 >Category: ports >Synopsis: [patch] update net/scamper to 20140530 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat May 31 00:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Matthew Luckie >Release: FreeBSD 10.0-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD sorcerer.caida.org 10.0-RELEASE-p3 FreeBSD 10.0-RELEASE-p3 #0: Tue May 13 18:26:10 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update net/scamper port to 20140530. use make stage && make check-plist to sanity check port and adjust Makefile / pkg-plist accordingly. Changes since 20140112: * allow scamper to be built in debug mode on FreeBSD after version 10. * in scamper-ping, support a probe frequency smaller than once every second. minimum is now once a millisecond. * handle fragmented responses in linux and sunos correctly. this is important for IPv6 IP-ID based alias resolution techniques (e.g. speedtrap, ally, radargun) on those platforms. * numerous bugfixes and improvements to sc_ally pair-wise alias resolution utility, the most important being that it will reliably complete now. * FreeBSD 10 onwards no longer byte swaps some fields in the quotation of a received ICMP error message. chase this in scamper. * Minor modifications to make scamper compile on Windows 7 using Visual Studio Express 2013 for Windows Desktop. * print ping flags in sc_wartsdump and scamper's json output. >How-To-Repeat: N/A >Fix: --- patch-scamper-20140530 begins here --- diff -uNr scamper/Makefile scamper-new/Makefile --- scamper/Makefile 2014-01-29 13:05:31.000000000 -0800 +++ scamper-new/Makefile 2014-05-30 17:37:40.000000000 -0700 @@ -1,7 +1,7 @@ # $FreeBSD: head/net/scamper/Makefile 341782 2014-01-29 21:05:31Z pawel $ PORTNAME= scamper -PORTVERSION= 20140122 +PORTVERSION= 20140530 CATEGORIES= net ipv6 MASTER_SITES= http://www.caida.org/tools/measurement/scamper/code/ DISTNAME= ${PORTNAME}-cvs-${PORTVERSION} @@ -9,7 +9,7 @@ MAINTAINER= mjl@luckie.org.nz COMMENT= Tool for parallelised IPv4 and IPv6 measurement -USES= gmake +USES= gmake libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes diff -uNr scamper/distinfo scamper-new/distinfo --- scamper/distinfo 2014-01-29 13:05:31.000000000 -0800 +++ scamper-new/distinfo 2014-05-30 17:32:44.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (scamper-cvs-20140122.tar.gz) = 2027d22906da3d3f64389d0a8276579e2625ffd82bb60e640d84be1eadbfef26 -SIZE (scamper-cvs-20140122.tar.gz) = 1211605 +SHA256 (scamper-cvs-20140530.tar.gz) = b098aa7306af7499bdbd7c74abfd5a7d99015c831264829f2a427ea5854c84a6 +SIZE (scamper-cvs-20140530.tar.gz) = 1213972 diff -uNr scamper/pkg-plist scamper-new/pkg-plist --- scamper/pkg-plist 2014-01-29 13:05:31.000000000 -0800 +++ scamper-new/pkg-plist 2014-05-30 17:39:27.000000000 -0700 @@ -12,8 +12,8 @@ bin/sc_wartsdump bin/sc_wartsfix lib/libscamperfile.a -lib/libscamperfile.la lib/libscamperfile.so.0 +lib/libscamperfile.so.0.0.0 lib/libscamperfile.so man/man1/sc_ally.1.gz man/man1/sc_analysis_dump.1.gz --- patch-scamper-20140530 ends here --- >Release-Note: >Audit-Trail: >Unformatted: