From owner-svn-ports-all@freebsd.org Tue Jun 19 22:30:08 2018 Return-Path: Delivered-To: svn-ports-all@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 ACB311012E85; Tue, 19 Jun 2018 22:30:08 +0000 (UTC) (envelope-from yuri@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 5EA7A7911C; Tue, 19 Jun 2018 22:30:08 +0000 (UTC) (envelope-from yuri@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 3A8DC19BDE; Tue, 19 Jun 2018 22:30:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JMU8Aj067002; Tue, 19 Jun 2018 22:30:08 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JMU8hP067001; Tue, 19 Jun 2018 22:30:08 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806192230.w5JMU8hP067001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 22:30:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472827 - head/audio/caps-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/audio/caps-lv2 X-SVN-Commit-Revision: 472827 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 22:30:08 -0000 Author: yuri Date: Tue Jun 19 22:30:07 2018 New Revision: 472827 URL: https://svnweb.freebsd.org/changeset/ports/472827 Log: audio/caps-lv2: Switch to clang-5 to avoid the regression in clang-6. Remove BROKEN statements which have this regression as a reason. Reported by: fallout Modified: head/audio/caps-lv2/Makefile Modified: head/audio/caps-lv2/Makefile ============================================================================== --- head/audio/caps-lv2/Makefile Tue Jun 19 21:48:16 2018 (r472826) +++ head/audio/caps-lv2/Makefile Tue Jun 19 22:30:07 2018 (r472827) @@ -3,6 +3,7 @@ PORTNAME= caps-lv2 PORTVERSION= g20170626 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org @@ -11,8 +12,6 @@ COMMENT= LV2 version of the C* Audio Plugin Suite LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_armv6= fails to build: dsp/v4f.h:153:12: no matching function for call to v4f_map -BROKEN_armv7= fails to build: dsp/v4f.h:153:12: no matching function for call to v4f_map BROKEN_powerpc64= fails to build: cc1plus: unrecognized command line option -std=c++11 BUILD_DEPENDS= lv2>0:audio/lv2 @@ -21,6 +20,13 @@ USES= gmake localbase USE_GITHUB= yes GH_ACCOUNT= moddevices GH_TAGNAME= 072e2fe + +# It suffers from the regression in clang-6: https://bugs.llvm.org/show_bug.cgi?id=36916 +LLVM_VER= 50 +BUILD_DEPENDS+= clang${LLVM_VER}:devel/llvm${LLVM_VER} +CPP= clang-cpp${LLVM_VER} +CC= clang${LLVM_VER} +CXX= clang++${LLVM_VER} post-patch: @${REINPLACE_CMD} -e "s|__APPLE__|__FreeBSD__|" \