svn commit: r545832 - head/devel/grumpy
Mark Linimon
linimon at FreeBSD.org
Sun Aug 23 18:10:06 UTC 2020
Author: linimon
Date: Sun Aug 23 18:10:05 2020
New Revision: 545832
URL: https://svnweb.freebsd.org/changeset/ports/545832
Log:
Attempt to unbreak build on aarch64 by providing fallback case:
pkg-static: Unable to access file /wrkdirs/usr/ports/devel/grumpy/work/stage/usr/local/go/pkg/freebsd_%%ARCH%%/__python__/Queue.a:No such file or directory
Approved by: portmgr (tier-2 blanket)
Modified:
head/devel/grumpy/Makefile
Modified: head/devel/grumpy/Makefile
==============================================================================
--- head/devel/grumpy/Makefile Sun Aug 23 18:01:56 2020 (r545831)
+++ head/devel/grumpy/Makefile Sun Aug 23 18:10:05 2020 (r545832)
@@ -7,11 +7,10 @@ CATEGORIES= devel
MAINTAINER= swills at FreeBSD.org
COMMENT= Python to Go source code transcompiler and runtime
+BROKEN_i386= constant 2147762812 overflows int
DEPRECATED= Uses deprecated version of python
EXPIRATION_DATE= 2020-09-15
-BROKEN_i386= constant 2147762812 overflows int
-
USE_GITHUB= yes
GH_ACCOUNT= google
GH_TAGNAME= 3ec8795
@@ -22,11 +21,10 @@ BINARY_ALIAS= python=${PYTHON_CMD}
.include <bsd.port.options.mk>
-.if ${ARCH} == "amd64"
-PLIST_SUB+= ARCH=amd64
-.endif
.if ${ARCH} == "i386"
PLIST_SUB+= ARCH=386
+.else
+PLIST_SUB+= ARCH=${ARCH}
.endif
do-install:
More information about the svn-ports-all
mailing list