From owner-svn-ports-all@FreeBSD.ORG Mon Jun 30 17:37:03 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FE78A9C for ; Mon, 30 Jun 2014 17:37:03 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50DCC2081 for ; Mon, 30 Jun 2014 17:37:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s5UHb3Qs090819 for ; Mon, 30 Jun 2014 17:37:03 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s5UHb3hr090817 for svn-ports-all@freebsd.org; Mon, 30 Jun 2014 17:37:03 GMT (envelope-from bdrewery) Received: (qmail 73915 invoked from network); 30 Jun 2014 12:37:01 -0500 Received: from unknown (HELO blah) (freebsd@shatow.net@67.182.131.225) by sweb.xzibition.com with ESMTPA; 30 Jun 2014 12:37:01 -0500 Message-ID: <53B1A03A.6040603@FreeBSD.org> Date: Mon, 30 Jun 2014 12:36:58 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r359890 - in head/mail/dovecot: . files References: <201406301733.s5UHXMpp019346@svn.freebsd.org> In-Reply-To: <201406301733.s5UHXMpp019346@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 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: Mon, 30 Jun 2014 17:37:03 -0000 On 6/30/14, 12:33 PM, Bryan Drewery wrote: > Author: bdrewery > Date: Mon Jun 30 17:33:21 2014 > New Revision: 359890 > URL: http://svnweb.freebsd.org/changeset/ports/359890 > QAT: https://qat.redports.org/buildarchive/r359890/ > > Log: > - Take maintainership > - Attempt to limit portscout to version 1.2 > - Fix rc script for one* commands [1] > > Not bumping PORTREVISION as the installed version doesn't change, should > not affect dependent ports. Meant not bumping dependent ports... > > PR: 177497 [1] > Submitted by: nick@3wh.net [1] > > Modified: > head/mail/dovecot/Makefile > head/mail/dovecot/files/dovecot.in > > Modified: head/mail/dovecot/Makefile > ============================================================================== > --- head/mail/dovecot/Makefile Mon Jun 30 17:27:37 2014 (r359889) > +++ head/mail/dovecot/Makefile Mon Jun 30 17:33:21 2014 (r359890) > @@ -3,12 +3,12 @@ > > PORTNAME= dovecot > PORTVERSION= 1.2.17 > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= mail ipv6 > MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ \ > http://www.rename-it.nl/dovecot/${PORTVERSION:R}/ > > -MAINTAINER= ports@FreeBSD.org > +MAINTAINER= bdrewery@FreeBSD.org > COMMENT= Secure and compact IMAP and POP3 servers > > LICENSE= LGPL21 MIT > @@ -31,6 +31,8 @@ CONFLICTS= dovecot2-2.[0-9].* > USES= iconv libtool:keepla > USE_RC_SUBR= dovecot > > +PORTSCOUT= limit:^1\.2 > + > GNU_CONFIGURE= yes > CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} > CONFIGURE_ARGS= --localstatedir=/var \ > > Modified: head/mail/dovecot/files/dovecot.in > ============================================================================== > --- head/mail/dovecot/files/dovecot.in Mon Jun 30 17:27:37 2014 (r359889) > +++ head/mail/dovecot/files/dovecot.in Mon Jun 30 17:33:21 2014 (r359890) > @@ -50,13 +50,11 @@ restart_cmd() > > # To start multiple instances of dovecot set dovecot_config to > # a space seperated list of configuration files. > -if checkyesno ${name}_enable; then > - for config in ${dovecot_config}; do > - required_files="${config}" > - command_args="-c ${config}" > - base_dir=$(${command} ${command_args} -a | /usr/bin/awk -F ': ' '/^base_dir:/ { print $2 }') > - login_dir=$(${command} ${command_args} -a | /usr/bin/awk -F ': ' '/^login_dir:/ { print $2 }') > - pidfile="${base_dir}/master.pid" > - run_rc_command "$1" > - done > -fi > +for config in ${dovecot_config}; do > + required_files="${config}" > + command_args="-c ${config}" > + base_dir=$(${command} ${command_args} -a | /usr/bin/awk -F ': ' '/^base_dir:/ { print $2 }') > + login_dir=$(${command} ${command_args} -a | /usr/bin/awk -F ': ' '/^login_dir:/ { print $2 }') > + pidfile="${base_dir}/master.pid" > + run_rc_command "$1" > +done > -- Regards, Bryan Drewery