From owner-svn-ports-head@freebsd.org Fri Dec 22 17:35:50 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DE9DEA648D; Fri, 22 Dec 2017 17:35:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E200B8016F; Fri, 22 Dec 2017 17:35:49 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 281476F4B; Fri, 22 Dec 2017 17:35:49 +0000 (UTC) From: Jan Beich To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r456900 - in head: devel/pire net-p2p/bitcoin-daemon net-p2p/bitcoin-utils security/p5-Net-SinFP References: <201712210931.vBL9VQTG047259@repo.freebsd.org> Date: Fri, 22 Dec 2017 18:35:44 +0100 In-Reply-To: <201712210931.vBL9VQTG047259@repo.freebsd.org> (Mark Linimon's message of "Thu, 21 Dec 2017 09:31:26 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Dec 2017 17:35:50 -0000 Mark Linimon writes: > Author: linimon > Date: Thu Dec 21 09:31:25 2017 > New Revision: 456900 > URL: https://svnweb.freebsd.org/changeset/ports/456900 > > Log: > Use a more modern way of distinguishing "big-endian platforms". > > This will attempt builds on arm platforms on the cluster. > > Approved by: portmgr (tier-2 blanket) > > Modified: > head/devel/pire/Makefile > head/net-p2p/bitcoin-daemon/Makefile > head/net-p2p/bitcoin-utils/Makefile > head/security/p5-Net-SinFP/Makefile > > Modified: head/devel/pire/Makefile > ============================================================================== > --- head/devel/pire/Makefile Thu Dec 21 09:14:45 2017 (r456899) > +++ head/devel/pire/Makefile Thu Dec 21 09:31:25 2017 (r456900) > @@ -13,6 +13,9 @@ COMMENT= Perl Incompatible Regular Expressions library > LICENSE= LGPL3+ > LICENSE_FILE= ${WRKSRC}/COPYING > > +NOT_FOR_ARCHS= powerpc powerpc64 sparc64 > +NOT_FOR_ARCHS_REASON= does not support big-endian architectures > + > USE_GITHUB= yes > GH_ACCOUNT= dprokoptsev > > @@ -21,8 +24,5 @@ INSTALL_TARGET= install-strip > USES= autoreconf bison libtool > USE_LDCONFIG= yes > TEST_TARGET= check > - > -ONLY_FOR_ARCHS= amd64 i386 > -ONLY_FOR_ARCHS_REASON= not yet ported to big-endian platforms [...] According to arch(7) filtered by https://pkg-status.freebsd.org/ you've missed at least mips and mips64. Is this intentional?