diff --git a/math/heyoka/Makefile b/math/heyoka/Makefile index e588a245c2da..b46226c5b999 100644 --- a/math/heyoka/Makefile +++ b/math/heyoka/Makefile @@ -1,32 +1,33 @@ PORTNAME= heyoka DISTVERSIONPREFIX= v DISTVERSION= 0.14.0 +PORTREVISION= 1 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org COMMENT= C++ library for ODE integration via Taylor's method and LLVM LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= llvm${LLVM_VERSION}>0:devel/llvm${LLVM_VERSION} LIB_DEPENDS= libboost_serialization.so:devel/boost-libs \ libfmt.so:devel/libfmt \ libmp++.so:math/mppp \ libsleef.so:math/sleef \ libspdlog.so:devel/spdlog TEST_DEPENDS= xtensor>0:math/xtensor USES= cmake:testing compiler:c++17-lang USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= bluescarni LLVM_VERSION= 12 CMAKE_ON= HEYOKA_WITH_MPPP HEYOKA_WITH_SLEEF CMAKE_ARGS= -DFREEBSD_LLVM_VERSION=${LLVM_VERSION} CMAKE_TESTING_ON= HEYOKA_BUILD_TESTS # tests can't be compiled: xtensor-blas isn't yet ported .include diff --git a/math/mppp/Makefile b/math/mppp/Makefile index a2297d57e3ca..ca6389d6f3aa 100644 --- a/math/mppp/Makefile +++ b/math/mppp/Makefile @@ -1,42 +1,41 @@ PORTNAME= mppp DISTVERSIONPREFIX= v -DISTVERSION= 0.24-61 -DISTVERSIONSUFFIX= -gb9941621 +DISTVERSION= 0.26 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org COMMENT= Multiprecision for modern C++ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libarb.so:math/arb \ libflint.so:math/flint2 \ libgmp.so:math/gmp \ libmpc.so:math/mpc \ libmpfr.so:math/mpfr USES= cmake compiler:c++14-lang USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= bluescarni CMAKE_ON= MPPP_WITH_ARB MPPP_WITH_MPC MPPP_WITH_MPFR MPPP_ENABLE_IPO CMAKE_OFF= MPPP_WITH_QUADMATH # no quad-precision fp type on FreeBSD, requested __float128 reinstantiation, bug#238129 TEST_ARGS= -DMPPP_BUILD_TESTS=ON -DMPPP_WITH_QUADMATH=OFF BENCHMARK_ARGS= -DMPPP_BUILD_BENCHMARKS=ON -DMPPP_BENCHMARK_FLINT=ON -DMPPP_BENCHMARK_BOOST=ON do-test: @cd ${BUILD_WRKSRC} && \ ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} ${TEST_ARGS} ${CMAKE_SOURCE_PATH} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test benchmarks: build # additionally depends on boost-libs @cd ${BUILD_WRKSRC} && \ ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} ${BENCHMARK_ARGS} ${CMAKE_SOURCE_PATH} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} benchmark .include diff --git a/math/mppp/distinfo b/math/mppp/distinfo index 804f28853a29..1038cb8d4132 100644 --- a/math/mppp/distinfo +++ b/math/mppp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1630373275 -SHA256 (bluescarni-mppp-v0.24-61-gb9941621_GH0.tar.gz) = 397a3b2109ee663c02b1974b1911659285796026bfc1ecf5b7c63bd26a30d7b4 -SIZE (bluescarni-mppp-v0.24-61-gb9941621_GH0.tar.gz) = 1894624 +TIMESTAMP = 1630814059 +SHA256 (bluescarni-mppp-v0.26_GH0.tar.gz) = 4dbfa68802d9a1365eda884f085418afc147d01b7a928e8333e4dcc1c3b3ce9e +SIZE (bluescarni-mppp-v0.26_GH0.tar.gz) = 1894208 diff --git a/math/mppp/pkg-plist b/math/mppp/pkg-plist index 935174592453..1cd54267cbc0 100644 --- a/math/mppp/pkg-plist +++ b/math/mppp/pkg-plist @@ -1,34 +1,34 @@ include/mp++/complex.hpp include/mp++/complex128.hpp include/mp++/concepts.hpp include/mp++/config.hpp include/mp++/detail/gmp.hpp include/mp++/detail/integer_literals.hpp include/mp++/detail/mpc.hpp include/mp++/detail/mpfr.hpp include/mp++/detail/parse_complex.hpp include/mp++/detail/rational_literals.hpp include/mp++/detail/real128_literal.hpp include/mp++/detail/real_literals.hpp include/mp++/detail/type_traits.hpp include/mp++/detail/utils.hpp include/mp++/detail/visibility.hpp include/mp++/exceptions.hpp include/mp++/extra/pybind11.hpp include/mp++/fwd.hpp include/mp++/integer.hpp include/mp++/mp++.hpp include/mp++/rational.hpp include/mp++/real.hpp include/mp++/real128.hpp include/mp++/type_name.hpp lib/cmake/mp++/Findmp++_GMP.cmake lib/cmake/mp++/Findmp++_MPC.cmake lib/cmake/mp++/Findmp++_MPFR.cmake lib/cmake/mp++/mp++-config-version.cmake lib/cmake/mp++/mp++-config.cmake lib/cmake/mp++/mp++_export-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/mp++/mp++_export.cmake lib/libmp++.so -lib/libmp++.so.11 -lib/libmp++.so.11.0 +lib/libmp++.so.12 +lib/libmp++.so.12.0 diff --git a/math/obake/Makefile b/math/obake/Makefile index 2f5c72b45ccb..ec99f706b204 100644 --- a/math/obake/Makefile +++ b/math/obake/Makefile @@ -1,31 +1,32 @@ PORTNAME= obake DISTVERSIONPREFIX= v DISTVERSION= 0.7.0 +PORTREVISION= 1 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org COMMENT= C++ library for the symbolic manipulation of sparse polynomials & co LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libabsl_base.so:devel/abseil \ libboost_serialization.so:devel/boost-libs \ libfmt.so:devel/libfmt \ libgmp.so:math/gmp \ libmp++.so:math/mppp \ libmpc.so:math/mpc \ libmpfr.so:math/mpfr \ libtbb.so:devel/onetbb USES= cmake:testing compiler:c++17-lang # need compiler:c++20-lang USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= bluescarni CXXFLAGS+= -DBOOST_STACKTRACE_GNU_SOURCE_NOT_REQUIRED CMAKE_TESTING_ON= OBAKE_BUILD_TESTS .include diff --git a/math/py-heyoka/Makefile b/math/py-heyoka/Makefile index 8e356ae2261f..29ea55c91cc4 100644 --- a/math/py-heyoka/Makefile +++ b/math/py-heyoka/Makefile @@ -1,34 +1,35 @@ PORTNAME= heyoka DISTVERSIONPREFIX= v DISTVERSION= 0.14.0 +PORTREVISION= 1 CATEGORIES= math PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org COMMENT= Python library for ODE integration via Taylor's method and LLVM LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= pybind11>0:devel/pybind11 LIB_DEPENDS= libboost_serialization.so:devel/boost-libs \ libfmt.so:devel/libfmt \ libheyoka.so:math/heyoka \ libmp++.so:math/mppp \ libspdlog.so:devel/spdlog RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}cloudpickle>0:devel/py-cloudpickle@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mpmath>0:math/py-mpmath@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sympy>0:math/py-sympy@${PY_FLAVOR} USES= cmake compiler:c++17-lang python:3.7+ USE_PYTHON= flavors USE_GITHUB= yes GH_ACCOUNT= bluescarni GH_PROJECT= ${PORTNAME}.py CMAKE_ON= HEYOKA_PY_ENABLE_IPO CMAKE_ARGS= -DFREEBSD_PYTHON_DISTVERSION=${PYTHON_DISTVERSION} .include