From owner-svn-ports-all@FreeBSD.ORG Thu May 29 15:44:35 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 5A983541 for ; Thu, 29 May 2014 15:44:35 +0000 (UTC) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D72AB275B for ; Thu, 29 May 2014 15:44:34 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id z11so291502lbi.41 for ; Thu, 29 May 2014 08:44:32 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=ATjgXcby77wxgKJdjeEQ94033wvRTMjoYPvMtWKBKg4=; b=ghzIBgi02lrAbUwhEzKJsmgX25dNCLq12G5MxH0LDHwtOitncA5FKUwY0+LGUTGqVb D/QXQX/DNTjCKNtXEJY5ig6vtK/53oNVXEG8AtS7A+J8klWix6j3InO6Z2xN8Xq302zM us66VdjB1DKfGyl66ZT92+RYrz8MtA+JbgvE5g+a9hJQL/Mg9fFa0+gXhFSgocO1Cuzs yjBuBy7RaHSrPlWyr68gQ1xmWKtPU9x0jN5Av4C0kFoSFADkvGXeliaRqhWBO0/Y3UQo Zxh4xsAH1u8EhUZXT4LGg0VU0VQvfnFJkLdlfG2UJhIwxx+NdR0p8l/k+pBaPJ7r0ipZ LA9w== X-Gm-Message-State: ALoCoQm9Q7CoO270mc8nXjuK2OjoiLTX/6cFDkyCVq7BJH1F8kTCsqqCHLxl8zG7yuF4/jdL6ufb X-Received: by 10.112.73.211 with SMTP id n19mr2940190lbv.84.1401378272200; Thu, 29 May 2014 08:44:32 -0700 (PDT) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.112.253.134 with HTTP; Thu, 29 May 2014 08:44:12 -0700 (PDT) In-Reply-To: <201405291412.s4TECCFr028594@svn.freebsd.org> References: <201405291412.s4TECCFr028594@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 29 May 2014 23:44:12 +0800 X-Google-Sender-Auth: 6cIe0HSob2TQ19kLp9DEgth-5vI Message-ID: Subject: Re: svn commit: r355699 - head/devel/git To: Wesley Shields Content-Type: text/plain; charset=UTF-8 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers 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: Thu, 29 May 2014 15:44:35 -0000 On Thu, May 29, 2014 at 10:12 PM, Wesley Shields wrote: > Author: wxs > Date: Thu May 29 14:12:12 2014 > New Revision: 355699 > URL: http://svnweb.freebsd.org/changeset/ports/355699 > QAT: https://qat.redports.org/buildarchive/r355699/ > > Log: > Add dependencies for send-email. > > Noticed by: sbruno@ > > Modified: > head/devel/git/Makefile > > Modified: head/devel/git/Makefile > ============================================================================== > --- head/devel/git/Makefile Thu May 29 13:49:23 2014 (r355698) > +++ head/devel/git/Makefile Thu May 29 14:12:12 2014 (r355699) > @@ -73,7 +73,9 @@ USES+= perl5 > MAKE_ENV+= PERL_PATH=${PERL} > BUILD_DEPENDS+= p5-Error>=0:${PORTSDIR}/lang/p5-Error > RUN_DEPENDS+= p5-Error>=0:${PORTSDIR}/lang/p5-Error \ > - p5-Net-SMTP-SSL>=0:${PORTSDIR}/mail/p5-Net-SMTP-SSL > + p5-Net-SMTP-SSL>=0:${PORTSDIR}/mail/p5-Net-SMTP-SSL \ > + p5-MIME-Base64>=0:${PORTSDIR}/converters/p5-MIME-Base64 \ Hi, MIME::Base64 is in Perl core module. You could safely remove this line if send-email does not specify a newer MIME::Base64. :) BTW, it would be better to bump PORTREVISION for runtime dependency change. Regards, sunpoet > + p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL > PLIST_SUB+= PERLSUB="" > .else > MAKE_ARGS+= NO_PERL=1 >