Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Feb 2017 15:01:41 +0000 (UTC)
From:      =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= <dumbbell@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r434886 - head/net/cf
Message-ID:  <201702261501.v1QF1fiG057922@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dumbbell
Date: Sun Feb 26 15:01:41 2017
New Revision: 434886
URL: https://svnweb.freebsd.org/changeset/ports/434886

Log:
  net/cf: Update to 6.24.0
  
  The port now uses a `go build` link flag to set the version (as returned
  by `cf --version`) of the produced executable. This gets rid of the
  previous patching; it didn't work anymore with the new source code
  anyway.
  
  Approved by:	swills, antoine (mentor)
  Differential Revision:	https://reviews.freebsd.org/D9650

Modified:
  head/net/cf/Makefile
  head/net/cf/distinfo

Modified: head/net/cf/Makefile
==============================================================================
--- head/net/cf/Makefile	Sun Feb 26 14:38:59 2017	(r434885)
+++ head/net/cf/Makefile	Sun Feb 26 15:01:41 2017	(r434886)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	cf
-PORTVERSION=	6.22.2
+PORTVERSION=	6.24.0
 DISTVERSIONPREFIX=	v
 CATEGORIES=	net
 
@@ -27,11 +27,10 @@ STRIP=		# stripping can break go binarie
 
 OPTIONS_DEFINE=	DOCS
 
-post-patch:
-	@${REINPLACE_CMD} \
-		-e "s/BUILT_FROM_SOURCE/${PORTVERSION}/g" \
-		${WRKSRC}/cf/app_constants.go
-	@: ${LN} -s ../.. ${WRKSRC}/vendor/code.cloudfoundry.org/cli
+do-build:
+	(cd ${WRKDIR}; \
+	${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} \
+		install -v -ldflags="-X code.cloudfoundry.org/cli/version.binaryVersion=${PORTVERSION}" ${GO_TARGET})
 
 do-install-DOCS-on:
 	${MKDIR} ${STAGEDIR}${DOCSDIR}

Modified: head/net/cf/distinfo
==============================================================================
--- head/net/cf/distinfo	Sun Feb 26 14:38:59 2017	(r434885)
+++ head/net/cf/distinfo	Sun Feb 26 15:01:41 2017	(r434886)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1479575472
-SHA256 (cloudfoundry-cli-v6.22.2_GH0.tar.gz) = fa5254a6e7197d9de86f3f9e1084d1f51f04cfa201b27c85b467a3320dbecda6
-SIZE (cloudfoundry-cli-v6.22.2_GH0.tar.gz) = 5399810
+TIMESTAMP = 1487333583
+SHA256 (cloudfoundry-cli-v6.24.0_GH0.tar.gz) = bb62e9bed4b95b0042426dab9fd40890de48ed04a9ff654193cf803d35422f75
+SIZE (cloudfoundry-cli-v6.24.0_GH0.tar.gz) = 5632074



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