From owner-svn-ports-head@freebsd.org Wed Sep 12 16:01:04 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 14D651097469; Wed, 12 Sep 2018 16:01:04 +0000 (UTC) (envelope-from brooks@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 BEC8E88A4D; Wed, 12 Sep 2018 16:01:03 +0000 (UTC) (envelope-from brooks@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 B9AFCA2D; Wed, 12 Sep 2018 16:01:03 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8CG13KC054562; Wed, 12 Sep 2018 16:01:03 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8CG13m2054561; Wed, 12 Sep 2018 16:01:03 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201809121601.w8CG13m2054561@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Wed, 12 Sep 2018 16:01:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479612 - head/math/eprover X-SVN-Group: ports-head X-SVN-Commit-Author: brooks X-SVN-Commit-Paths: head/math/eprover X-SVN-Commit-Revision: 479612 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.27 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: Wed, 12 Sep 2018 16:01:04 -0000 Author: brooks Date: Wed Sep 12 16:01:03 2018 New Revision: 479612 URL: https://svnweb.freebsd.org/changeset/ports/479612 Log: Update llvm dependency (for 10.x support) to llvm60. PR: 231289 Approved by: Greg V (maintainer) Sponsored by: DARPA, AFRL Modified: head/math/eprover/Makefile Modified: head/math/eprover/Makefile ============================================================================== --- head/math/eprover/Makefile Wed Sep 12 15:08:05 2018 (r479611) +++ head/math/eprover/Makefile Wed Sep 12 16:01:03 2018 (r479612) @@ -3,6 +3,7 @@ PORTNAME= eprover DISTVERSIONPREFIX= E- DISTVERSION= 2.0 +PORTREVISION= 1 CATEGORIES= math MAINTAINER= greg@unrelenting.technology @@ -39,10 +40,10 @@ post-install: .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 # the default compiler hangs on 10 -BUILD_DEPENDS+= clang40:devel/llvm40 -RUN_DEPENDS+= clang40:devel/llvm40 -CC= clang40 -CXX= clang++40 +BUILD_DEPENDS+= clang60:devel/llvm60 +RUN_DEPENDS+= clang60:devel/llvm60 +CC= clang60 +CXX= clang++60 .endif .include