svn commit: r477627 - head/devel/git
Kubilay Kocak
koobs at FreeBSD.org
Mon Aug 20 05:07:47 UTC 2018
Author: koobs
Date: Mon Aug 20 05:07:46 2018
New Revision: 477627
URL: https://svnweb.freebsd.org/changeset/ports/477627
Log:
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)
MFH: 2018Q3
Modified:
head/devel/git/Makefile
Modified: head/devel/git/Makefile
==============================================================================
--- head/devel/git/Makefile Mon Aug 20 05:01:25 2018 (r477626)
+++ head/devel/git/Makefile Mon Aug 20 05:07:46 2018 (r477627)
@@ -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