From owner-cvs-all@FreeBSD.ORG Wed Aug 18 18:47:46 2010 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 3D14C1065675; Wed, 18 Aug 2010 18:47:46 +0000 (UTC) Date: Wed, 18 Aug 2010 18:47:46 +0000 From: Alexey Dokuchaev To: Andrej Zverev Message-ID: <20100818184746.GA43513@FreeBSD.org> References: <201008181153.o7IBrvlo010634@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <201008181153.o7IBrvlo010634@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/p5-Config-Model Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2010 18:47:46 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline On Wed, Aug 18, 2010 at 11:53:57AM +0000, Andrej Zverev wrote: > az 2010-08-18 11:53:57 UTC > > FreeBSD ports repository > > Modified files: > devel/p5-Config-Model Makefile distinfo pkg-plist > Log: > Update to 1.206: > - RUN_DEPENDS simplified by reusing BUILD_DEPENDS Please assign RUN_DEPENDS correctly with := (immediate expansion operator). Right now it is polluted with `devel/p5-Module-Build' and extra one of `lang/perl5.10'. Consider attached patch. Point the original submitter to section 5.7.2 of PH. ./danfe P.S. I can't understand why people keep making this mistake after it was discussed so many times on the lists. --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=koi8-r Content-Disposition: attachment; filename=diff Index: Makefile =================================================================== RCS file: /home/danfe/fbsd/FreeBSD-CVS/ports/devel/p5-Config-Model/Makefile,v retrieving revision 1.42 diff -u -r1.42 Makefile --- Makefile 18 Aug 2010 11:53:57 -0000 1.42 +++ Makefile 18 Aug 2010 18:36:39 -0000 @@ -22,8 +22,7 @@ p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML \ p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny \ p5-Text-Template>=0:${PORTSDIR}/textproc/p5-Text-Template -RUN_DEPENDS= ${BUILD_DEPENDS} -RUN_DEPENDS+= p5-Moose>=0:${PORTSDIR}/devel/p5-Moose +RUN_DEPENDS:= ${BUILD_DEPENDS} p5-Moose>=0:${PORTSDIR}/devel/p5-Moose TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ p5-Test-Warn>=0.11:${PORTSDIR}/devel/p5-Test-Warn --6TrnltStXW4iwmi0--