From owner-svn-ports-head@FreeBSD.ORG Thu Dec 12 21:34:01 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B68135A; Thu, 12 Dec 2013 21:34:01 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 277631A6D; Thu, 12 Dec 2013 21:34:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCLY1TS094019; Thu, 12 Dec 2013 21:34:01 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBCLY05U094015; Thu, 12 Dec 2013 21:34:00 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201312122134.rBCLY05U094015@svn.freebsd.org> From: Eitan Adler Date: Thu, 12 Dec 2013 21:34:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336291 - head/devel/creduce X-SVN-Group: ports-head 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.17 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, 12 Dec 2013 21:34:01 -0000 Author: eadler Date: Thu Dec 12 21:34:00 2013 New Revision: 336291 URL: http://svnweb.freebsd.org/changeset/ports/336291 Log: devel/creduce: fix dependencies I had forgotten a += so the run depends were wrong. Further, the dep on clang won't work correctly since a version bump on clang Reported by: brooks (mostly) Modified: head/devel/creduce/Makefile Modified: head/devel/creduce/Makefile ============================================================================== --- head/devel/creduce/Makefile Thu Dec 12 21:10:36 2013 (r336290) +++ head/devel/creduce/Makefile Thu Dec 12 21:34:00 2013 (r336291) @@ -12,14 +12,15 @@ COMMENT= Produces small test cases LICENSE= BSD2CLAUSE -BUILD_DEPENDS= clang32=3.2:${PORTSDIR}/lang/clang32 -RUN_DEPENDS= clang32=3.2:${PORTSDIR}/lang/clang32 -RUN_DEPENDS= topformflat:${PORTSDIR}/devel/delta \ +BUILD_DEPENDS= llvm-config32:${PORTSDIR}/lang/clang32 +RUN_DEPENDS= llvm-config32:${PORTSDIR}/lang/clang32 \ + topformflat:${PORTSDIR}/devel/delta \ astyle:${PORTSDIR}/devel/astyle \ p5-Benchmark-Timer>=0:${PORTSDIR}/devel/p5-Benchmark-Timer \ p5-Exporter-Lite>=0:${PORTSDIR}/devel/p5-Exporter-Lite \ p5-File-Which>=0:${PORTSDIR}/sysutils/p5-File-Which \ - p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common + p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common \ + devel/p5-Sys-Cpu>=0:${PORTSDIR}/devel/p5-Sys-Cpu USE_GITHUB= yes GH_ACCOUNT= csmith-project