From owner-svn-ports-all@freebsd.org Wed Oct 10 07:28:59 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 8F42C10CB2A2; Wed, 10 Oct 2018 07:28:59 +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 432A3725A5; Wed, 10 Oct 2018 07:28:59 +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 399E51DC80; Wed, 10 Oct 2018 07:28:59 +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 w9A7Sxax049286; Wed, 10 Oct 2018 07:28:59 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9A7Swpx049280; Wed, 10 Oct 2018 07:28:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810100728.w9A7Swpx049280@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 10 Oct 2018 07:28:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481699 - in head/math: . mfem X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . mfem X-SVN-Commit-Revision: 481699 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: Wed, 10 Oct 2018 07:28:59 -0000 Author: yuri Date: Wed Oct 10 07:28:57 2018 New Revision: 481699 URL: https://svnweb.freebsd.org/changeset/ports/481699 Log: New port: math/mfem: Lightweight, general, scalable C++ library for finite element methods Added: head/math/mfem/ head/math/mfem/Makefile (contents, props changed) head/math/mfem/distinfo (contents, props changed) head/math/mfem/pkg-descr (contents, props changed) head/math/mfem/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Oct 10 06:51:41 2018 (r481698) +++ head/math/Makefile Wed Oct 10 07:28:57 2018 (r481699) @@ -342,6 +342,7 @@ SUBDIR += metis SUBDIR += metis-edf SUBDIR += metis4 + SUBDIR += mfem SUBDIR += mingw32-libgmp SUBDIR += minisat SUBDIR += miracl Added: head/math/mfem/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/mfem/Makefile Wed Oct 10 07:28:57 2018 (r481699) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= mfem +DISTVERSIONPREFIX= v +DISTVERSION= 3.4 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Lightweight, general, scalable C++ library for finite element methods + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake:outsource +USE_GITHUB= yes +USE_LDCONFIG= yes + +CMAKE_ON= BUILD_SHARED_LIBS + +OPTIONS_DEFINE= MPI + +MPI_CMAKE_BOOL= MFEM_USE_MPI +MPI_BROKEN= see https://github.com/mfem/mfem/issues/622 + +.include Added: head/math/mfem/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/mfem/distinfo Wed Oct 10 07:28:57 2018 (r481699) @@ -0,0 +1,3 @@ +TIMESTAMP = 1539155589 +SHA256 (mfem-mfem-v3.4_GH0.tar.gz) = cec86054e1cf7c98b7999221e7caa5b7f280ec3363c66cf3ed54e0cbb94fa441 +SIZE (mfem-mfem-v3.4_GH0.tar.gz) = 4595868 Added: head/math/mfem/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/mfem/pkg-descr Wed Oct 10 07:28:57 2018 (r481699) @@ -0,0 +1,8 @@ +Features: +* Arbitrary high-order finite element meshes and spaces. +* Wide variety of finite element discretization approaches. +* Conforming and nonconforming adaptive mesh refinement. +* Scalable to hundreds of thousands of cores. +* etc. + +WWW: http://mfem.org/ Added: head/math/mfem/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/mfem/pkg-plist Wed Oct 10 07:28:57 2018 (r481699) @@ -0,0 +1,109 @@ +include/mfem-performance.hpp +include/mfem.hpp +include/mfem/config/config.hpp +include/mfem/config/tconfig.hpp +include/mfem/fem/bilinearform.hpp +include/mfem/fem/bilininteg.hpp +include/mfem/fem/coefficient.hpp +include/mfem/fem/conduitdatacollection.hpp +include/mfem/fem/datacollection.hpp +include/mfem/fem/eltrans.hpp +include/mfem/fem/estimators.hpp +include/mfem/fem/fe.hpp +include/mfem/fem/fe_coll.hpp +include/mfem/fem/fem.hpp +include/mfem/fem/fespace.hpp +include/mfem/fem/geom.hpp +include/mfem/fem/gridfunc.hpp +include/mfem/fem/hybridization.hpp +include/mfem/fem/intrules.hpp +include/mfem/fem/linearform.hpp +include/mfem/fem/lininteg.hpp +include/mfem/fem/nonlinearform.hpp +include/mfem/fem/nonlininteg.hpp +include/mfem/fem/pbilinearform.hpp +include/mfem/fem/pfespace.hpp +include/mfem/fem/pgridfunc.hpp +include/mfem/fem/plinearform.hpp +include/mfem/fem/pnonlinearform.hpp +include/mfem/fem/sidredatacollection.hpp +include/mfem/fem/staticcond.hpp +include/mfem/fem/tbilinearform.hpp +include/mfem/fem/tbilininteg.hpp +include/mfem/fem/tcoefficient.hpp +include/mfem/fem/teltrans.hpp +include/mfem/fem/tevaluator.hpp +include/mfem/fem/tfe.hpp +include/mfem/fem/tfespace.hpp +include/mfem/fem/tintrules.hpp +include/mfem/fem/tmop.hpp +include/mfem/general/array.hpp +include/mfem/general/binaryio.hpp +include/mfem/general/communication.hpp +include/mfem/general/error.hpp +include/mfem/general/globals.hpp +include/mfem/general/gzstream.hpp +include/mfem/general/hash.hpp +include/mfem/general/isockstream.hpp +include/mfem/general/mem_alloc.hpp +include/mfem/general/optparser.hpp +include/mfem/general/osockstream.hpp +include/mfem/general/sets.hpp +include/mfem/general/socketstream.hpp +include/mfem/general/sort_pairs.hpp +include/mfem/general/stable3d.hpp +include/mfem/general/table.hpp +include/mfem/general/tassign.hpp +include/mfem/general/text.hpp +include/mfem/general/tic_toc.hpp +include/mfem/general/version.hpp +include/mfem/linalg/blockmatrix.hpp +include/mfem/linalg/blockoperator.hpp +include/mfem/linalg/blockvector.hpp +include/mfem/linalg/complex_operator.hpp +include/mfem/linalg/densemat.hpp +include/mfem/linalg/handle.hpp +include/mfem/linalg/hypre.hpp +include/mfem/linalg/hypre_parcsr.hpp +include/mfem/linalg/invariants.hpp +include/mfem/linalg/linalg.hpp +include/mfem/linalg/matrix.hpp +include/mfem/linalg/ode.hpp +include/mfem/linalg/operator.hpp +include/mfem/linalg/petsc.hpp +include/mfem/linalg/solvers.hpp +include/mfem/linalg/sparsemat.hpp +include/mfem/linalg/sparsesmoothers.hpp +include/mfem/linalg/strumpack.hpp +include/mfem/linalg/sundials.hpp +include/mfem/linalg/superlu.hpp +include/mfem/linalg/tlayout.hpp +include/mfem/linalg/tmatrix.hpp +include/mfem/linalg/ttensor.hpp +include/mfem/linalg/vector.hpp +include/mfem/mesh/element.hpp +include/mfem/mesh/hexahedron.hpp +include/mfem/mesh/mesh.hpp +include/mfem/mesh/mesh_headers.hpp +include/mfem/mesh/mesh_operators.hpp +include/mfem/mesh/mesquite.hpp +include/mfem/mesh/ncmesh.hpp +include/mfem/mesh/nurbs.hpp +include/mfem/mesh/pmesh.hpp +include/mfem/mesh/pncmesh.hpp +include/mfem/mesh/point.hpp +include/mfem/mesh/pumi.hpp +include/mfem/mesh/quadrilateral.hpp +include/mfem/mesh/segment.hpp +include/mfem/mesh/tetrahedron.hpp +include/mfem/mesh/tmesh.hpp +include/mfem/mesh/triangle.hpp +include/mfem/mesh/vertex.hpp +include/mfem/mfem-performance.hpp +include/mfem/mfem.hpp +lib/cmake/mfem/MFEMConfig.cmake +lib/cmake/mfem/MFEMConfigVersion.cmake +lib/cmake/mfem/MFEMTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/mfem/MFEMTargets.cmake +lib/libmfem.so +lib/libmfem.so.3.4.0