svn commit: r478091 - branches/2018Q3/devel/git

Kubilay Kocak koobs at FreeBSD.org
Sun Aug 26 00:26:24 UTC 2018


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


More information about the svn-ports-all mailing list