From owner-svn-ports-head@freebsd.org Thu Feb 18 18:21:24 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DAEEBAACD4F; Thu, 18 Feb 2016 18:21:24 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABF40D65; Thu, 18 Feb 2016 18:21:24 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1IILNtj060799; Thu, 18 Feb 2016 18:21:23 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1IILNVw060797; Thu, 18 Feb 2016 18:21:23 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201602181821.u1IILNVw060797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 18 Feb 2016 18:21:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409122 - in head/devel/buildbot-slave: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Feb 2016 18:21:25 -0000 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