From owner-svn-ports-head@freebsd.org Fri Oct 9 13:31:58 2015 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 958F09D124B; Fri, 9 Oct 2015 13:31:58 +0000 (UTC) (envelope-from mmoll@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 70196CA4; Fri, 9 Oct 2015 13:31:58 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DVv9Y069726; Fri, 9 Oct 2015 13:31:57 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DVvhm069722; Fri, 9 Oct 2015 13:31:57 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091331.t99DVvhm069722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:31:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398916 - in head/sysutils: . rubygem-smart_proxy_remote_execution_ssh 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: Fri, 09 Oct 2015 13:31:58 -0000 Author: mmoll Date: Fri Oct 9 13:31:57 2015 New Revision: 398916 URL: https://svnweb.freebsd.org/changeset/ports/398916 Log: new port: sysutils/rubygem-smart_proxy_remote_execution_ssh Plugin for foreman-proxy allowing using SSH for remote execution. WWW: https://github.com/theforeman/smart_proxy_remote_execution_ssh Added: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/ head/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile (contents, props changed) head/sysutils/rubygem-smart_proxy_remote_execution_ssh/distinfo (contents, props changed) head/sysutils/rubygem-smart_proxy_remote_execution_ssh/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Oct 9 13:29:11 2015 (r398915) +++ head/sysutils/Makefile Fri Oct 9 13:31:57 2015 (r398916) @@ -890,6 +890,7 @@ SUBDIR += rubygem-shellany SUBDIR += rubygem-smart_proxy_chef SUBDIR += rubygem-smart_proxy_dynflow + SUBDIR += rubygem-smart_proxy_remote_execution_ssh SUBDIR += rubygem-smart_proxy_salt SUBDIR += rubygem-sys-admin SUBDIR += rubygem-sys-cpu Added: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile Fri Oct 9 13:31:57 2015 (r398916) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= smart_proxy_remote_execution_ssh +PORTVERSION= 0.0.6 +CATEGORIES= sysutils ruby +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= SSH remote execution provider for foreman-proxy + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= foreman-proxy>=1.9.0:${PORTSDIR}/net/foreman-proxy \ + rubygem-net-scp>=0:${PORTSDIR}/security/rubygem-net-scp \ + rubygem-net-ssh>=0:${PORTSDIR}/security/rubygem-net-ssh \ + rubygem-smart_proxy_dynflow>=0.0.3:${PORTSDIR}/sysutils/rubygem-smart_proxy_dynflow + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= share/foreman-proxy/bundler.d/remote_execution_ssh.rb \ + "@sample etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample" + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d + ${INSTALL_DATA} ${WRKSRC}/settings.d/remote_execution_ssh.yml.example \ + ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample + ${MKDIR} ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d + ${INSTALL_DATA} ${WRKSRC}/bundler.d/remote_execution_ssh.rb \ + ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d/remote_execution_ssh.rb + +.include Added: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_remote_execution_ssh/distinfo Fri Oct 9 13:31:57 2015 (r398916) @@ -0,0 +1,2 @@ +SHA256 (rubygem/smart_proxy_remote_execution_ssh-0.0.6.gem) = 6390147300d8d2dd93ccfcef6b8cea6a565048b9ddfd8579dd43de89c3feb9da +SIZE (rubygem/smart_proxy_remote_execution_ssh-0.0.6.gem) = 22528 Added: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_remote_execution_ssh/pkg-descr Fri Oct 9 13:31:57 2015 (r398916) @@ -0,0 +1,3 @@ +Plugin for foreman-proxy allowing using SSH for remote execution. + +WWW: https://github.com/theforeman/smart_proxy_remote_execution_ssh