Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 May 2018 13:27:40 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r470611 - in head/sysutils/py-google-compute-engine: . files
Message-ID:  <201805221327.w4MDReom005321@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Tue May 22 13:27:40 2018
New Revision: 470611
URL: https://svnweb.freebsd.org/changeset/ports/470611

Log:
  sysutils/py-google-compute-engine: Fix gsutil not being found
  
  PR:		228415
  Submitted by:	Helen Koike <helen.koike@collabora.com> (maintainer

Modified:
  head/sysutils/py-google-compute-engine/Makefile   (contents, props changed)
  head/sysutils/py-google-compute-engine/files/google_startup.in

Modified: head/sysutils/py-google-compute-engine/Makefile
==============================================================================
--- head/sysutils/py-google-compute-engine/Makefile	Tue May 22 13:15:13 2018	(r470610)
+++ head/sysutils/py-google-compute-engine/Makefile	Tue May 22 13:27:40 2018	(r470611)
@@ -2,7 +2,7 @@
 
 PORTNAME=	google-compute-engine
 DISTVERSION=	2.7.6
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	sysutils python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -39,6 +39,5 @@ post-install:
 		${STAGEDIR}${PREFIX}/etc/instance_configs.cfg.distro.sample
 	${INSTALL_DATA} ${FILESDIR}/90-google.conf.sample \
 		${STAGEDIR}${PREFIX}/etc/syslog.d/90-google.conf.sample
-
 
 .include <bsd.port.mk>

Modified: head/sysutils/py-google-compute-engine/files/google_startup.in
==============================================================================
--- head/sysutils/py-google-compute-engine/files/google_startup.in	Tue May 22 13:15:13 2018	(r470610)
+++ head/sysutils/py-google-compute-engine/files/google_startup.in	Tue May 22 13:27:40 2018	(r470611)
@@ -13,6 +13,9 @@
 
 . /etc/rc.subr
 
+# Required to execute gsutil
+export PATH=%%LOCALBASE%%/bin:$PATH
+
 name="google_startup"
 rcvar="google_startup_enable"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805221327.w4MDReom005321>