Index: head/net/bosh-bootloader/files/patch-bosh_ip.go =================================================================== --- head/net/bosh-bootloader/files/patch-bosh_ip.go (revision 462161) +++ head/net/bosh-bootloader/files/patch-bosh_ip.go (nonexistent) @@ -1,20 +0,0 @@ -This patch fixes the build on 32-bit platforms. It was failing with the -following error: -bosh/ip.go:55:16: constant 4278190080 overflows int - ---- bosh/ip.go.orig 2018-01-20 21:01:35 UTC -+++ bosh/ip.go -@@ -52,9 +52,9 @@ func (i IP) Subtract(offset int) IP { - } - - func (i IP) String() string { -- first := i.ip & 0xff000000 >> 24 -- second := i.ip & 0xff0000 >> 16 -- third := i.ip & 0xff00 >> 8 -- fourth := i.ip & 0xff -+ first := uint32(i.ip) & 0xff000000 >> 24 -+ second := uint32(i.ip) & 0xff0000 >> 16 -+ third := uint32(i.ip) & 0xff00 >> 8 -+ fourth := uint32(i.ip) & 0xff - return fmt.Sprintf("%v.%v.%v.%v", first, second, third, fourth) - } Property changes on: head/net/bosh-bootloader/files/patch-bosh_ip.go ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net/bosh-bootloader/Makefile =================================================================== --- head/net/bosh-bootloader/Makefile (revision 462161) +++ head/net/bosh-bootloader/Makefile (revision 462162) @@ -1,25 +1,25 @@ # $FreeBSD$ PORTNAME= bosh-bootloader -PORTVERSION= 6.1.1 +PORTVERSION= 6.1.2 CATEGORIES= net sysutils MAINTAINER= dumbbell@FreeBSD.org COMMENT= CLI for standing up CloudFoundry or Concourse on an IAAS LICENSE= APACHE20 USE_GITHUB= yes GH_TUPLE= cloudfoundry:bosh-bootloader:v${PORTVERSION} USES= go tar:xz GO_PKGNAME= github.com/cloudfoundry/bosh-bootloader GO_TARGET= github.com/cloudfoundry/bosh-bootloader/bbl PLIST_FILES= bin/bbl post-patch: ${REINPLACE_CMD} -E -e 's|(Version = )"dev"|\1"${PORTVERSION}"|' ${WRKSRC}/bbl/main.go .include Index: head/net/bosh-bootloader/distinfo =================================================================== --- head/net/bosh-bootloader/distinfo (revision 462161) +++ head/net/bosh-bootloader/distinfo (revision 462162) @@ -1,3 +1,3 @@ -TIMESTAMP = 1518344731 -SHA256 (cloudfoundry-bosh-bootloader-6.1.1-v6.1.1_GH0.tar.gz) = 282c3ae1b63f6d9f3bdc9634130da16fb8205eb819ba7b9bb4d60eaa3998ae77 -SIZE (cloudfoundry-bosh-bootloader-6.1.1-v6.1.1_GH0.tar.gz) = 4572392 +TIMESTAMP = 1518874029 +SHA256 (cloudfoundry-bosh-bootloader-6.1.2-v6.1.2_GH0.tar.gz) = 04d07c88aa141b7addcd4e34c5ced29168f607c6fe75949b2c40afdbfdcbcb2d +SIZE (cloudfoundry-bosh-bootloader-6.1.2-v6.1.2_GH0.tar.gz) = 4572502