svn commit: r409122 - in head/devel/buildbot-slave: . files

Kubilay Kocak koobs at FreeBSD.org
Thu Feb 18 18:21:25 UTC 2016


Author: koobs
Date: Thu Feb 18 18:21:23 2016
New Revision: 409122
URL: https://svnweb.freebsd.org/changeset/ports/409122

Log:
  devel/buildbot-slave: Add LOCALBASE/bin to rc.d PATH
  
  buildbot builders often need to run additional comments during their build
  steps, such as VCS commands (hg, git et al), fetching things with curl(8)
  among others.
  
  The PATH available at boot-time only includes /usr/bin:/usr/sbin, so we need
  to add LOCALBASE/bin to the startup script PATH to make other commands
  available.

Modified:
  head/devel/buildbot-slave/Makefile
  head/devel/buildbot-slave/files/buildslave.in

Modified: head/devel/buildbot-slave/Makefile
==============================================================================
--- head/devel/buildbot-slave/Makefile	Thu Feb 18 17:31:57 2016	(r409121)
+++ head/devel/buildbot-slave/Makefile	Thu Feb 18 18:21:23 2016	(r409122)
@@ -3,7 +3,7 @@
 
 PORTNAME=	buildbot-slave
 PORTVERSION=	0.8.12
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 

Modified: head/devel/buildbot-slave/files/buildslave.in
==============================================================================
--- head/devel/buildbot-slave/files/buildslave.in	Thu Feb 18 17:31:57 2016	(r409121)
+++ head/devel/buildbot-slave/files/buildslave.in	Thu Feb 18 18:21:23 2016	(r409122)
@@ -42,6 +42,8 @@
 
 . /etc/rc.subr
 
+export PATH=${PATH}:%%LOCALBASE%%/bin
+
 name=buildslave
 desc="Buildbot Buildslave"
 rcvar=buildslave_enable


More information about the svn-ports-all mailing list