diff --git a/math/heyoka/Makefile b/math/heyoka/Makefile index 949201292461..f5bd93fa69a9 100644 --- a/math/heyoka/Makefile +++ b/math/heyoka/Makefile @@ -1,37 +1,37 @@ PORTNAME= heyoka DISTVERSIONPREFIX= v DISTVERSION= 0.19.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org COMMENT= C++ library for ODE integration via Taylor's method and LLVM WWW= https://bluescarni.github.io/heyoka/ 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 \ libtbb.so:devel/onetbb \ libsleef.so:math/sleef \ libspdlog.so:devel/spdlog RUN_DEPENDS= llvm${LLVM_VERSION}>0:devel/llvm${LLVM_VERSION} TEST_DEPENDS= xtensor>0:math/xtensor \ xtensor-blas>0:math/xtensor-blas 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 # 3 tests fail, see https://github.com/bluescarni/heyoka/issues/228, also #229 and #230 .include diff --git a/math/mppp/Makefile b/math/mppp/Makefile index 58b9edfeb189..debe81d0003f 100644 --- a/math/mppp/Makefile +++ b/math/mppp/Makefile @@ -1,43 +1,42 @@ PORTNAME= mppp DISTVERSIONPREFIX= v -DISTVERSION= 0.26 -PORTREVISION= 1 +DISTVERSION= 0.27 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org COMMENT= Multiprecision for modern C++ WWW= https://github.com/bluescarni/mppp 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 1038cb8d4132..fe3efe8b6d7a 100644 --- a/math/mppp/distinfo +++ b/math/mppp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1630814059 -SHA256 (bluescarni-mppp-v0.26_GH0.tar.gz) = 4dbfa68802d9a1365eda884f085418afc147d01b7a928e8333e4dcc1c3b3ce9e -SIZE (bluescarni-mppp-v0.26_GH0.tar.gz) = 1894208 +TIMESTAMP = 1666507180 +SHA256 (bluescarni-mppp-v0.27_GH0.tar.gz) = a1e04f6605b3242d4361742159cf5ab273162fd7c105c2743a9bebcf44c846c3 +SIZE (bluescarni-mppp-v0.27_GH0.tar.gz) = 1904903 diff --git a/math/mppp/pkg-plist b/math/mppp/pkg-plist index 1cd54267cbc0..651cba1a0de8 100644 --- a/math/mppp/pkg-plist +++ b/math/mppp/pkg-plist @@ -1,34 +1,35 @@ include/mp++/complex.hpp include/mp++/complex128.hpp include/mp++/concepts.hpp include/mp++/config.hpp +include/mp++/detail/fmt.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.12 -lib/libmp++.so.12.0 +lib/libmp++.so.14 +lib/libmp++.so.14.0 diff --git a/math/obake/Makefile b/math/obake/Makefile index 120de28d93ed..3e797c4e8d4f 100644 --- a/math/obake/Makefile +++ b/math/obake/Makefile @@ -1,33 +1,33 @@ PORTNAME= obake DISTVERSIONPREFIX= v DISTVERSION= 0.7.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org COMMENT= C++ library for the symbolic manipulation of sparse polynomials & co WWW= https://bluescarni.github.io/obake/ 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 e40c2a9995f3..ab095ee7d90b 100644 --- a/math/py-heyoka/Makefile +++ b/math/py-heyoka/Makefile @@ -1,47 +1,47 @@ PORTNAME= heyoka DISTVERSIONPREFIX= v DISTVERSION= 0.19.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org COMMENT= Python library for ODE integration via Taylor's method and LLVM WWW= https://bluescarni.github.io/heyoka.py/ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= pybind11>0:devel/pybind11 \ ${PYNUMPY} LIB_DEPENDS= libboost_serialization.so:devel/boost-libs \ libfmt.so:devel/libfmt \ libheyoka.so:math/heyoka \ libmp++.so:math/mppp \ libtbb.so:devel/onetbb \ 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} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${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:R} TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} do-test: # testsuite based on instructions in https://bluescarni.github.io/heyoka.py/install.html#verifying-the-installation @cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -c "import heyoka; heyoka.test.run_test_suite();" # integrate and plot an example @cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${FILESDIR}/example-restricted-three-body-problem.py .include