Received: by mail.netbsd.org (Postfix, from userid 605) id D00B484DFD; Sun, 17 Sep 2017 21:00:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6362584CE1 for ; Sun, 17 Sep 2017 21:00:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 20e1FB8l_AE5 for ; Sun, 17 Sep 2017 21:00:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CFF4584DF9 for ; Sun, 17 Sep 2017 21:00:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CDD83FA9A; Sun, 17 Sep 2017 21:00:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150568200221530" MIME-Version: 1.0 Date: Sun, 17 Sep 2017 21:00:02 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/p5-NetPacket To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170917210002.CDD83FA9A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_150568200221530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Sep 17 21:00:02 UTC 2017 Modified Files: pkgsrc/net/p5-NetPacket: Makefile distinfo Log Message: p5-NetPacket: update to 1.6.0. 1.6.0 2015-03-13 [ENHANCEMENTS] - Clean up inheritance code (Philip Prindeville). - Add a truckload of constants (Philip Prindeville). [STATISTICS] - code churn: 12 files changed, 343 insertions(+), 220 deletions(-) 1.5.0 2014-06-15 [ENHANCEMENTS] - Addition of NetPacket::IPX. (Daniel Collins) - NetPacket::Ethernet implements 'encode'. (RT#93928, Guido Hungerbuehler) [STATISTICS] - code churn: 7 files changed, 337 insertions(+), 13 deletions(-) 1.4.4 2013-11-30 [BUG FIXES] - NetPacket::USBMon: also handle big endian perl without quad type. (GH#5, Andreas Schwab) - Typo fix in comments. (GH#6, fschlich) [STATISTICS] - code churn: 3 files changed, 13 insertions(+), 4 deletions(-) 1.4.3 2013-10-03 [BUG FIXES] - Unpack data in LittleEndian format. (GH#4, k0da) [STATISTICS] - code churn: 3 files changed, 62 insertions(+), 27 deletions(-) 1.4.2 2013-09-25 [BUG FIXES] - Dist::Zilla::Plugin::Test::Compile was causing test to potentially hang on Windows. (reported by Karen Etheridge) [MISC] - Tidy up the changelog. (GH#3, Neil Bowers) [STATISTICS] - code churn: 2 files changed, 46 insertions(+), 20 deletions(-) 1.4.1 2013-09-05 [BUG FIXES] - Test was using Errno constant and failing on some platforms. [STATISTICS] - code churn: 2 files changed, 15 insertions(+), 7 deletions(-) 1.4.0 2013-08-26 [DOCUMENTATION] - Fixing NetPacked::UDP documentation. (RT#85361, Ben Magistro) [ENHANCEMENTS] - New NetPacket::USBMon. (GH#2, lkundrak) [STATISTICS] - code churn: 8 files changed, 595 insertions(+), 16 deletions(-) 1.3.3 2013-05-15 [BUG FIXES] - Parse SACK option and fix TSecr parsing. (GH#1, Robin Lee) [STATISTICS] - code churn: 5 files changed, 46 insertions(+), 7 deletions(-) 1.3.2 2013-05-03 [BUG FIXES] - Fix NetPacket::UDP's strip. (RT#85038, reported by Stan Schwertly) [STATISTICS] - code churn: 12 files changed, 71 insertions(+), 21 deletions(-) To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/net/p5-NetPacket/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/net/p5-NetPacket/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150568200221530 Content-Disposition: inline Content-Length: 1905 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/p5-NetPacket/Makefile diff -u pkgsrc/net/p5-NetPacket/Makefile:1.22 pkgsrc/net/p5-NetPacket/Makefile:1.23 --- pkgsrc/net/p5-NetPacket/Makefile:1.22 Mon Jun 5 14:24:23 2017 +++ pkgsrc/net/p5-NetPacket/Makefile Sun Sep 17 21:00:02 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.22 2017/06/05 14:24:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.23 2017/09/17 21:00:02 wiz Exp $ -DISTNAME= NetPacket-1.3.1 +DISTNAME= NetPacket-1.6.0 PKGNAME= p5-${DISTNAME} -PKGREVISION= 6 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=NetPacket/} @@ -14,7 +13,6 @@ LICENSE= ${PERL5_LICENSE} # source doc w USE_LANGUAGES= c PERL5_PACKLIST= auto/NetPacket/.packlist -PERL5_MODULE_TYPE= Module::Build .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/p5-NetPacket/distinfo diff -u pkgsrc/net/p5-NetPacket/distinfo:1.7 pkgsrc/net/p5-NetPacket/distinfo:1.8 --- pkgsrc/net/p5-NetPacket/distinfo:1.7 Wed Nov 4 00:35:24 2015 +++ pkgsrc/net/p5-NetPacket/distinfo Sun Sep 17 21:00:02 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2015/11/04 00:35:24 agc Exp $ +$NetBSD: distinfo,v 1.8 2017/09/17 21:00:02 wiz Exp $ -SHA1 (NetPacket-1.3.1.tar.gz) = c7182bff1692b972a97a8ffb0f95d36f7fd33d84 -RMD160 (NetPacket-1.3.1.tar.gz) = c063522fb13ef69401373a547fc7e0e9f6cbfe93 -SHA512 (NetPacket-1.3.1.tar.gz) = 3d0e8828de4ab5eaf30fab698abd68f5627d188e1fdcde27c28bccc2079fa1f1b4e805a6482ef62a8c9861bb055b7efef38e480539fff379c0abb0578c74ccf3 -Size (NetPacket-1.3.1.tar.gz) = 28155 bytes +SHA1 (NetPacket-1.6.0.tar.gz) = 7c8b931730c87b5538d98d4b5d717f1025ab60f7 +RMD160 (NetPacket-1.6.0.tar.gz) = 5c692e123812d584f03d182b6fbaa2dcb6804b4a +SHA512 (NetPacket-1.6.0.tar.gz) = 9482b35294177fbf0c67474f0b14c87b3d8fb61497cef2c65fb942ff9472dc527d24a68fa8656ca71a0ddd73edb4a02240341177a36c4ed0e9b832b20b120349 +Size (NetPacket-1.6.0.tar.gz) = 36685 bytes --_----------=_150568200221530--