From owner-svn-ports-head@freebsd.org Sun Mar 18 03:01:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C5EDF59568; Sun, 18 Mar 2018 03:01:50 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3ADEC7A902; Sun, 18 Mar 2018 03:01:50 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 35E011AF4C; Sun, 18 Mar 2018 03:01:50 +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 w2I31ohF052316; Sun, 18 Mar 2018 03:01:50 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2I31n73052312; Sun, 18 Mar 2018 03:01:49 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201803180301.w2I31n73052312@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 18 Mar 2018 03:01:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464858 - in head/audio: eq10q-lv2 fluidplug-lv2 sorcer-lv2 x42-plugins-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/audio: eq10q-lv2 fluidplug-lv2 sorcer-lv2 x42-plugins-lv2 X-SVN-Commit-Revision: 464858 X-SVN-Commit-Repository: ports 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.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: Sun, 18 Mar 2018 03:01:50 -0000 Author: linimon Date: Sun Mar 18 03:01:49 2018 New Revision: 464858 URL: https://svnweb.freebsd.org/changeset/ports/464858 Log: Mark these broken on arm and mips64: attempt to use x86-specific sse instructions. Approved by: portmgr (tier-2 blanket) Modified: head/audio/eq10q-lv2/Makefile head/audio/fluidplug-lv2/Makefile head/audio/sorcer-lv2/Makefile head/audio/x42-plugins-lv2/Makefile Modified: head/audio/eq10q-lv2/Makefile ============================================================================== --- head/audio/eq10q-lv2/Makefile Sun Mar 18 02:50:07 2018 (r464857) +++ head/audio/eq10q-lv2/Makefile Sun Mar 18 03:01:49 2018 (r464858) @@ -14,6 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_aarch64= fails to compile: unknown FP unit 'sse' BROKEN_armv6= fails to compile: unknown FP unit 'sse' +BROKEN_armv7= fails to compile: unknown FP unit 'sse' BROKEN_mips64= fails to compile: unknown FP unit 'sse' BUILD_DEPENDS= lv2>0:audio/lv2 Modified: head/audio/fluidplug-lv2/Makefile ============================================================================== --- head/audio/fluidplug-lv2/Makefile Sun Mar 18 02:50:07 2018 (r464857) +++ head/audio/fluidplug-lv2/Makefile Sun Mar 18 03:01:49 2018 (r464858) @@ -11,6 +11,11 @@ COMMENT= SoundFonts as LV2 plugins via FluidSynth LICENSE= LGPL20 +BROKEN_aarch64= fails to compile: unknown FP unit 'sse' +BROKEN_armv6= fails to compile: unknown FP unit 'sse' +BROKEN_armv7= fails to compile: unknown FP unit 'sse' +BROKEN_mips64= fails to compile: unknown FP unit 'sse' + BUILD_DEPENDS= 7z:archivers/p7zip \ lv2>0:audio/lv2 LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth Modified: head/audio/sorcer-lv2/Makefile ============================================================================== --- head/audio/sorcer-lv2/Makefile Sun Mar 18 02:50:07 2018 (r464857) +++ head/audio/sorcer-lv2/Makefile Sun Mar 18 03:01:49 2018 (r464858) @@ -13,6 +13,11 @@ COMMENT= Wavetable LV2 plugin synth targeted at the el LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to compile: unknown FP unit 'sse' +BROKEN_armv6= fails to compile: unknown FP unit 'sse' +BROKEN_armv7= fails to compile: unknown FP unit 'sse' +BROKEN_mips64= fails to compile: unknown FP unit 'sse' + BUILD_DEPENDS= lv2>0:audio/lv2 \ ${LOCALBASE}/include/boost/circular_buffer.hpp:devel/boost-libs LIB_DEPENDS= libntk.so:x11-toolkits/ntk Modified: head/audio/x42-plugins-lv2/Makefile ============================================================================== --- head/audio/x42-plugins-lv2/Makefile Sun Mar 18 02:50:07 2018 (r464857) +++ head/audio/x42-plugins-lv2/Makefile Sun Mar 18 03:01:49 2018 (r464858) @@ -10,6 +10,11 @@ PKGNAMESUFFIX= -lv2 MAINTAINER= yuri@FreeBSD.org COMMENT= Collection of LV2 plugins (submodules) +BROKEN_aarch64= fails to compile: unknown FP unit 'sse' +BROKEN_armv6= fails to compile: unknown FP unit 'sse' +BROKEN_armv7= fails to compile: unknown FP unit 'sse' +BROKEN_mips64= fails to compile: unknown FP unit 'sse' + BUILD_DEPENDS= lv2>0:audio/lv2 \ ${LOCALBASE}/include/fftw3.h:math/fftw3 \ bash:shells/bash