From owner-svn-ports-head@freebsd.org Thu May 24 08:34:16 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 2F0F2F6D5E8; Thu, 24 May 2018 08:34:16 +0000 (UTC) (envelope-from amdmi3@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 C73707D9BC; Thu, 24 May 2018 08:34:15 +0000 (UTC) (envelope-from amdmi3@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 A5CBB7E5B; Thu, 24 May 2018 08:34:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4O8YF6J026071; Thu, 24 May 2018 08:34:15 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4O8YFvJ026070; Thu, 24 May 2018 08:34:15 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201805240834.w4O8YFvJ026070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 24 May 2018 08:34:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470760 - head/devel/compiler-rt X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/compiler-rt X-SVN-Commit-Revision: 470760 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.26 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: Thu, 24 May 2018 08:34:16 -0000 Author: amdmi3 Date: Thu May 24 08:34:15 2018 New Revision: 470760 URL: https://svnweb.freebsd.org/changeset/ports/470760 Log: - Add LICENSE - Switch to new test framework Approved by: portmgr blanket Modified: head/devel/compiler-rt/Makefile Modified: head/devel/compiler-rt/Makefile ============================================================================== --- head/devel/compiler-rt/Makefile Thu May 24 08:33:34 2018 (r470759) +++ head/devel/compiler-rt/Makefile Thu May 24 08:34:15 2018 (r470760) @@ -9,6 +9,10 @@ MASTER_SITES= LOCAL/brooks MAINTAINER= brooks@FreeBSD.org COMMENT= Compiler runtime library with Blocks support +LICENSE= BSD3CLAUSE MIT +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE.TXT + BUILD_DEPENDS= cmake:devel/cmake BROKEN_powerpc64= does not build: undefined reference to fmax @@ -16,6 +20,8 @@ BROKEN_powerpc64= does not build: undefined reference CONFIGURE_WRKSRC= ${WRKDIR}/build BUILD_WRKSRC= ${WRKDIR}/build INSTALL_WRKSRC= ${WRKDIR}/build +TEST_WRKSRC= ${WRKDIR}/build +TEST_TARGET= test CMAKE_SOURCE_PATH= ${WRKSRC} @@ -73,8 +79,5 @@ post-patch: ${REINPLACE_CMD} -e 's/\(MACRO_ADD_CHECK_TEST( ${test}\)/# \1/' \ ${WRKSRC}/test/CMakeLists.txt .endfor - -regression-test: - cd ${BUILD_WRKSRC} && make test .include