From owner-svn-ports-head@freebsd.org Mon Aug 3 03:29:58 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4EBA23ADE9D; Mon, 3 Aug 2020 03:29:58 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BKk0Q0Smpz4Fsb; Mon, 3 Aug 2020 03:29:58 +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 E3A55E38F; Mon, 3 Aug 2020 03:29:57 +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 0733TvMX005374; Mon, 3 Aug 2020 03:29:57 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0733Tvu3005371; Mon, 3 Aug 2020 03:29:57 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202008030329.0733Tvu3005371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 3 Aug 2020 03:29:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544018 - head/science/highfive X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/highfive X-SVN-Commit-Revision: 544018 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Aug 2020 03:29:58 -0000 Author: yuri Date: Mon Aug 3 03:29:56 2020 New Revision: 544018 URL: https://svnweb.freebsd.org/changeset/ports/544018 Log: science/highfive: Update 2.2.1 -> 2.2.2 Reported by: portscout Modified: head/science/highfive/Makefile head/science/highfive/distinfo head/science/highfive/pkg-plist Modified: head/science/highfive/Makefile ============================================================================== --- head/science/highfive/Makefile Mon Aug 3 03:21:10 2020 (r544017) +++ head/science/highfive/Makefile Mon Aug 3 03:29:56 2020 (r544018) @@ -2,7 +2,7 @@ PORTNAME= highfive DISTVERSIONPREFIX= v -DISTVERSION= 2.2.1 +DISTVERSION= 2.2.2 CATEGORIES= science devel MAINTAINER= yuri@FreeBSD.org @@ -20,14 +20,14 @@ USE_GITHUB= yes GH_ACCOUNT= BlueBrain GH_PROJECT= HighFive -CMAKE_OFF= USE_BOOST HIGHFIVE_UNIT_TESTS HIGHFIVE_EXAMPLES +CMAKE_OFF= HIGHFIVE_USE_BOOST HIGHFIVE_UNIT_TESTS HIGHFIVE_EXAMPLES NO_BUILD= yes NO_ARCH= yes do-test: @cd ${BUILD_WRKSRC} && \ - ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DHIGHFIVE_UNIT_TESTS:BOOL=ON -DUSE_BOOST=ON -DUSE_EIGEN:BOOL=ON -DUSE_XTENSOR=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DHIGHFIVE_UNIT_TESTS:BOOL=ON -DHIGHFIVE_USE_BOOST=ON -DHIGHFIVE_USE_EIGEN:BOOL=ON -DHIGHFIVE_USE_XTENSOR=ON ${CMAKE_SOURCE_PATH} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test Modified: head/science/highfive/distinfo ============================================================================== --- head/science/highfive/distinfo Mon Aug 3 03:21:10 2020 (r544017) +++ head/science/highfive/distinfo Mon Aug 3 03:29:56 2020 (r544018) @@ -1,3 +1,3 @@ -TIMESTAMP = 1588143774 -SHA256 (BlueBrain-HighFive-v2.2.1_GH0.tar.gz) = 964c722ba916259209083564405ef9ce073b15e9412955fef9281576ea9c5b85 -SIZE (BlueBrain-HighFive-v2.2.1_GH0.tar.gz) = 101543 +TIMESTAMP = 1596425032 +SHA256 (BlueBrain-HighFive-v2.2.2_GH0.tar.gz) = 5bfb356705c6feb9d46a0507573028b289083ec4b4607a6f36187cb916f085a7 +SIZE (BlueBrain-HighFive-v2.2.2_GH0.tar.gz) = 106424 Modified: head/science/highfive/pkg-plist ============================================================================== --- head/science/highfive/pkg-plist Mon Aug 3 03:21:10 2020 (r544017) +++ head/science/highfive/pkg-plist Mon Aug 3 03:29:56 2020 (r544018) @@ -12,18 +12,18 @@ include/highfive/H5PropertyList.hpp include/highfive/H5Reference.hpp include/highfive/H5Selection.hpp include/highfive/H5Utility.hpp +include/highfive/H5Version.hpp include/highfive/bits/H5Annotate_traits.hpp include/highfive/bits/H5Annotate_traits_misc.hpp include/highfive/bits/H5Attribute_misc.hpp -include/highfive/bits/H5Converter_misc.hpp include/highfive/bits/H5ConverterEigen_misc.hpp +include/highfive/bits/H5Converter_misc.hpp include/highfive/bits/H5DataSet_misc.hpp include/highfive/bits/H5DataType_misc.hpp include/highfive/bits/H5Dataspace_misc.hpp include/highfive/bits/H5Exception_misc.hpp include/highfive/bits/H5FileDriver_misc.hpp include/highfive/bits/H5File_misc.hpp -include/highfive/bits/H5Group_misc.hpp include/highfive/bits/H5Iterables_misc.hpp include/highfive/bits/H5Node_traits.hpp include/highfive/bits/H5Node_traits_misc.hpp @@ -38,6 +38,8 @@ include/highfive/bits/H5Utils.hpp include/highfive/bits/H5_definitions.hpp include/highfive/h5easy_bits/H5Easy_Eigen.hpp include/highfive/h5easy_bits/H5Easy_misc.hpp +include/highfive/h5easy_bits/H5Easy_opencv.hpp +include/highfive/h5easy_bits/H5Easy_public.hpp include/highfive/h5easy_bits/H5Easy_scalar.hpp include/highfive/h5easy_bits/H5Easy_vector.hpp include/highfive/h5easy_bits/H5Easy_xtensor.hpp