From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 26 08:40:01 2013 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 ESMTP id 495697C9 for ; Sat, 26 Oct 2013 08:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D1092FBF for ; Sat, 26 Oct 2013 08:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r9Q8e0Er088546 for ; Sat, 26 Oct 2013 08:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9Q8e0CO088542; Sat, 26 Oct 2013 08:40:00 GMT (envelope-from gnats) Date: Sat, 26 Oct 2013 08:40:00 GMT Message-Id: <201310260840.r9Q8e0CO088542@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/183305: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Oct 2013 08:40:01 -0000 The following reply was made to PR ports/183305; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/183305: commit references a PR Date: Sat, 26 Oct 2013 08:39:39 +0000 (UTC) Author: sunpoet Date: Sat Oct 26 08:39:31 2013 New Revision: 331660 URL: http://svnweb.freebsd.org/changeset/ports/331660 Log: - Allow ExtUtils::MakeMaker to install empty .bs file (traditional behavior) - Bump PORTREVISION for package change PR: ports/183305 Reported by: Patrick Powell Patched by: sunpoet (myself) Reviewed by: az Added: head/devel/p5-ExtUtils-MakeMaker/files/ head/devel/p5-ExtUtils-MakeMaker/files/patch-lib-ExtUtils-MM_Unix.pm (contents, props changed) Modified: head/devel/p5-ExtUtils-MakeMaker/Makefile Modified: head/devel/p5-ExtUtils-MakeMaker/Makefile ============================================================================== --- head/devel/p5-ExtUtils-MakeMaker/Makefile Sat Oct 26 08:33:13 2013 (r331659) +++ head/devel/p5-ExtUtils-MakeMaker/Makefile Sat Oct 26 08:39:31 2013 (r331660) @@ -3,6 +3,7 @@ PORTNAME= ExtUtils-MakeMaker PORTVERSION= 6.80 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -41,5 +42,6 @@ post-patch: @${RM} -fr ${WRKSRC}/bundled/ @[ -e ${LOCALBASE}/lib/perl5/${PERL_VER}/mach/CORE/cc_runtime.h ] || \ ${SED} -i '' -e '/cc_runtime.h/d' ${WRKSRC}/lib/ExtUtils/MM_Unix.pm + @${RM} ${WRKSRC}/lib/ExtUtils/MM_Unix.pm.orig .include Added: head/devel/p5-ExtUtils-MakeMaker/files/patch-lib-ExtUtils-MM_Unix.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-ExtUtils-MakeMaker/files/patch-lib-ExtUtils-MM_Unix.pm Sat Oct 26 08:39:31 2013 (r331660) @@ -0,0 +1,16 @@ +ExtUtils::MakeMaker starting from 6.80 by default does not copy .bs files if they are empty. +More information can be obtained from ports/183305 + +--- lib/ExtUtils/MM_Unix.pm.orig 2013-10-15 23:04:44.000000000 +0800 ++++ lib/ExtUtils/MM_Unix.pm 2013-10-26 04:30:48.748262789 +0800 +@@ -958,8 +958,8 @@ + + push @m, <<'MAKE'; + $(CHMOD) $(PERM_RWX) $@ +- $(NOECHO) $(RM_RF) $(BOOTSTRAP) +- - $(CP_NONEMPTY) $(BOOTSTRAP) $(INST_BOOT) $(PERM_RW) ++ $(NOECHO) $(RM_RF) $(INST_BOOT) ++ - $(TOUCH) $(BOOTSTRAP) && $(CP) $(BOOTSTRAP) $(INST_BOOT) && $(CHMOD) $(PERM_RW) $(INST_BOOT) + MAKE + + return join('',@m); _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"