From owner-svn-ports-head@freebsd.org Sun Feb 26 12:56:43 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 3251FCED55C; Sun, 26 Feb 2017 12:56:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E550F7CB; Sun, 26 Feb 2017 12:56:42 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1QCufRV008646; Sun, 26 Feb 2017 12:56:41 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1QCufsh008639; Sun, 26 Feb 2017 12:56:41 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201702261256.v1QCufsh008639@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 26 Feb 2017 12:56:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434867 - in head: biology/avida biology/gmap devel/k8048 devel/kyra devel/php-uprofiler multimedia/libde265 net-mgmt/fastnetmon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Sun, 26 Feb 2017 12:56:43 -0000 Author: linimon Date: Sun Feb 26 12:56:41 2017 New Revision: 434867 URL: https://svnweb.freebsd.org/changeset/ports/434867 Log: Mark various ports as broken on armv6: invokes x86 asm. Approved by: portmgr (tier-2 blanket) Modified: head/biology/avida/Makefile head/biology/gmap/Makefile head/devel/k8048/Makefile head/devel/kyra/Makefile head/devel/php-uprofiler/Makefile head/multimedia/libde265/Makefile head/net-mgmt/fastnetmon/Makefile Modified: head/biology/avida/Makefile ============================================================================== --- head/biology/avida/Makefile Sun Feb 26 12:46:29 2017 (r434866) +++ head/biology/avida/Makefile Sun Feb 26 12:56:41 2017 (r434867) @@ -13,6 +13,7 @@ COMMENT= Auto-adaptive genetic system de LICENSE= GPLv3 BROKEN_aarch64= invokes x86 asm +BROKEN_armv6= invokes x86 asm BROKEN_mips= invokes x86 asm BROKEN_mips64= invokes x86 asm BROKEN_sparc64= missing atomics implementation Modified: head/biology/gmap/Makefile ============================================================================== --- head/biology/gmap/Makefile Sun Feb 26 12:46:29 2017 (r434866) +++ head/biology/gmap/Makefile Sun Feb 26 12:56:41 2017 (r434867) @@ -25,6 +25,7 @@ OPTIONS_DEFINE= SIMD SIMD_CONFIGURE_OFF= --disable-builtin-popcount --disable-simd BROKEN_aarch64= Does not build: invokes x86 asm +BROKEN_armv6= Does not build: invokes x86 asm BROKEN_mips64= Does not build: invokes x86 asm BROKEN_powerpc64= Does not build on powerpc64 BROKEN_sparc64= Does not build: invokes x86 asm Modified: head/devel/k8048/Makefile ============================================================================== --- head/devel/k8048/Makefile Sun Feb 26 12:46:29 2017 (r434866) +++ head/devel/k8048/Makefile Sun Feb 26 12:56:41 2017 (r434867) @@ -16,6 +16,8 @@ WRKSRC= ${WRKDIR}/${PORTNAME}/Src USES= gmake ALL_TARGET= build +BROKEN_armv6= fails to compile: invokes x86 asm + PLIST_FILES= bin/${PORTNAME} bin/kio ${BIN_SYMLINKS} BIN_SYMLINKS= bin/k12 bin/k14 bin/k16 bin/ktest Modified: head/devel/kyra/Makefile ============================================================================== --- head/devel/kyra/Makefile Sun Feb 26 12:46:29 2017 (r434866) +++ head/devel/kyra/Makefile Sun Feb 26 12:56:41 2017 (r434867) @@ -27,6 +27,7 @@ MAKE_ARGS= CC="${CC}" CXX="${CXX}" LD="$ RELEASE_CFLAGS="${CFLAGS}" RELEASE_CXXFLAGS="${CXXFLAGS}" BROKEN_aarch64= Fails to compile: error: invalid output constraint =A in asm +BROKEN_armv6= Fails to compile: error: invalid output constraint =A in asm do-install: .for i in encoder spriteed Modified: head/devel/php-uprofiler/Makefile ============================================================================== --- head/devel/php-uprofiler/Makefile Sun Feb 26 12:46:29 2017 (r434866) +++ head/devel/php-uprofiler/Makefile Sun Feb 26 12:56:41 2017 (r434867) @@ -14,6 +14,7 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/../LICENSE BROKEN_aarch64= Does not build: invokes x86 asm +BROKEN_armv6= Does not build: invokes x86 asm BROKEN_mips64= Does not build: invokes x86 asm BROKEN_powerpc64= Does not build BROKEN_sparc64= Does not build: invokes x86 asm Modified: head/multimedia/libde265/Makefile ============================================================================== --- head/multimedia/libde265/Makefile Sun Feb 26 12:46:29 2017 (r434866) +++ head/multimedia/libde265/Makefile Sun Feb 26 12:56:41 2017 (r434867) @@ -3,8 +3,8 @@ PORTNAME= libde265 PORTVERSION= 1.0.2 -CATEGORIES= multimedia DISTVERSIONPREFIX= v +CATEGORIES= multimedia MAINTAINER= kwm@FreeBSD.org COMMENT= Open source h.265 video codec @@ -16,4 +16,6 @@ USES= autoreconf compiler:c++11-lib lib GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-sherlock265 --disable-dec265 +BROKEN_armv6= fails to compile: invokes x86 assembler + .include Modified: head/net-mgmt/fastnetmon/Makefile ============================================================================== --- head/net-mgmt/fastnetmon/Makefile Sun Feb 26 12:46:29 2017 (r434866) +++ head/net-mgmt/fastnetmon/Makefile Sun Feb 26 12:56:41 2017 (r434867) @@ -13,8 +13,6 @@ COMMENT= Very fast DDoS analyzer with sf LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libboost_regex.so:devel/boost-libs \ liblog4cpp.so:devel/log4cpp \ libndpi.so:net/ndpi \ @@ -34,6 +32,9 @@ CMAKE_SOURCE_PATH= ${WRKSRC}/src CMAKE_ARGS+= -DDISABLE_PF_RING_SUPPORT=ON CMAKE_INSTALL_PREFIX= ${PREFIX} +BROKEN_armv6= Does not build: invokes x86 assembler +BROKEN_powerpc64= Does not build + USE_RC_SUBR= ${PORTNAME} OPTIONS_DEFINE= DOCS REDIS