From owner-svn-ports-head@FreeBSD.ORG Mon Oct 15 06:15:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C736EB22; Mon, 15 Oct 2012 06:15:11 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id B83048FC17; Mon, 15 Oct 2012 06:15:10 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so2111139bkc.13 for ; Sun, 14 Oct 2012 23:15:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=0fKTmxMalSlehLZDohqYEn+q+Ll5oalvNNp9ACQLUi8=; b=lmfw8fTVLziDVawfmYi4nqU+BP0EGkz9NyBvhH99u+6mvZ7lJ0pXSlHt2QxGNtkcNJ bfgqpcTfUg3DTGpXFDX/Ca8TB1fOznZ6cGfM5Ij6EQc/v9YlFBUf9eMBzRK1VGFNtPjq AqEIhSi9T2YPbjxBZUOAZGj/5M4hzfa4LZKfisZAG4/HxBLfLxVntpQeqUQyrwpD1MDy d0Tb0gaGYvujwX+antbY4zrF0cof8mX8EFSPVML4auq6NkFRpPM3alDBwhNUdbgiwAf2 WCyP14POOO2TZzN7dkrD6kPBm7kfd74Y92cSXSQg6OhYKRpft44zBz+0sUOIIZf+k13N Nf/A== MIME-Version: 1.0 Received: by 10.204.128.201 with SMTP id l9mr2775690bks.66.1350281703975; Sun, 14 Oct 2012 23:15:03 -0700 (PDT) Received: by 10.204.50.197 with HTTP; Sun, 14 Oct 2012 23:15:03 -0700 (PDT) Received: by 10.204.50.197 with HTTP; Sun, 14 Oct 2012 23:15:03 -0700 (PDT) In-Reply-To: <201210150610.q9F6Ajoo027485@svn.freebsd.org> References: <201210150610.q9F6Ajoo027485@svn.freebsd.org> Date: Mon, 15 Oct 2012 07:15:03 +0100 Message-ID: Subject: Re: svn commit: r305904 - head/ports-mgmt/portmaster From: Chris Rees To: Bryan Drewery Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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, 15 Oct 2012 06:15:11 -0000 On 15 Oct 2012 07:10, "Bryan Drewery" wrote: > > Author: bdrewery > Date: Mon Oct 15 06:10:44 2012 > New Revision: 305904 > URL: http://svn.freebsd.org/changeset/ports/305904 > > Log: > - Add backup non-https mirror > - Add PKGNG option to apply pkgng support patch. This will > be fully integrated upstream in the next version. This > functionality is only enabled when WITH_PKGNG is defined > in make.conf (or a recent CURRENT by default, see > UPDATING 20121010). Due to the compat OPTION handling, > defining WITH_PKGNG will also apply the patch by default. > The pkgng patch is contributed by avilla@ > > Feature safe: yes > > Modified: > head/ports-mgmt/portmaster/Makefile > head/ports-mgmt/portmaster/distinfo > > Modified: head/ports-mgmt/portmaster/Makefile > ============================================================================== > --- head/ports-mgmt/portmaster/Makefile Mon Oct 15 05:41:22 2012 (r305903) > +++ head/ports-mgmt/portmaster/Makefile Mon Oct 15 06:10:44 2012 (r305904) > @@ -2,7 +2,10 @@ > > PORTNAME= portmaster > PORTVERSION= 3.14 > +PORTREVISION= 1 > CATEGORIES= ports-mgmt > +MASTER_SITES= GH \ > + http://mirror.shatow.net/freebsd/portmaster/ > DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-${GH_COMMIT} > > MAINTAINER= bdrewery@FreeBSD.org > @@ -15,9 +18,10 @@ GH_ACCOUNT= portmaster > GH_COMMIT= 31009f6 > GH_TAGNAME= ${GH_COMMIT} > > -OPTIONS_DEFINE= BASH ZSH > +OPTIONS_DEFINE= BASH ZSH PKGNG > BASH_DESC= Install programmable completions for Bash > ZSH_DESC= Install programmable completions for zsh > +PKGNG_DESC= Enable PKGNG support > > PLIST_FILES= sbin/portmaster etc/portmaster.rc.sample > > @@ -25,6 +29,11 @@ MAN8= portmaster.8 > > .include > > +.if ${PORT_OPTIONS:MPKGNG} > +PATCH_SITES+= http://mirror.shatow.net/freebsd/portmaster/ > +PATCHFILES+= patch-portmaster-pkgng.gz > +.endif > + You almost certainly want to version the patch file. Chris