From owner-svn-ports-all@FreeBSD.ORG Tue Feb 24 11:54:06 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3692F9A6; Tue, 24 Feb 2015 11:54:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 07B54BFA; Tue, 24 Feb 2015 11:54:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1OBs5FB069350; Tue, 24 Feb 2015 11:54:05 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1OBs5ER069348; Tue, 24 Feb 2015 11:54:05 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201502241154.t1OBs5ER069348@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 24 Feb 2015 11:54:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379788 - in head/net-p2p: bitcoin bitcoin-daemon X-SVN-Group: ports-head 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.18-1 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, 24 Feb 2015 11:54:06 -0000 Author: koobs Date: Tue Feb 24 11:54:04 2015 New Revision: 379788 URL: https://svnweb.freebsd.org/changeset/ports/379788 QAT: https://qat.redports.org/buildarchive/r379788/ Log: net-p2p/bitcoin: Centralise regression-test target Move the regression-test targetr from bitcoin-daemon to bitcoin port proper. Approved by: maintainer (via IRC) > Description of fields to fill in above: 76 columns --| > PR: If a GNATS PR is affected by the change. > Differential Revision: https://reviews.freebsd.org/D### (*full* phabric URL needed). > Submitted by: If someone else sent in the change. > Reviewed by: If someone else reviewed your modification. > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > MFH: Ports tree branch name. Request approval for merge. > Relnotes: Set to 'yes' for mention in release notes. > Security: Vulnerability reference (one per line) or description. > Sponsored by: If the change was sponsored by an organization. > Empty fields above will be automatically removed. M net-p2p/bitcoin/Makefile M net-p2p/bitcoin-daemon/Makefile Modified: head/net-p2p/bitcoin-daemon/Makefile head/net-p2p/bitcoin/Makefile Modified: head/net-p2p/bitcoin-daemon/Makefile ============================================================================== --- head/net-p2p/bitcoin-daemon/Makefile Tue Feb 24 11:42:53 2015 (r379787) +++ head/net-p2p/bitcoin-daemon/Makefile Tue Feb 24 11:54:04 2015 (r379788) @@ -19,7 +19,4 @@ CONFIGURE_ARGS= --with-daemon \ PLIST_FILES= bin/bitcoind -regression-test: build - @cd ${WRKSRC} && ${GMAKE} check - .include "${MASTERDIR}/Makefile" Modified: head/net-p2p/bitcoin/Makefile ============================================================================== --- head/net-p2p/bitcoin/Makefile Tue Feb 24 11:42:53 2015 (r379787) +++ head/net-p2p/bitcoin/Makefile Tue Feb 24 11:54:04 2015 (r379788) @@ -97,4 +97,7 @@ post-install: .endif +regression-test: build + @cd ${WRKSRC} && ${GMAKE} check + .include