From owner-svn-ports-head@freebsd.org Mon Jan 25 12:39:04 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44C0B7E8D; Mon, 25 Jan 2016 12:39:04 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 3B07EEBF; Mon, 25 Jan 2016 12:39:04 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 39FD51081; Mon, 25 Jan 2016 12:39:04 +0000 (UTC) Date: Mon, 25 Jan 2016 12:39:04 +0000 From: Alexey Dokuchaev To: marino@freebsd.org Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r406930 - head/archivers/file-roller Message-ID: <20160125123904.GA96711@FreeBSD.org> References: <201601221319.u0MDJbbm075196@repo.freebsd.org> <20160125085654.GB95732@FreeBSD.org> <56A5EFD5.8080804@marino.st> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <56A5EFD5.8080804@marino.st> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jan 2016 12:39:04 -0000 On Mon, Jan 25, 2016 at 10:50:13AM +0100, John Marino wrote: > On 1/25/2016 9:56 AM, Alexey Dokuchaev wrote: > > On Fri, Jan 22, 2016 at 01:19:37PM +0000, John Marino wrote: > >> New Revision: 406930 > >> URL: https://svnweb.freebsd.org/changeset/ports/406930 > >> > >> Log: > >> archivers/file_roller: Fix ambiguous RUN_DEPENDS > >> > >> file_roller requires the ports version of unzip (I'm assuming based on > >> makefile's specifications). However, since the full path to unzip > >> was not specified, the base unzip satifies the requirement which results > >> in the archivers/unzip package not being registered as a run dependency. > >> > >> [...] > >> RUN_DEPENDS= gtar:${PORTSDIR}/archivers/gtar \ > >> - unzip:${PORTSDIR}/archivers/unzip > >> + zipinfo:${PORTSDIR}/archivers/unzip > >> + > >> +# Port unzip is desired, but specify the uniquely named zipinfo to ensure > >> +# archivers/unzip is pulled in. Using "unzip" is satisfied by base unzip > > > > Another option would be to specify full path of unzip(1), i.e. > > ${LOCALBASE}/bin/unzip:... This would also reflect the reality, since if > > base unzip(1) is not sufficient beyond trivial usecases (which is probably > > the reason why `archivers/file-roller' wants "real" unzip -- e.g. the one > > that support encrypted archives and stuff). > > zipinfo is a symbolic link to $LOCALBASE/bin/unzip, so I used it to > minimize the change. Hmm, but how is the fact that zipinfo is a symlink $LOCALBASE/bin/unzip is irrelevant? The port wants unzip (not zipinfo), and the granule of change is a line; regardless of the contents, it's -1 +1. > I saw the two as equal and thus "dealer's choice" and I chose the latter. Having to add an explanatory comment makes it -1 +n, so the two get a little less equal once you consider this. ;-) ./danfe