Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Mar 2020 23:35:37 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r528460 - in head/math: . dune-typetree dune-typetree/files
Message-ID:  <202003142335.02ENZb6P034516@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Mar 14 23:35:37 2020
New Revision: 528460
URL: https://svnweb.freebsd.org/changeset/ports/528460

Log:
  New port: math/dune-typetree: DUNE framework: The TypeTree library

Added:
  head/math/dune-typetree/
  head/math/dune-typetree/Makefile   (contents, props changed)
  head/math/dune-typetree/distinfo   (contents, props changed)
  head/math/dune-typetree/files/
  head/math/dune-typetree/files/patch-CMakeLists.txt   (contents, props changed)
  head/math/dune-typetree/pkg-descr   (contents, props changed)
  head/math/dune-typetree/pkg-plist   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Sat Mar 14 22:48:45 2020	(r528459)
+++ head/math/Makefile	Sat Mar 14 23:35:37 2020	(r528460)
@@ -219,6 +219,7 @@
     SUBDIR += dune-grid
     SUBDIR += dune-istl
     SUBDIR += dune-localfunctions
+    SUBDIR += dune-typetree
     SUBDIR += dune-uggrid
     SUBDIR += e
     SUBDIR += ecos

Added: head/math/dune-typetree/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/dune-typetree/Makefile	Sat Mar 14 23:35:37 2020	(r528460)
@@ -0,0 +1,37 @@
+# $FreeBSD$
+
+PORTNAME=	dune-typetree
+DISTVERSIONPREFIX=	v
+DISTVERSION=	2.7.0rc2
+CATEGORIES=	math
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	DUNE framework: The TypeTree library
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE.md
+
+BUILD_DEPENDS=	dune-common>0:math/dune-common \
+		openmpi>0:net/openmpi \
+		vc>0:devel/vc
+
+USES=		cmake compiler:c++17-lang fortran pkgconfig
+USE_GITLAB=	yes
+
+GL_ACCOUNT=	core
+GL_SITE=	https://gitlab.dune-project.org
+GL_ACCOUNT=	staging
+GL_COMMIT=	b6427163a5ef45996471edad672ecab584aa490c
+
+NO_ARCH=	yes
+
+OPTIONS_DEFINE=	DOCS
+OPTIONS_SUB=	yes
+
+DOCS_CMAKE_BOOL=	FREEBSD_INSTALL_DOCS
+DOCS_BUILD_DEPENDS=	doxygen:devel/doxygen \
+			sphinx-build:textproc/py-sphinx
+
+PORTDOCS=	*
+
+.include <bsd.port.mk>

Added: head/math/dune-typetree/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/dune-typetree/distinfo	Sat Mar 14 23:35:37 2020	(r528460)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1584226725
+SHA256 (staging-dune-typetree-b6427163a5ef45996471edad672ecab584aa490c_GL0.tar.gz) = d8804a4a9de5ccf48f8ccb0025a5efd427aaa8ac26b0cd0595e6f3111069d4c2
+SIZE (staging-dune-typetree-b6427163a5ef45996471edad672ecab584aa490c_GL0.tar.gz) = 63452

Added: head/math/dune-typetree/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/dune-typetree/files/patch-CMakeLists.txt	Sat Mar 14 23:35:37 2020	(r528460)
@@ -0,0 +1,12 @@
+--- CMakeLists.txt.orig	2020-03-14 23:07:57 UTC
++++ CMakeLists.txt
+@@ -21,7 +21,9 @@ include(DuneMacros)
+ # start a dune project with information from dune.module
+ dune_project()
+ 
++if (FREEBSD_INSTALL_DOCS)
+ add_subdirectory(doc)
++endif()
+ add_subdirectory(dune)
+ add_subdirectory(test)
+ 

Added: head/math/dune-typetree/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/dune-typetree/pkg-descr	Sat Mar 14 23:35:37 2020	(r528460)
@@ -0,0 +1,10 @@
+dune-typetree is a module of the DUNE Numerics framework for solving partial
+differential equations (PDEs) with grid-based methods.
+
+dune-typetree is a template library for constructing and operating on statically
+typed trees of objects. It is based around the idea of defining loosely coupled,
+componentized algorithms. Component lookup happens through tag dispatch, making
+it very easy to extend and / or modify existing algorithms as well as
+constructing new algorithms for existing types of tree nodes.
+
+WWW: https://www.dune-project.org/

Added: head/math/dune-typetree/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/dune-typetree/pkg-plist	Sat Mar 14 23:35:37 2020	(r528460)
@@ -0,0 +1,31 @@
+include/dune/typetree/accumulate_static.hh
+include/dune/typetree/childextraction.hh
+include/dune/typetree/compositenode.hh
+include/dune/typetree/exceptions.hh
+include/dune/typetree/filteredcompositenode.hh
+include/dune/typetree/filters.hh
+include/dune/typetree/fixedcapacitystack.hh
+include/dune/typetree/generictransformationdescriptors.hh
+include/dune/typetree/leafnode.hh
+include/dune/typetree/nodeinterface.hh
+include/dune/typetree/nodetags.hh
+include/dune/typetree/pairtraversal.hh
+include/dune/typetree/powercompositenodetransformationtemplates.hh
+include/dune/typetree/powernode.hh
+include/dune/typetree/proxynode.hh
+include/dune/typetree/simpletransformationdescriptors.hh
+include/dune/typetree/transformation.hh
+include/dune/typetree/transformationutilities.hh
+include/dune/typetree/traversal.hh
+include/dune/typetree/traversalutilities.hh
+include/dune/typetree/treecontainer.hh
+include/dune/typetree/treepath.hh
+include/dune/typetree/typetraits.hh
+include/dune/typetree/typetree.hh
+include/dune/typetree/utility.hh
+include/dune/typetree/visitor.hh
+lib/cmake/dune-typetree/dune-typetree-config-version.cmake
+lib/cmake/dune-typetree/dune-typetree-config.cmake
+lib/dunecontrol/dune-typetree/dune.module
+libdata/pkgconfig/dune-typetree.pc
+%%DATADIR%%/config.h.cmake



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003142335.02ENZb6P034516>