From owner-svn-ports-all@freebsd.org Sat Jan 27 19:02:03 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3353ED1A97; Sat, 27 Jan 2018 19:02:02 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 98258754BD; Sat, 27 Jan 2018 19:02:02 +0000 (UTC) (envelope-from dumbbell@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 92F316A65; Sat, 27 Jan 2018 19:02:02 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0RJ22o4062685; Sat, 27 Jan 2018 19:02:02 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0RJ21sL062677; Sat, 27 Jan 2018 19:02:01 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201801271902.w0RJ21sL062677@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dumbbell set sender to dumbbell@FreeBSD.org using -f From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= Date: Sat, 27 Jan 2018 19:02:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460141 - in head/net: . bosh-bootloader bosh-cli X-SVN-Group: ports-head X-SVN-Commit-Author: dumbbell X-SVN-Commit-Paths: in head/net: . bosh-bootloader bosh-cli X-SVN-Commit-Revision: 460141 X-SVN-Commit-Repository: ports 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.25 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: Sat, 27 Jan 2018 19:02:03 -0000 Author: dumbbell Date: Sat Jan 27 19:02:01 2018 New Revision: 460141 URL: https://svnweb.freebsd.org/changeset/ports/460141 Log: net/bosh-{bootloader,cli}: New ports for the BOSH CLI v2 The new BOSH CLI is comprised of two executables: `bbl` and `bosh`. They replace the previous version of the CLI (sysutils/rubygem-bosh_cli). Sponsored by: Pivotal Added: head/net/bosh-bootloader/ head/net/bosh-bootloader/Makefile (contents, props changed) head/net/bosh-bootloader/distinfo (contents, props changed) head/net/bosh-bootloader/pkg-descr (contents, props changed) head/net/bosh-cli/ head/net/bosh-cli/Makefile (contents, props changed) head/net/bosh-cli/distinfo (contents, props changed) head/net/bosh-cli/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Jan 27 18:42:55 2018 (r460140) +++ head/net/Makefile Sat Jan 27 19:02:01 2018 (r460141) @@ -55,6 +55,8 @@ SUBDIR += boclient SUBDIR += boinc-client SUBDIR += boinc_curses + SUBDIR += bosh-bootloader + SUBDIR += bosh-cli SUBDIR += bounce SUBDIR += bsdec2-image-upload SUBDIR += bsdproxy Added: head/net/bosh-bootloader/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bosh-bootloader/Makefile Sat Jan 27 19:02:01 2018 (r460141) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= bosh-bootloader +PORTVERSION= 6.0.0 +CATEGORIES= net sysutils + +MAINTAINER= dumbbell@FreeBSD.org +COMMENT= CLI for standing up CloudFoundry or Concourse on an IAAS + +LICENSE= APACHE20 + +USE_GITHUB= yes +GH_TUPLE= cloudfoundry:bosh-bootloader:v${PORTVERSION} + +USES= go tar:xz + +GO_PKGNAME= github.com/cloudfoundry/bosh-bootloader +GO_TARGET= github.com/cloudfoundry/bosh-bootloader/bbl + +PLIST_FILES= bin/bbl + +post-patch: + ${REINPLACE_CMD} -E -e 's|(Version = )"dev"|\1"${PORTVERSION}"|' ${WRKSRC}/bbl/main.go + +.include Added: head/net/bosh-bootloader/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bosh-bootloader/distinfo Sat Jan 27 19:02:01 2018 (r460141) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517077398 +SHA256 (cloudfoundry-bosh-bootloader-6.0.0-v6.0.0_GH0.tar.gz) = 6390b292a60278c5fbeb60582405afd146c7eefc8a5e0a05215b9325a6e15e95 +SIZE (cloudfoundry-bosh-bootloader-6.0.0-v6.0.0_GH0.tar.gz) = 4113792 Added: head/net/bosh-bootloader/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bosh-bootloader/pkg-descr Sat Jan 27 19:02:01 2018 (r460141) @@ -0,0 +1,6 @@ +This is a command line utility for standing up a CloudFoundry or +Concourse installation on an IAAS. This CLI is currently under heavy +development, and the initial goal is to support bootstrapping a +CloudFoundry installation on AWS. + +WWW: https://github.com/cloudfoundry/bosh-bootloader Added: head/net/bosh-cli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bosh-cli/Makefile Sat Jan 27 19:02:01 2018 (r460141) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= bosh-cli +PORTVERSION= 2.0.48 +CATEGORIES= net sysutils + +MAINTAINER= dumbbell@FreeBSD.org +COMMENT= CLI for BOSH + +LICENSE= APACHE20 + +USE_GITHUB= yes +GH_TUPLE= cloudfoundry:bosh-cli:v${PORTVERSION} + +CONFLICTS_INSTALL= rubygem-bosh_cli + +USES= go tar:xz + +GO_PKGNAME= github.com/cloudfoundry/bosh-cli + +PLIST_FILES= bin/bosh + +post-patch: + ${REINPLACE_CMD} -e 's|\[DEV BUILD\]|${PORTVERSION}|' ${WRKSRC}/cmd/version.go + +post-install: + ${MV} ${STAGEDIR}${PREFIX}/bin/bosh-cli ${STAGEDIR}${PREFIX}/bin/bosh + +.include Added: head/net/bosh-cli/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bosh-cli/distinfo Sat Jan 27 19:02:01 2018 (r460141) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517077409 +SHA256 (cloudfoundry-bosh-cli-2.0.48-v2.0.48_GH0.tar.gz) = 846840d078d539e8642335511c4ceba941a710e0e65a8c1cc592155ae88d787d +SIZE (cloudfoundry-bosh-cli-2.0.48-v2.0.48_GH0.tar.gz) = 4182093 Added: head/net/bosh-cli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bosh-cli/pkg-descr Sat Jan 27 19:02:01 2018 (r460141) @@ -0,0 +1,4 @@ +The BOSH Command Line Interface (CLI) is what you use to run BOSH +commands. CLI v2 is a new major version of CLI. + +WWW: https://bosh.io/docs/cli-v2.html