From owner-svn-ports-all@freebsd.org Sun Aug 26 00:26:23 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD28F109AA68; Sun, 26 Aug 2018 00:26:23 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 82F858822E; Sun, 26 Aug 2018 00:26:23 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5FBF227396; Sun, 26 Aug 2018 00:26:23 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7Q0QNL4052534; Sun, 26 Aug 2018 00:26:23 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7Q0QNGI052533; Sun, 26 Aug 2018 00:26:23 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201808260026.w7Q0QNGI052533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 26 Aug 2018 00:26:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r478091 - branches/2018Q3/devel/git X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2018Q3/devel/git X-SVN-Commit-Revision: 478091 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 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: Sun, 26 Aug 2018 00:26:24 -0000 Author: koobs Date: Sun Aug 26 00:26:22 2018 New Revision: 478091 URL: https://svnweb.freebsd.org/changeset/ports/478091 Log: MFH: r477627 devel/git: Add missing (send-email) dependency The send-email command uses (require's) IO:Socket:SSL directly, and the devel/git port previously depended on mail/p5-Net-SMTP-SSL, which depended on and brought in the security/p5-IO-Socket-SSL port to satisfy it. ports r431794 [1] removed the dependency on p5-Net-SMTP-SSL due to deprecation which prevented the (direct) dependency from being installed (via another dependency), resulting in breaking function for encrypted/secured mail destinations. This change adds a direct dependency on IO::Socket::SSL as it ought to have been originally. [1] https://svnweb.freebsd.org/changeset/ports/431794 Reported by: ns5 (via IRC) Approved by: portmgr (blanket: broken dependencies) Approved by: ports-secteam (riggs) Modified: branches/2018Q3/devel/git/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/devel/git/Makefile ============================================================================== --- branches/2018Q3/devel/git/Makefile Sun Aug 26 00:24:24 2018 (r478090) +++ branches/2018Q3/devel/git/Makefile Sun Aug 26 00:26:22 2018 (r478091) @@ -3,7 +3,7 @@ PORTNAME= git DISTVERSION= 2.18.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ @@ -87,7 +87,8 @@ PCRE2_LIB_DEPENDS= libpcre2-8.so:devel/pcre2 PCRE2_CONFIGURE_WITH= libpcre SEND_EMAIL_IMPLIES= PERL -SEND_EMAIL_RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL +SEND_EMAIL_RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ + p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL ICONV_USES= iconv ICONV_MAKE_ARGS_OFF= NO_ICONV=1