Date: Sun, 8 Mar 2020 08:32:16 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528005 - head/devel/range-v3 Message-ID: <202003080832.0288WGvM049454@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Sun Mar 8 08:32:15 2020 New Revision: 528005 URL: https://svnweb.freebsd.org/changeset/ports/528005 Log: devel/range-v3: update to 0.10.0 PR: 244552 Submitted by: Henry Hu <henry.hu.sh@gmail.com> (maintainer) Modified: head/devel/range-v3/Makefile head/devel/range-v3/distinfo head/devel/range-v3/pkg-plist Modified: head/devel/range-v3/Makefile ============================================================================== --- head/devel/range-v3/Makefile Sun Mar 8 08:25:47 2020 (r528004) +++ head/devel/range-v3/Makefile Sun Mar 8 08:32:15 2020 (r528005) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= range-v3 -DISTVERSION= 0.9.0 +DISTVERSION= 0.10.0 CATEGORIES= devel MAINTAINER= henry.hu.sh@gmail.com @@ -13,17 +13,19 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cmake USE_GITHUB= yes GH_ACCOUNT= ericniebler -NO_BUILD= yes NO_ARCH= yes -do-install: # workaround: delete when https://github.com/ericniebler/range-v3/issues/781 is fixed, otherwise cmake builds test executables during install - cd ${WRKSRC}/include && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/ - @${RM} ${STAGEDIR}${PREFIX}/include/module.modulemap +OPTIONS_DEFINE= TESTS EXAMPLES +OPTIONS_DEFAULT= -do-test: # tests fail on 10: undefined reference to `operator delete(void*, unsigned int)' (c++14 destructor is missing) - @cd ${CONFIGURE_WRKSRC} && \ - ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} ${WRKSRC} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test +# See issue 1321, 1441, etc. +TESTS_DESC= Build tests (fail with clang 9.0) +EXAMPLES_DESC= Build examples + +TESTS_CMAKE_BOOL= RANGE_V3_TESTS +EXAMPLES_CMAKE_BOOL= RANGE_V3_EXAMPLES + +post-install: + @${RM} ${STAGEDIR}${PREFIX}/include/module.modulemap .include <bsd.port.mk> Modified: head/devel/range-v3/distinfo ============================================================================== --- head/devel/range-v3/distinfo Sun Mar 8 08:25:47 2020 (r528004) +++ head/devel/range-v3/distinfo Sun Mar 8 08:32:15 2020 (r528005) @@ -1,3 +1,3 @@ -TIMESTAMP = 1571275898 -SHA256 (ericniebler-range-v3-0.9.0_GH0.tar.gz) = b76c571aa2b0047d94daf46e51c6bb7609618134df0770eab5ec4ad275fcba3b -SIZE (ericniebler-range-v3-0.9.0_GH0.tar.gz) = 515514 +TIMESTAMP = 1583123384 +SHA256 (ericniebler-range-v3-0.10.0_GH0.tar.gz) = 5a1cd44e7315d0e8dcb1eee4df6802221456a9d1dbeac53da02ac7bd4ea150cd +SIZE (ericniebler-range-v3-0.10.0_GH0.tar.gz) = 525765 Modified: head/devel/range-v3/pkg-plist ============================================================================== --- head/devel/range-v3/pkg-plist Sun Mar 8 08:25:47 2020 (r528004) +++ head/devel/range-v3/pkg-plist Sun Mar 8 08:32:15 2020 (r528005) @@ -42,6 +42,7 @@ include/range/v3/algorithm/aux_/partition_point_n.hpp include/range/v3/algorithm/aux_/sort_n_with_buffer.hpp include/range/v3/algorithm/aux_/upper_bound_n.hpp include/range/v3/algorithm/binary_search.hpp +include/range/v3/algorithm/contains.hpp include/range/v3/algorithm/copy.hpp include/range/v3/algorithm/copy_backward.hpp include/range/v3/algorithm/copy_if.hpp @@ -124,7 +125,9 @@ include/range/v3/core.hpp include/range/v3/data.hpp include/range/v3/detail/adl_get.hpp include/range/v3/detail/config.hpp +include/range/v3/detail/disable_warnings.hpp include/range/v3/detail/range_access.hpp +include/range/v3/detail/reenable_warnings.hpp include/range/v3/detail/satisfy_boost_range.hpp include/range/v3/detail/variant.hpp include/range/v3/detail/with_braced_init_args.hpp @@ -237,6 +240,7 @@ include/range/v3/view/all.hpp include/range/v3/view/any_view.hpp include/range/v3/view/bounded.hpp include/range/v3/view/c_str.hpp +include/range/v3/view/cache1.hpp include/range/v3/view/cartesian_product.hpp include/range/v3/view/chunk.hpp include/range/v3/view/common.hpp @@ -306,3 +310,6 @@ include/range/v3/view_facade.hpp include/range/v3/view_interface.hpp include/std/detail/associated_types.hpp include/std/iterator +lib/cmake/range-v3/range-v3-config-version.cmake +lib/cmake/range-v3/range-v3-config.cmake +lib/cmake/range-v3/range-v3-targets.cmake
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003080832.0288WGvM049454>