From owner-svn-ports-all@freebsd.org Fri Sep 7 21:08:39 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 C2611106C34D; Fri, 7 Sep 2018 21:08:38 +0000 (UTC) (envelope-from danilo@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 763E277711; Fri, 7 Sep 2018 21:08:38 +0000 (UTC) (envelope-from danilo@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 5703321290; Fri, 7 Sep 2018 21:08:38 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w87L8cVQ063047; Fri, 7 Sep 2018 21:08:38 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w87L8bag063044; Fri, 7 Sep 2018 21:08:37 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201809072108.w87L8bag063044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 7 Sep 2018 21:08:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479207 - head/sysutils/istio X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: head/sysutils/istio X-SVN-Commit-Revision: 479207 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.27 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, 07 Sep 2018 21:08:39 -0000 Author: danilo Date: Fri Sep 7 21:08:37 2018 New Revision: 479207 URL: https://svnweb.freebsd.org/changeset/ports/479207 Log: - Update to 1.0.2 - Use GO_* variables to simplify the Makefile Modified: head/sysutils/istio/Makefile head/sysutils/istio/distinfo head/sysutils/istio/pkg-plist Modified: head/sysutils/istio/Makefile ============================================================================== --- head/sysutils/istio/Makefile Fri Sep 7 18:35:17 2018 (r479206) +++ head/sysutils/istio/Makefile Fri Sep 7 21:08:37 2018 (r479207) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= istio -PORTVERSION= 1.0.1 +PORTVERSION= 1.0.2 CATEGORIES= sysutils MAINTAINER= danilo@FreeBSD.org @@ -15,21 +15,13 @@ RUN_DEPENDS= kubectl:sysutils/kubectl USES= go USE_GITHUB= yes -GH_ACCOUNT= istio -GH_SUBDIR= src/istio.io/istio -do-build: - cd ${WRKSRC}/${GH_SUBDIR} && \ - GOPATH=${WRKSRC} go build -o ${WRKSRC}/bin/istioctl \ - -ldflags="-X istio.io/istio/pkg/version.buildVersion=${PORTVERSION} \ - -X istio.io/istio/pkg/version.buildGitRevision=unknown \ - -X istio.io/istio/pkg/version.buildDockerHub=docker.io/istio" \ - ./istioctl/cmd/istioctl/ +GO_PKGNAME= istio.io/istio +GO_TARGET= ${GO_PKGNAME}/istioctl/cmd/istioctl +GO_BUILDFLAGS= -ldflags="-X istio.io/istio/pkg/version.buildVersion=${PORTVERSION} \ + -X istio.io/istio/pkg/version.buildDockerHub=docker.io/istio" -do-install: - ${INSTALL_PROGRAM} \ - ${WRKSRC}/bin/istioctl \ - ${STAGEDIR}${PREFIX}/bin/istioctl +post-install: .for data in consul gcp kubernetes (cd ${WRKSRC}/install \ && ${COPYTREE_SHARE} ${data} ${STAGEDIR}${DATADIR}) Modified: head/sysutils/istio/distinfo ============================================================================== --- head/sysutils/istio/distinfo Fri Sep 7 18:35:17 2018 (r479206) +++ head/sysutils/istio/distinfo Fri Sep 7 21:08:37 2018 (r479207) @@ -1,3 +1,3 @@ -TIMESTAMP = 1535213591 -SHA256 (istio-istio-1.0.1_GH0.tar.gz) = 836cef03b35aadfa55337ae650f77a2b01790bc9ada17cf82932aed04f07b7dc -SIZE (istio-istio-1.0.1_GH0.tar.gz) = 18829093 +TIMESTAMP = 1536352609 +SHA256 (istio-istio-1.0.2_GH0.tar.gz) = d9dc56408d4140309be653207da39449d191dade14b9b8811cc7431646248175 +SIZE (istio-istio-1.0.2_GH0.tar.gz) = 18828091 Modified: head/sysutils/istio/pkg-plist ============================================================================== --- head/sysutils/istio/pkg-plist Fri Sep 7 18:35:17 2018 (r479206) +++ head/sysutils/istio/pkg-plist Fri Sep 7 21:08:37 2018 (r479207) @@ -104,6 +104,7 @@ bin/istioctl %%DATADIR%%/kubernetes/helm/istio/charts/grafana/templates/create-custom-resources-job.yaml %%DATADIR%%/kubernetes/helm/istio/charts/grafana/templates/deployment.yaml %%DATADIR%%/kubernetes/helm/istio/charts/grafana/templates/grafana-ports-mtls.yaml +%%DATADIR%%/kubernetes/helm/istio/charts/grafana/templates/pvc.yaml %%DATADIR%%/kubernetes/helm/istio/charts/grafana/templates/secret.yaml %%DATADIR%%/kubernetes/helm/istio/charts/grafana/templates/service.yaml %%DATADIR%%/kubernetes/helm/istio/charts/ingress/Chart.yaml