svn commit: r476251 - in head/sysutils: . kops
Danilo Egea Gondolfo
danilo at FreeBSD.org
Thu Aug 2 21:54:56 UTC 2018
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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= kops
+PORTVERSION= 1.9.2
+CATEGORIES= sysutils
+
+MAINTAINER= danilo at 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
More information about the svn-ports-head
mailing list