svn commit: r476940 - head/sysutils/duply

Danilo G. Baio dbaio at FreeBSD.org
Sat Aug 11 19:01:17 UTC 2018


Author: dbaio
Date: Sat Aug 11 19:01:15 2018
New Revision: 476940
URL: https://svnweb.freebsd.org/changeset/ports/476940

Log:
  sysutils/duply: Fix Python interpreter
  
  After r476919, post-patch was changing incorrectly the Python
  interpreter that `duply` uses.
  Without this patch, `duply` will look for the same interpreter
  that `duplicity` uses.
  
  PR:		230544
  Submitted by:	Peter Putzer <freebsd at mnd.sc>
  Approved by:	just fix it

Modified:
  head/sysutils/duply/Makefile

Modified: head/sysutils/duply/Makefile
==============================================================================
--- head/sysutils/duply/Makefile	Sat Aug 11 18:19:11 2018	(r476939)
+++ head/sysutils/duply/Makefile	Sat Aug 11 19:01:15 2018	(r476940)
@@ -3,6 +3,7 @@
 
 PORTNAME=	duply
 PORTVERSION=	2.1
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	https://duply.net/projects/ftplicity/files/latest/download/
 DISTNAME=	${PORTNAME}_${PORTVERSION}
@@ -28,7 +29,6 @@ SUB_FILES=	pkg-message periodic_duply
 
 post-patch:
 	${REINPLACE_CMD} -e "s,/etc/duply,${ETCDIR},g" ${WRKSRC}/duply
-	${REINPLACE_CMD} -e "s,(python,(${PYTHON_CMD},g" ${WRKSRC}/duply
 
 do-install:
 	${INSTALL_SCRIPT} ${WRKSRC}/duply ${STAGEDIR}${PREFIX}/bin/duply


More information about the svn-ports-all mailing list