svn commit: r428162 - in head/net: . bluemix-cli

Alberto Villa avilla at FreeBSD.org
Fri Dec 9 01:09:52 UTC 2016


Author: avilla
Date: Fri Dec  9 01:09:50 2016
New Revision: 428162
URL: https://svnweb.freebsd.org/changeset/ports/428162

Log:
  Bluemix CLI provides a unified way for you to interact with your
  applications, virtual servers, containers, and other components in
  Bluemix through a command line interface. It also leverages command
  line tools from Cloud Foundry, Docker, and the OpenStack community
  when you interact with specific compute types. Bluemix CLI helps you
  handle the environment settings when these community tools are used.
  
  WWW: http://clis.ng.bluemix.net

Added:
  head/net/bluemix-cli/
  head/net/bluemix-cli/Makefile   (contents, props changed)
  head/net/bluemix-cli/distinfo   (contents, props changed)
  head/net/bluemix-cli/pkg-descr   (contents, props changed)
  head/net/bluemix-cli/pkg-message   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Thu Dec  8 23:40:05 2016	(r428161)
+++ head/net/Makefile	Fri Dec  9 01:09:50 2016	(r428162)
@@ -52,6 +52,7 @@
     SUBDIR += bird-devel
     SUBDIR += bird6
     SUBDIR += bittwist
+    SUBDIR += bluemix-cli
     SUBDIR += bmon
     SUBDIR += bnxt-kmod
     SUBDIR += boclient

Added: head/net/bluemix-cli/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/bluemix-cli/Makefile	Fri Dec  9 01:09:50 2016	(r428162)
@@ -0,0 +1,39 @@
+# $FreeBSD$
+
+PORTNAME=	bluemix-cli
+PORTVERSION=	0.4.4
+DISTNAME=	Bluemix_CLI_${PORTVERSION}_386
+CATEGORIES=	net
+MASTER_SITES=	http://public.dhe.ibm.com/cloud/${PORTNAME:C/-.*//}/cli/${PORTNAME}/
+
+MAINTAINER=	avilla at FreeBSD.org
+COMMENT=	Bluemix command line interface
+
+LICENSE=	BLUEMIX
+LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
+LICENSE_NAME=	IBM Bluemix Service Description
+LICENSE_FILE=	${WRKSRC}/bin/LICENSE
+
+RUN_DEPENDS=	cf:net/cf
+
+USES=		linux
+NO_BUILD=	yes
+NO_ARCH=	yes
+STRIP=		# empty
+
+WRKSRC=		${WRKDIR}/Bluemix_CLI
+
+PLIST_FILES=	bin/bluemix bin/bluemix-analytics bin/bx \
+		etc/bash_completion.d/bluemix.sh
+
+pre-install:
+	${BRANDELF} -t Linux ${WRKSRC}/bin/bluemix*
+
+do-install:
+	cd ${WRKSRC}/bin && ${INSTALL_PROGRAM} bluemix bluemix-analytics \
+		${STAGEDIR}${PREFIX}/bin
+	${LN} -s bluemix ${STAGEDIR}${PREFIX}/bin/bx
+	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d
+	${INSTALL_DATA} ${WRKSRC}/bx/bash_autocomplete ${STAGEDIR}${PREFIX}/etc/bash_completion.d/bluemix.sh
+
+.include <bsd.port.mk>

Added: head/net/bluemix-cli/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/bluemix-cli/distinfo	Fri Dec  9 01:09:50 2016	(r428162)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1481244062
+SHA256 (Bluemix_CLI_0.4.4_386.tar.gz) = 1f5efea2b0b0e0a0bbaf338f0116f0b8a7b6f30006f7e9a2a0fe94d7e92059c5
+SIZE (Bluemix_CLI_0.4.4_386.tar.gz) = 6122023

Added: head/net/bluemix-cli/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/bluemix-cli/pkg-descr	Fri Dec  9 01:09:50 2016	(r428162)
@@ -0,0 +1,8 @@
+Bluemix CLI provides a unified way for you to interact with your
+applications, virtual servers, containers, and other components in
+Bluemix through a command line interface. It also leverages command
+line tools from Cloud Foundry, Docker, and the OpenStack community
+when you interact with specific compute types. Bluemix CLI helps you
+handle the environment settings when these community tools are used.
+
+WWW: http://clis.ng.bluemix.net

Added: head/net/bluemix-cli/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/bluemix-cli/pkg-message	Fri Dec  9 01:09:50 2016	(r428162)
@@ -0,0 +1,12 @@
+======================================================================
+
+With IBM Bluemix CLI 0.4.0 or later, the CLI can automatically collect
+diagnostic and usage information and send it to Bluemix for analysis.
+This information will help us better understand current client usage
+and plan for future use. No personally identifiable data is collected.
+
+To stop collecting information, you can run the following command:
+
+$ bluemix config --usage-stats-collect false
+
+======================================================================


More information about the svn-ports-head mailing list