From owner-svn-ports-all@freebsd.org Fri Oct 30 10:44:28 2015 Return-Path: Delivered-To: svn-ports-all@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 02CA2A212B5; Fri, 30 Oct 2015 10:44:28 +0000 (UTC) (envelope-from lme@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 B4B6B19BA; Fri, 30 Oct 2015 10:44:27 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9UAiQxL076747; Fri, 30 Oct 2015 10:44:26 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9UAiQGd076743; Fri, 30 Oct 2015 10:44:26 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201510301044.t9UAiQGd076743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Fri, 30 Oct 2015 10:44:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400494 - in head/sysutils: . iohyve X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2015 10:44:28 -0000 Author: lme Date: Fri Oct 30 10:44:26 2015 New Revision: 400494 URL: https://svnweb.freebsd.org/changeset/ports/400494 Log: Add new port: sysutils/iohyve iohyve creates, stores, manages, and launches bhyve guests utilizing built in FreeBSD features. The idea is based on iocage, a jail manager utilizing some of the same principles. WWW: https://github.com/pr1ntf/iohyve Added: head/sysutils/iohyve/ head/sysutils/iohyve/Makefile (contents, props changed) head/sysutils/iohyve/distinfo (contents, props changed) head/sysutils/iohyve/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Oct 30 08:35:56 2015 (r400493) +++ head/sysutils/Makefile Fri Oct 30 10:44:26 2015 (r400494) @@ -417,6 +417,7 @@ SUBDIR += iocage-devel SUBDIR += iogen SUBDIR += iograph + SUBDIR += iohyve SUBDIR += ioping SUBDIR += ipa SUBDIR += ipad_charge Added: head/sysutils/iohyve/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/iohyve/Makefile Fri Oct 30 10:44:26 2015 (r400494) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= iohyve +PORTVERSION= 0.7 +CATEGORIES= sysutils + +MAINTAINER= lme@FreeBSD.org +COMMENT= bhyve manager utilizing ZFS and other FreeBSD tools + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= pr1ntf + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= etc/rc.d/iohyve man/man8/iohyve.8.gz sbin/iohyve + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/rc.d/iohyve ${STAGEDIR}${PREFIX}/etc/rc.d + ${INSTALL_SCRIPT} ${WRKSRC}/iohyve ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/iohyve.8 ${STAGEDIR}${PREFIX}/man/man8 + +.include Added: head/sysutils/iohyve/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/iohyve/distinfo Fri Oct 30 10:44:26 2015 (r400494) @@ -0,0 +1,2 @@ +SHA256 (pr1ntf-iohyve-0.7_GH0.tar.gz) = 69b7ad0ab0313efd574a1ac267840d54961df21303dc6f204c78a8ad627e87c3 +SIZE (pr1ntf-iohyve-0.7_GH0.tar.gz) = 21285 Added: head/sysutils/iohyve/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/iohyve/pkg-descr Fri Oct 30 10:44:26 2015 (r400494) @@ -0,0 +1,5 @@ +iohyve creates, stores, manages, and launches bhyve guests utilizing built in +FreeBSD features. The idea is based on iocage, a jail manager utilizing some of +the same principles. + +WWW: https://github.com/pr1ntf/iohyve