From owner-svn-ports-head@freebsd.org Tue Sep 25 22:22:38 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 A63971091F1A; Tue, 25 Sep 2018 22:22:38 +0000 (UTC) (envelope-from danilo@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 5B8F283DFC; Tue, 25 Sep 2018 22:22:38 +0000 (UTC) (envelope-from danilo@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 566DB69FB; Tue, 25 Sep 2018 22:22:38 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8PMMc0A014408; Tue, 25 Sep 2018 22:22:38 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8PMMcTJ014407; Tue, 25 Sep 2018 22:22:38 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201809252222.w8PMMcTJ014407@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Tue, 25 Sep 2018 22:22:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480703 - head/net/openmpi2 X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: head/net/openmpi2 X-SVN-Commit-Revision: 480703 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: Tue, 25 Sep 2018 22:22:38 -0000 Author: danilo Date: Tue Sep 25 22:22:37 2018 New Revision: 480703 URL: https://svnweb.freebsd.org/changeset/ports/480703 Log: - Remove --enable-heterogeneous from CONFIGURE_ARGS, this option is broken and causing problems see https://github.com/open-mpi/ompi/blob/master/README#L1387 while here - Bump PORTREVISION - Move USES to the proper section to make portlint happy PR: 231697 Submitted by: russo AT bogodyn.org Modified: head/net/openmpi2/Makefile Modified: head/net/openmpi2/Makefile ============================================================================== --- head/net/openmpi2/Makefile Tue Sep 25 22:14:39 2018 (r480702) +++ head/net/openmpi2/Makefile Tue Sep 25 22:22:37 2018 (r480703) @@ -2,6 +2,7 @@ PORTNAME= openmpi PORTVERSION= 2.1.5 +PORTREVISION= 1 CATEGORIES= net parallel MASTER_SITES= http://www.open-mpi.org/software/ompi/v${PORTVERSION:R}/downloads/ PKGNAMESUFFIX= 2 @@ -22,11 +23,12 @@ LIB_DEPENDS= libhwloc.so:devel/hwloc \ libevent.so:devel/libevent \ libmunge.so:security/munge -HAS_CONFIGURE= yes -INSTALL_TARGET= install-strip # :keepla because port uses lt_dlopen USES= fortran gmake libtool:keepla localbase perl5 \ pkgconfig tar:bzip2 + +HAS_CONFIGURE= yes +INSTALL_TARGET= install-strip USE_PERL5= build MPIBASE?= mpi @@ -43,7 +45,6 @@ CONFIGURE_ARGS+= --prefix=${PREFIX}/${MPIDIR} \ --enable-mpi-fortran=usempi \ --enable-mpi-cxx \ --enable-cxx-exceptions \ - --enable-heterogeneous \ --enable-mpi-thread-multiple \ --with-libevent=external \ --enable-mca-no-build=verbs,btl_openib,oob_ud \