Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Aug 2018 21:54:55 +0000 (UTC)
From:      Danilo Egea Gondolfo <danilo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r476251 - in head/sysutils: . kops
Message-ID:  <201808022154.w72LstQH065099@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danilo
Date: Thu Aug  2 21:54:55 2018
New Revision: 476251
URL: https://svnweb.freebsd.org/changeset/ports/476251

Log:
  - New port: sysutils/kops
  
  kops helps you create, destroy, upgrade and maintain production-grade,
  highly available, Kubernetes clusters from the command line.
  AWS (Amazon Web Services) is currently officially supported, with GCE
  in beta support , and VMware vSphere in alpha, and other platforms planned.

Added:
  head/sysutils/kops/
  head/sysutils/kops/Makefile   (contents, props changed)
  head/sysutils/kops/distinfo   (contents, props changed)
  head/sysutils/kops/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Thu Aug  2 21:38:36 2018	(r476250)
+++ head/sysutils/Makefile	Thu Aug  2 21:54:55 2018	(r476251)
@@ -574,6 +574,7 @@
     SUBDIR += kldfind
     SUBDIR += kldpatch
     SUBDIR += knutclient-kde4
+    SUBDIR += kops
     SUBDIR += krename
     SUBDIR += kshutdown-kde4
     SUBDIR += ksysguardd-kde4

Added: head/sysutils/kops/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/kops/Makefile	Thu Aug  2 21:54:55 2018	(r476251)
@@ -0,0 +1,35 @@
+# Created by: Danilo Egea Gondolfo <danilo@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	kops
+PORTVERSION=	1.9.2
+CATEGORIES=	sysutils
+
+MAINTAINER=	danilo@FreeBSD.org
+COMMENT=	Kubernetes Operations
+
+LICENSE=	APACHE20
+
+USES=		gmake go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	kubernetes
+
+PLIST_FILES=	bin/${PORTNAME}
+
+post-patch:
+	${MKDIR} ${WRKDIR}/src/k8s.io/
+	${LN} -s ${WRKSRC} ${WRKDIR}/src/k8s.io/${PORTNAME}
+	${REINPLACE_CMD} -e 's/^GITSHA/#GITSHA/' -e 's/sha1sum/sha1/' \
+		${WRKSRC}/Makefile
+
+do-build:
+	cd ${WRKSRC} && \
+		GOPATH=${WRKDIR} ${GMAKE}
+
+do-install:
+	${INSTALL_PROGRAM} \
+		${WRKDIR}/bin/${PORTNAME} \
+		${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/sysutils/kops/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/kops/distinfo	Thu Aug  2 21:54:55 2018	(r476251)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1533235748
+SHA256 (kubernetes-kops-1.9.2_GH0.tar.gz) = 39cdf50f6bb12ff3e4b6b1798298a22a337bc86dc04ff36cb6afedd9aed61d8f
+SIZE (kubernetes-kops-1.9.2_GH0.tar.gz) = 15610965

Added: head/sysutils/kops/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/kops/pkg-descr	Thu Aug  2 21:54:55 2018	(r476251)
@@ -0,0 +1,6 @@
+kops helps you create, destroy, upgrade and maintain production-grade,
+highly available, Kubernetes clusters from the command line.
+AWS (Amazon Web Services) is currently officially supported, with GCE
+in beta support , and VMware vSphere in alpha, and other platforms planned.
+
+WWW: https://github.com/kubernetes/kops



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808022154.w72LstQH065099>