From owner-svn-ports-head@freebsd.org Tue Aug 22 21:14:11 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 B6A73DE49B3; Tue, 22 Aug 2017 21:14:11 +0000 (UTC) (envelope-from antoine@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 846CF75872; Tue, 22 Aug 2017 21:14:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7MLEA1f007967; Tue, 22 Aug 2017 21:14:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7MLEAYm007966; Tue, 22 Aug 2017 21:14:10 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201708222114.v7MLEAYm007966@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 22 Aug 2017 21:14:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448582 - head/devel/libffi X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/devel/libffi X-SVN-Commit-Revision: 448582 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.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: Tue, 22 Aug 2017 21:14:11 -0000 Author: antoine Date: Tue Aug 22 21:14:10 2017 New Revision: 448582 URL: https://svnweb.freebsd.org/changeset/ports/448582 Log: - Remove nonsense TESTS option - Use the framework for regression tests With hat: portmgr Modified: head/devel/libffi/Makefile Modified: head/devel/libffi/Makefile ============================================================================== --- head/devel/libffi/Makefile Tue Aug 22 21:12:48 2017 (r448581) +++ head/devel/libffi/Makefile Tue Aug 22 21:14:10 2017 (r448582) @@ -3,6 +3,7 @@ PORTNAME= libffi PORTVERSION= 3.2.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SOURCEWARE/${PORTNAME} @@ -18,14 +19,10 @@ USES= libtool pathfix USE_LDCONFIG= yes GNU_CONFIGURE= yes -OPTIONS_DEFINE= TESTS - -TESTS_DESC= Include tools for test suite -TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} - INSTALL_TARGET= install-strip INFO= libffi PLIST_SUB= PORTVERSION=${PORTVERSION} +TEST_TARGET= check post-patch: @${REINPLACE_CMD} -e 's| -Wno-psabi||g' \ @@ -36,8 +33,5 @@ post-install: ${STAGEDIR}${PREFIX}/include/ @${LN} -sf ../lib/libffi-${PORTVERSION}/include/ffitarget.h \ ${STAGEDIR}${PREFIX}/include/ - -regression-test: build - @(cd ${WRKSRC} && ${MAKE_CMD} check) .include