From owner-svn-ports-all@FreeBSD.ORG Thu Apr 2 06:24:14 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 53B891B4; Thu, 2 Apr 2015 06:24:14 +0000 (UTC) Date: Thu, 2 Apr 2015 06:24:14 +0000 From: Alexey Dokuchaev To: Danilo Egea Gondolfo Subject: Re: svn commit: r382943 - in head/editors/nano: . files Message-ID: <20150402062414.GB89620@FreeBSD.org> References: <201504011934.t31JY8RY059263@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201504011934.t31JY8RY059263@svn.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Thu, 02 Apr 2015 06:24:14 -0000 On Wed, Apr 01, 2015 at 07:34:08PM +0000, Danilo Egea Gondolfo wrote: > New Revision: 382943 > URL: https://svnweb.freebsd.org/changeset/ports/382943 > > [...] > PORTNAME= nano > -PORTVERSION= 2.2.6 > +PORTVERSION= 2.4.0 > CATEGORIES= editors > -MASTER_SITES= http://www.nano-editor.org/dist/v2.2/ \ > +MASTER_SITES= http://www.nano-editor.org/dist/v2.4/ \ > ${MASTER_SITE_GNU} > MASTER_SITE_SUBDIR= ${PORTNAME} Optimization hint: last three lines can be replaced by one: MASTER_SITES= http://www.nano-editor.org/dist/v${PORTVERSION:R}/ GNU Another bonus in using :R that it likely work for any reasonable PORTVERSION and thus next update will have smaller and cleaner diff. ./danfe