svn commit: r491473 - head/security/py-certbot-apache

Martin Wilke miwi at FreeBSD.org
Mon Jan 28 10:37:12 UTC 2019


Author: miwi
Date: Mon Jan 28 10:37:11 2019
New Revision: 491473
URL: https://svnweb.freebsd.org/changeset/ports/491473

Log:
  - py-certbot-apache is looking for apache2ctl but we ship apachectl with www/apache24
    this commit fix this issue
  - Bump PORTREVISION
  
  PR:				235277
  Sponsored by:	iXsystems Inc.

Modified:
  head/security/py-certbot-apache/Makefile

Modified: head/security/py-certbot-apache/Makefile
==============================================================================
--- head/security/py-certbot-apache/Makefile	Mon Jan 28 10:16:31 2019	(r491472)
+++ head/security/py-certbot-apache/Makefile	Mon Jan 28 10:37:11 2019	(r491473)
@@ -2,7 +2,7 @@
 
 PORTNAME=	certbot-apache
 PORTVERSION=	${ACME_VERSION}
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	security python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -24,6 +24,9 @@ USES=		python
 USE_PYTHON=	autoplist concurrent distutils
 
 NO_ARCH=	yes
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|apache2ctl|apachectl|' ${WRKSRC}/certbot_apache/configurator.py
 
 .include "${.CURDIR}/../py-acme/version.mk"
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list