View | Details | Raw Unified | Return to bug 244552 | Differences between
and this patch

Collapse All | Expand All

(-)./Makefile (-11 / +13 lines)
Lines 1-7 Link Here
1
# $FreeBSD: head/devel/range-v3/Makefile 514726 2019-10-18 15:48:52Z tcberner $
1
# $FreeBSD: head/devel/range-v3/Makefile 488341 2018-12-25 20:25:39Z tcberner $
2
2
3
PORTNAME=	range-v3
3
PORTNAME=	range-v3
4
DISTVERSION=	0.9.0
4
DISTVERSION=	0.10.0
5
CATEGORIES=	devel
5
CATEGORIES=	devel
6
6
7
MAINTAINER=	henry.hu.sh@gmail.com
7
MAINTAINER=	henry.hu.sh@gmail.com
Lines 13-29 Link Here
13
USES=		cmake
13
USES=		cmake
14
USE_GITHUB=	yes
14
USE_GITHUB=	yes
15
GH_ACCOUNT=	ericniebler
15
GH_ACCOUNT=	ericniebler
16
NO_BUILD=	yes
17
NO_ARCH=	yes
16
NO_ARCH=	yes
18
17
19
do-install: # workaround: delete when https://github.com/ericniebler/range-v3/issues/781 is fixed, otherwise cmake builds test executables during install
18
OPTIONS_DEFINE=	TESTS EXAMPLES
20
	cd ${WRKSRC}/include && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/
19
OPTIONS_DEFAULT=
21
	@${RM} ${STAGEDIR}${PREFIX}/include/module.modulemap
22
20
23
do-test: # tests fail on 10: undefined reference to `operator delete(void*, unsigned int)' (c++14 destructor is missing)
21
# See issue 1321, 1441, etc.
24
	@cd ${CONFIGURE_WRKSRC} && \
22
TESTS_DESC=	Build tests (fail with clang 9.0)
25
		${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} ${WRKSRC} && \
23
EXAMPLES_DESC=	Build examples
26
		${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} && \
24
27
		${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test
25
TESTS_CMAKE_BOOL=	RANGE_V3_TESTS
26
EXAMPLES_CMAKE_BOOL=	RANGE_V3_EXAMPLES
27
28
post-install:
29
	@${RM} ${STAGEDIR}${PREFIX}/include/module.modulemap
28
30
29
.include <bsd.port.mk>
31
.include <bsd.port.mk>
(-)./distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1571275898
1
TIMESTAMP = 1583123384
2
SHA256 (ericniebler-range-v3-0.9.0_GH0.tar.gz) = b76c571aa2b0047d94daf46e51c6bb7609618134df0770eab5ec4ad275fcba3b
2
SHA256 (ericniebler-range-v3-0.10.0_GH0.tar.gz) = 5a1cd44e7315d0e8dcb1eee4df6802221456a9d1dbeac53da02ac7bd4ea150cd
3
SIZE (ericniebler-range-v3-0.9.0_GH0.tar.gz) = 515514
3
SIZE (ericniebler-range-v3-0.10.0_GH0.tar.gz) = 525765
(-)./pkg-plist (+7 lines)
Lines 42-47 Link Here
42
include/range/v3/algorithm/aux_/sort_n_with_buffer.hpp
42
include/range/v3/algorithm/aux_/sort_n_with_buffer.hpp
43
include/range/v3/algorithm/aux_/upper_bound_n.hpp
43
include/range/v3/algorithm/aux_/upper_bound_n.hpp
44
include/range/v3/algorithm/binary_search.hpp
44
include/range/v3/algorithm/binary_search.hpp
45
include/range/v3/algorithm/contains.hpp
45
include/range/v3/algorithm/copy.hpp
46
include/range/v3/algorithm/copy.hpp
46
include/range/v3/algorithm/copy_backward.hpp
47
include/range/v3/algorithm/copy_backward.hpp
47
include/range/v3/algorithm/copy_if.hpp
48
include/range/v3/algorithm/copy_if.hpp
Lines 124-130 Link Here
124
include/range/v3/data.hpp
125
include/range/v3/data.hpp
125
include/range/v3/detail/adl_get.hpp
126
include/range/v3/detail/adl_get.hpp
126
include/range/v3/detail/config.hpp
127
include/range/v3/detail/config.hpp
128
include/range/v3/detail/disable_warnings.hpp
127
include/range/v3/detail/range_access.hpp
129
include/range/v3/detail/range_access.hpp
130
include/range/v3/detail/reenable_warnings.hpp
128
include/range/v3/detail/satisfy_boost_range.hpp
131
include/range/v3/detail/satisfy_boost_range.hpp
129
include/range/v3/detail/variant.hpp
132
include/range/v3/detail/variant.hpp
130
include/range/v3/detail/with_braced_init_args.hpp
133
include/range/v3/detail/with_braced_init_args.hpp
Lines 237-242 Link Here
237
include/range/v3/view/any_view.hpp
240
include/range/v3/view/any_view.hpp
238
include/range/v3/view/bounded.hpp
241
include/range/v3/view/bounded.hpp
239
include/range/v3/view/c_str.hpp
242
include/range/v3/view/c_str.hpp
243
include/range/v3/view/cache1.hpp
240
include/range/v3/view/cartesian_product.hpp
244
include/range/v3/view/cartesian_product.hpp
241
include/range/v3/view/chunk.hpp
245
include/range/v3/view/chunk.hpp
242
include/range/v3/view/common.hpp
246
include/range/v3/view/common.hpp
Lines 306-308 Link Here
306
include/range/v3/view_interface.hpp
310
include/range/v3/view_interface.hpp
307
include/std/detail/associated_types.hpp
311
include/std/detail/associated_types.hpp
308
include/std/iterator
312
include/std/iterator
313
lib/cmake/range-v3/range-v3-config-version.cmake
314
lib/cmake/range-v3/range-v3-config.cmake
315
lib/cmake/range-v3/range-v3-targets.cmake

Return to bug 244552