From owner-svn-ports-all@FreeBSD.ORG Fri Oct 4 17:13:13 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org 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 ESMTP id 83EA54B6; Fri, 4 Oct 2013 17:13:13 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 712DB2A20; Fri, 4 Oct 2013 17:13:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r94HDDFg015759; Fri, 4 Oct 2013 17:13:13 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r94HDDBM015750; Fri, 4 Oct 2013 17:13:13 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201310041713.r94HDDBM015750@svn.freebsd.org> From: Andrej Zverev Date: Fri, 4 Oct 2013 17:13:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329343 - head/devel/p5-Devel-Profiler X-SVN-Group: ports-head 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.14 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: Fri, 04 Oct 2013 17:13:13 -0000 Author: az Date: Fri Oct 4 17:13:12 2013 New Revision: 329343 URL: http://svnweb.freebsd.org/changeset/ports/329343 Log: - Add stage support - Mark as IGNORE with perl > 5.16 devel/p5-Devel-Profiler need dprofpp utility which part of Devel::DProf which has been removed from the Perl core since Perl 5.16 and Devel::DProf also is deprecated in favor of Devel::NYTProf So it's normal for this port to suicide after perl 5.16 as default Perl version in tree. Modified: head/devel/p5-Devel-Profiler/Makefile head/devel/p5-Devel-Profiler/pkg-plist (contents, props changed) Modified: head/devel/p5-Devel-Profiler/Makefile ============================================================================== --- head/devel/p5-Devel-Profiler/Makefile Fri Oct 4 17:03:57 2013 (r329342) +++ head/devel/p5-Devel-Profiler/Makefile Fri Oct 4 17:13:12 2013 (r329343) @@ -16,8 +16,10 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Devel::Profiler.3 Devel::Profiler::Apache.3 \ - Devel::Profiler::Test.3 +.include -NO_STAGE= yes -.include +.if ${PERL_LEVEL} > 501600 +IGNORE= Devel::DProf has been removed from the Perl core, use Devel::NYTProf instead +.endif + +.include Modified: head/devel/p5-Devel-Profiler/pkg-plist ============================================================================== --- head/devel/p5-Devel-Profiler/pkg-plist Fri Oct 4 17:03:57 2013 (r329342) +++ head/devel/p5-Devel-Profiler/pkg-plist Fri Oct 4 17:13:12 2013 (r329343) @@ -2,6 +2,9 @@ %%SITE_PERL%%/Devel/Profiler.pm %%SITE_PERL%%/Devel/Profiler/Apache.pm %%SITE_PERL%%/Devel/Profiler/Test.pm +%%PERL5_MAN3%%/Devel::Profiler.3.gz +%%PERL5_MAN3%%/Devel::Profiler::Apache.3.gz +%%PERL5_MAN3%%/Devel::Profiler::Test.3.gz @dirrm %%SITE_PERL%%/Devel/Profiler @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel/Profiler @dirrmtry %%SITE_PERL%%/Devel