From owner-svn-ports-all@freebsd.org Thu Oct 4 20:44:54 2018 Return-Path: Delivered-To: svn-ports-all@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 E05BF10BA3FF; Thu, 4 Oct 2018 20:44:53 +0000 (UTC) (envelope-from yuri@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 8307F843A2; Thu, 4 Oct 2018 20:44:53 +0000 (UTC) (envelope-from yuri@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 6F752364D; Thu, 4 Oct 2018 20:44:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w94Kiru0060307; Thu, 4 Oct 2018 20:44:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w94KiqU4060303; Thu, 4 Oct 2018 20:44:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810042044.w94KiqU4060303@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 4 Oct 2018 20:44:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481250 - in head: cad/elmerfem math/arpack-ng math/arpack-ng-mpich X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head: cad/elmerfem math/arpack-ng math/arpack-ng-mpich X-SVN-Commit-Revision: 481250 X-SVN-Commit-Repository: ports 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.27 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: Thu, 04 Oct 2018 20:44:54 -0000 Author: yuri Date: Thu Oct 4 20:44:52 2018 New Revision: 481250 URL: https://svnweb.freebsd.org/changeset/ports/481250 Log: math/arpack-ng: Update 3.5.0 -> 3.6.3 Port changes: * Remove the slave port math/arpack-ng-mpich: the MPI option is incremental and only adds a library * Permanently enable the MPI functionality: see above * Shorten the CONFLICTS statement * Install arpack.h which is forgotten by the project itself Bump cad/elmerfem: dependency there changed to math/arpack-ng. Deleted: head/math/arpack-ng-mpich/ Modified: head/cad/elmerfem/Makefile head/math/arpack-ng/Makefile head/math/arpack-ng/distinfo head/math/arpack-ng/pkg-plist Modified: head/cad/elmerfem/Makefile ============================================================================== --- head/cad/elmerfem/Makefile Thu Oct 4 20:33:04 2018 (r481249) +++ head/cad/elmerfem/Makefile Thu Oct 4 20:44:52 2018 (r481250) @@ -3,7 +3,7 @@ PORTNAME= elmerfem PORTVERSION= 8.3.20170524 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= cad science MAINTAINER= ports@FreeBSD.org @@ -11,7 +11,7 @@ COMMENT= ELMER FEM package LICENSE= GPLv2 -LIB_DEPENDS= libparpack.so:math/arpack-ng-mpich \ +LIB_DEPENDS= libparpack.so:math/arpack-ng \ libmpich.so:net/mpich USE_GITHUB= yes Modified: head/math/arpack-ng/Makefile ============================================================================== --- head/math/arpack-ng/Makefile Thu Oct 4 20:33:04 2018 (r481249) +++ head/math/arpack-ng/Makefile Thu Oct 4 20:44:52 2018 (r481250) @@ -2,33 +2,33 @@ # $FreeBSD$ PORTNAME= arpack-ng -DISTVERSION= 3.5.0 -PORTREVISION= 2 +DISTVERSION= 3.6.3 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org -COMMENT?= Revised Argand library for solving large-scale eigenvalue problems +COMMENT= Revised Argand library for solving large-scale eigenvalue problems LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING +LIB_DEPENDS= libmpich.so:net/mpich # MPI is incremental: it adds the libparpack.so lib, it is a candidate for a sub-package + USES= autoreconf:build fortran libtool USE_GITHUB= yes GH_ACCOUNT= opencollab GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-blas="${BLAS}" \ --with-lapack="${LAPACK}" \ - ${MPICH_ARG} -MPICH_ARG?= --disable-mpi + --enable-mpi \ + --disable-static LDFLAGS+= -L${LOCALBASE}/lib TEST_TARGET= check USE_LDCONFIG= yes +PORTDOCS= * PORTEXAMPLES= * -CONFLICTS= arpack-[0-9]* -CONFLICTS_INSTALL?= arpack-ng-mpich-3.* -SLAVEDIRS= math/arpack-ng-mpich +CONFLICTS_INSTALL= arpack OPTIONS_DEFINE= DOCS EXAMPLES OPTIONS_SUB= yes @@ -66,6 +66,9 @@ pre-configure: post-build: @cd ${WRKSRC}/SRC/.libs; ${STRIP_CMD} libarpack.so.*.* + +post-install: + ${INSTALL_DATA} ${WRKSRC}/arpack.h ${STAGEDIR}${PREFIX}/include post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/math/arpack-ng/distinfo ============================================================================== --- head/math/arpack-ng/distinfo Thu Oct 4 20:33:04 2018 (r481249) +++ head/math/arpack-ng/distinfo Thu Oct 4 20:44:52 2018 (r481250) @@ -1,3 +1,3 @@ -TIMESTAMP = 1518478796 -SHA256 (opencollab-arpack-ng-3.5.0_GH0.tar.gz) = 50f7a3e3aec2e08e732a487919262238f8504c3ef927246ec3495617dde81239 -SIZE (opencollab-arpack-ng-3.5.0_GH0.tar.gz) = 949853 +TIMESTAMP = 1538675107 +SHA256 (opencollab-arpack-ng-3.6.3_GH0.tar.gz) = 64f3551e5a2f8497399d82af3076b6a33bf1bc95fc46bbcabe66442db366f453 +SIZE (opencollab-arpack-ng-3.6.3_GH0.tar.gz) = 970355 Modified: head/math/arpack-ng/pkg-plist ============================================================================== --- head/math/arpack-ng/pkg-plist Thu Oct 4 20:33:04 2018 (r481249) +++ head/math/arpack-ng/pkg-plist Thu Oct 4 20:44:52 2018 (r481250) @@ -1,11 +1,10 @@ -lib/libarpack.a +include/arpack.h +include/arpack/debug.h +include/arpack/stat.h lib/libarpack.so lib/libarpack.so.2 lib/libarpack.so.2.0.0 +%%MPI%%lib/libparpack.so +%%MPI%%lib/libparpack.so.2 +%%MPI%%lib/libparpack.so.2.0.0 libdata/pkgconfig/arpack.pc -%%DOCS%%%%DOCSDIR%%/README -%%DOCS%%%%DOCSDIR%%/debug.doc -%%DOCS%%%%DOCSDIR%%/ex-complex.doc -%%DOCS%%%%DOCSDIR%%/ex-nonsym.doc -%%DOCS%%%%DOCSDIR%%/ex-sym.doc -%%DOCS%%%%DOCSDIR%%/stat.doc