svn commit: r545835 - head/net/go-bapu

Mark Linimon linimon at FreeBSD.org
Sun Aug 23 18:45:34 UTC 2020


Author: linimon
Date: Sun Aug 23 18:45:33 2020
New Revision: 545835
URL: https://svnweb.freebsd.org/changeset/ports/545835

Log:
  Mark as BROKEN on aarch64: attempts to fetch files during build.
  
  This may actually be an infrastructure error.  It seems that the files
  called out in GH_TUPLE are not being fetched in the fetch phase -- but
  only on aarch64.  (The amd64 fetch works.)  Later, this causes the
  following error:
  
    ===>  Building bapu from bitbucket.org/carlostrub/bapu
    go: github.com/davecgh/go-spew at v1.1.1: Get "https://proxy.golang.org/github.com/davecgh/go-spew/@v/v1.1.1.mod": dial tcp xxx.xxx.xxx.xxx:443: connect: can't assign requested address
  
  which is the behavior we expect from the package building machines.
  
  Note: this package has not yet been attempted on armv6/armv7/powerpc64,
  so it is unknown how it will fare on them.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/net/go-bapu/Makefile

Modified: head/net/go-bapu/Makefile
==============================================================================
--- head/net/go-bapu/Makefile	Sun Aug 23 18:41:59 2020	(r545834)
+++ head/net/go-bapu/Makefile	Sun Aug 23 18:45:33 2020	(r545835)
@@ -15,6 +15,8 @@ COMMENT=	Virtual Machine Controller for Gandi.net
 
 LICENSE=	BSD3CLAUSE
 
+BROKEN_aarch64=		fails to build: attempts to fetch during build stage
+
 USES=		go:modules tar:bzip2
 
 USE_GITHUB=	nodefault


More information about the svn-ports-head mailing list