Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 9D4017A16A for ; Mon, 13 Feb 2017 14:07:00 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4CCBD855C9; Mon, 13 Feb 2017 14:07:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D0F8284D04 for ; Mon, 13 Feb 2017 14:06:59 +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 pKe9nisJJFaM for ; Mon, 13 Feb 2017 14:06:59 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4AA5F84CDF for ; Mon, 13 Feb 2017 14:06:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 48A1BFBE3; Mon, 13 Feb 2017 14:06:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148699481991720" MIME-Version: 1.0 Date: Mon, 13 Feb 2017 14:06:59 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/p5-File-ChangeNotify To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20170213140659.48A1BFBE3@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148699481991720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Mon Feb 13 14:06:59 UTC 2017 Modified Files: pkgsrc/devel/p5-File-ChangeNotify: Makefile distinfo Log Message: Updated devel/p5-File-ChangeNotify to 0.27 ------------------------------------------ 0.27 2017-01-30 - Inflating File::ChangeNotify::Default::Watcher into a Moose object with Moose 2.2000 would cause an error or warning because of a bug in how it defined an attribute. This broke Catalyst::Restarter. (pkgsrc changes) - Drop following line, see above DEPENDS+= p5-Moose>=2:../../devel/p5-Moose - Add following lines for make test BUILD_DEPENDS+= p5-Moo-[0-9]*:../../devel/p5-Moo BUILD_DEPENDS+= p5-Test-Requires-[0-9]*:../../devel/p5-Test-Requires BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception BUILD_DEPENDS+= p5-Module-Pluggable-[0-9]*:../../devel/p5-Module-Pluggable To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/p5-File-ChangeNotify/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/p5-File-ChangeNotify/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148699481991720 Content-Disposition: inline Content-Length: 2746 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-File-ChangeNotify/Makefile diff -u pkgsrc/devel/p5-File-ChangeNotify/Makefile:1.26 pkgsrc/devel/p5-File-ChangeNotify/Makefile:1.27 --- pkgsrc/devel/p5-File-ChangeNotify/Makefile:1.26 Thu Jan 5 02:33:38 2017 +++ pkgsrc/devel/p5-File-ChangeNotify/Makefile Mon Feb 13 14:06:59 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.26 2017/01/05 02:33:38 schmonz Exp $ +# $NetBSD: Makefile,v 1.27 2017/02/13 14:06:59 mef Exp $ -DISTNAME= File-ChangeNotify-0.26 +DISTNAME= File-ChangeNotify-0.27 PKGNAME= p5-${DISTNAME} -PKGREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=File/} @@ -12,12 +11,17 @@ COMMENT= Watch for changes to files, cro LICENSE= artistic-2.0 #BUILD_DEPENDS+= {perl>=5.10.1,p5-Test-Simple>=0.88}:../../devel/p5-Test-Simple -DEPENDS+= p5-Moose>=2:../../devel/p5-Moose DEPENDS+= p5-MooseX-Params-Validate>=0.08:../../devel/p5-MooseX-Params-Validate DEPENDS+= p5-MooseX-SemiAffordanceAccessor-[0-9]*:../../devel/p5-MooseX-SemiAffordanceAccessor DEPENDS+= p5-namespace-autoclean-[0-9]*:../../devel/p5-namespace-autoclean DEPENDS+= p5-Type-Tiny-[0-9]*:../../devel/p5-Type-Tiny +# for make test +BUILD_DEPENDS+= p5-Moo-[0-9]*:../../devel/p5-Moo +BUILD_DEPENDS+= p5-Test-Requires-[0-9]*:../../devel/p5-Test-Requires +BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception +BUILD_DEPENDS+= p5-Module-Pluggable-[0-9]*:../../devel/p5-Module-Pluggable + PERL5_PACKLIST= auto/File/ChangeNotify/.packlist .include "../../mk/bsd.prefs.mk" Index: pkgsrc/devel/p5-File-ChangeNotify/distinfo diff -u pkgsrc/devel/p5-File-ChangeNotify/distinfo:1.11 pkgsrc/devel/p5-File-ChangeNotify/distinfo:1.12 --- pkgsrc/devel/p5-File-ChangeNotify/distinfo:1.11 Sun Jun 5 12:21:14 2016 +++ pkgsrc/devel/p5-File-ChangeNotify/distinfo Mon Feb 13 14:06:59 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2016/06/05 12:21:14 mef Exp $ +$NetBSD: distinfo,v 1.12 2017/02/13 14:06:59 mef Exp $ -SHA1 (File-ChangeNotify-0.26.tar.gz) = 686b9dbadb809052203f95122ef511e658851392 -RMD160 (File-ChangeNotify-0.26.tar.gz) = 7100a0d87966f99a4dd62cbf3093b7f57463e3c3 -SHA512 (File-ChangeNotify-0.26.tar.gz) = 33f3f925b526f9d1ad8946f02f8aeb6f1f7edbb999a71318ffb339a2e3415daac93eda72e3747ceca252e44adc5414ed9a6f3948b42c6513a0e80336a6fce035 -Size (File-ChangeNotify-0.26.tar.gz) = 34396 bytes +SHA1 (File-ChangeNotify-0.27.tar.gz) = 04d66ad35164a90df2723958fb5a471e1d0f94ca +RMD160 (File-ChangeNotify-0.27.tar.gz) = 93308a37aec9e8cc539a71504ee45d159b2b9c1a +SHA512 (File-ChangeNotify-0.27.tar.gz) = aabdac4e32765df6828aa1cc72301ccfdd4c0547189234111f970eea0564cf0c691b3b9261fa32a298e599a3d20734488274ba88e6c25f76cfe64d58e83da426 +Size (File-ChangeNotify-0.27.tar.gz) = 35307 bytes --_----------=_148699481991720--