svn commit: r463616 - in head/devel: . range-v3

Yuri Victorovich yuri at FreeBSD.org
Mon Mar 5 02:23:17 UTC 2018


Author: yuri
Date: Mon Mar  5 02:23:16 2018
New Revision: 463616
URL: https://svnweb.freebsd.org/changeset/ports/463616

Log:
  New port: devel/range-v3: Experimental range library for C++11/14/17
  
  PR:		225725
  Submitted by:	Henry Hu <henry.hu.sh at gmail.com>
  Approved by:	tcberner (mentor, implicit)

Added:
  head/devel/range-v3/
  head/devel/range-v3/Makefile   (contents, props changed)
  head/devel/range-v3/distinfo   (contents, props changed)
  head/devel/range-v3/pkg-descr   (contents, props changed)
  head/devel/range-v3/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Mar  5 02:06:52 2018	(r463615)
+++ head/devel/Makefile	Mon Mar  5 02:23:16 2018	(r463616)
@@ -5208,6 +5208,7 @@
     SUBDIR += radare2
     SUBDIR += ragel
     SUBDIR += raknet
+    SUBDIR += range-v3
     SUBDIR += rapidjson
     SUBDIR += raylib
     SUBDIR += rbenv

Added: head/devel/range-v3/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/range-v3/Makefile	Mon Mar  5 02:23:16 2018	(r463616)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	range-v3
+DISTVERSION=	0.3.5
+CATEGORIES=	devel
+
+MAINTAINER=	henry.hu.sh at gmail.com
+COMMENT=	Experimental range library for C++11/14/17
+
+LICENSE=	BSL
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		cmake:outsource
+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
+
+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
+
+.include <bsd.port.mk>

Added: head/devel/range-v3/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/range-v3/distinfo	Mon Mar  5 02:23:16 2018	(r463616)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1518919183
+SHA256 (ericniebler-range-v3-0.3.5_GH0.tar.gz) = 0a0094b450fe17e1454468bef5b6bf60e73ef100aebe1663daf6fbdf2c353836
+SIZE (ericniebler-range-v3-0.3.5_GH0.tar.gz) = 445755

Added: head/devel/range-v3/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/range-v3/pkg-descr	Mon Mar  5 02:23:16 2018	(r463616)
@@ -0,0 +1,8 @@
+Range library for C++11/14/17. This code is the basis of a formal proposal to
+add range support to the C++ standard library.
+
+Range v3 is a library for the future C++. Not only does it work well with
+today's C++ -- move semantics, lambdas, automatically deduced types and all --
+it also anticipates tomorrow's C++ with Concepts.
+
+WWW: https://github.com/ericniebler/range-v3

Added: head/devel/range-v3/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/range-v3/pkg-plist	Mon Mar  5 02:23:16 2018	(r463616)
@@ -0,0 +1,233 @@
+include/meta/meta.hpp
+include/meta/meta_fwd.hpp
+include/range/v3/action.hpp
+include/range/v3/action/action.hpp
+include/range/v3/action/concepts.hpp
+include/range/v3/action/drop.hpp
+include/range/v3/action/drop_while.hpp
+include/range/v3/action/erase.hpp
+include/range/v3/action/insert.hpp
+include/range/v3/action/join.hpp
+include/range/v3/action/push_back.hpp
+include/range/v3/action/push_front.hpp
+include/range/v3/action/remove_if.hpp
+include/range/v3/action/reverse.hpp
+include/range/v3/action/shuffle.hpp
+include/range/v3/action/slice.hpp
+include/range/v3/action/sort.hpp
+include/range/v3/action/split.hpp
+include/range/v3/action/stable_sort.hpp
+include/range/v3/action/stride.hpp
+include/range/v3/action/take.hpp
+include/range/v3/action/take_while.hpp
+include/range/v3/action/transform.hpp
+include/range/v3/action/unique.hpp
+include/range/v3/algorithm.hpp
+include/range/v3/algorithm/adjacent_find.hpp
+include/range/v3/algorithm/all_of.hpp
+include/range/v3/algorithm/any_of.hpp
+include/range/v3/algorithm/aux_/equal_range_n.hpp
+include/range/v3/algorithm/aux_/lower_bound_n.hpp
+include/range/v3/algorithm/aux_/merge_n.hpp
+include/range/v3/algorithm/aux_/merge_n_with_buffer.hpp
+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/copy.hpp
+include/range/v3/algorithm/copy_backward.hpp
+include/range/v3/algorithm/copy_if.hpp
+include/range/v3/algorithm/copy_n.hpp
+include/range/v3/algorithm/count.hpp
+include/range/v3/algorithm/count_if.hpp
+include/range/v3/algorithm/equal.hpp
+include/range/v3/algorithm/equal_range.hpp
+include/range/v3/algorithm/fill.hpp
+include/range/v3/algorithm/fill_n.hpp
+include/range/v3/algorithm/find.hpp
+include/range/v3/algorithm/find_end.hpp
+include/range/v3/algorithm/find_first_of.hpp
+include/range/v3/algorithm/find_if.hpp
+include/range/v3/algorithm/find_if_not.hpp
+include/range/v3/algorithm/for_each.hpp
+include/range/v3/algorithm/for_each_n.hpp
+include/range/v3/algorithm/generate.hpp
+include/range/v3/algorithm/generate_n.hpp
+include/range/v3/algorithm/heap_algorithm.hpp
+include/range/v3/algorithm/inplace_merge.hpp
+include/range/v3/algorithm/is_partitioned.hpp
+include/range/v3/algorithm/is_sorted.hpp
+include/range/v3/algorithm/is_sorted_until.hpp
+include/range/v3/algorithm/lexicographical_compare.hpp
+include/range/v3/algorithm/lower_bound.hpp
+include/range/v3/algorithm/max.hpp
+include/range/v3/algorithm/max_element.hpp
+include/range/v3/algorithm/merge.hpp
+include/range/v3/algorithm/min.hpp
+include/range/v3/algorithm/min_element.hpp
+include/range/v3/algorithm/minmax.hpp
+include/range/v3/algorithm/minmax_element.hpp
+include/range/v3/algorithm/mismatch.hpp
+include/range/v3/algorithm/move.hpp
+include/range/v3/algorithm/move_backward.hpp
+include/range/v3/algorithm/none_of.hpp
+include/range/v3/algorithm/nth_element.hpp
+include/range/v3/algorithm/partial_sort.hpp
+include/range/v3/algorithm/partial_sort_copy.hpp
+include/range/v3/algorithm/partition.hpp
+include/range/v3/algorithm/partition_copy.hpp
+include/range/v3/algorithm/partition_point.hpp
+include/range/v3/algorithm/permutation.hpp
+include/range/v3/algorithm/remove.hpp
+include/range/v3/algorithm/remove_copy.hpp
+include/range/v3/algorithm/remove_copy_if.hpp
+include/range/v3/algorithm/remove_if.hpp
+include/range/v3/algorithm/replace.hpp
+include/range/v3/algorithm/replace_copy.hpp
+include/range/v3/algorithm/replace_copy_if.hpp
+include/range/v3/algorithm/replace_if.hpp
+include/range/v3/algorithm/reverse.hpp
+include/range/v3/algorithm/reverse_copy.hpp
+include/range/v3/algorithm/rotate.hpp
+include/range/v3/algorithm/rotate_copy.hpp
+include/range/v3/algorithm/sample.hpp
+include/range/v3/algorithm/search.hpp
+include/range/v3/algorithm/search_n.hpp
+include/range/v3/algorithm/set_algorithm.hpp
+include/range/v3/algorithm/shuffle.hpp
+include/range/v3/algorithm/sort.hpp
+include/range/v3/algorithm/stable_partition.hpp
+include/range/v3/algorithm/stable_sort.hpp
+include/range/v3/algorithm/swap_ranges.hpp
+include/range/v3/algorithm/tagspec.hpp
+include/range/v3/algorithm/transform.hpp
+include/range/v3/algorithm/unique.hpp
+include/range/v3/algorithm/unique_copy.hpp
+include/range/v3/algorithm/upper_bound.hpp
+include/range/v3/all.hpp
+include/range/v3/at.hpp
+include/range/v3/back.hpp
+include/range/v3/begin_end.hpp
+include/range/v3/core.hpp
+include/range/v3/data.hpp
+include/range/v3/detail/config.hpp
+include/range/v3/detail/satisfy_boost_range.hpp
+include/range/v3/detail/variant.hpp
+include/range/v3/distance.hpp
+include/range/v3/empty.hpp
+include/range/v3/experimental/utility/generator.hpp
+include/range/v3/experimental/view/shared.hpp
+include/range/v3/front.hpp
+include/range/v3/getlines.hpp
+include/range/v3/index.hpp
+include/range/v3/istream_range.hpp
+include/range/v3/iterator_range.hpp
+include/range/v3/numeric.hpp
+include/range/v3/numeric/accumulate.hpp
+include/range/v3/numeric/adjacent_difference.hpp
+include/range/v3/numeric/inner_product.hpp
+include/range/v3/numeric/iota.hpp
+include/range/v3/numeric/partial_sum.hpp
+include/range/v3/range_access.hpp
+include/range/v3/range_concepts.hpp
+include/range/v3/range_for.hpp
+include/range/v3/range_fwd.hpp
+include/range/v3/range_traits.hpp
+include/range/v3/size.hpp
+include/range/v3/span.hpp
+include/range/v3/to_container.hpp
+include/range/v3/utility/any.hpp
+include/range/v3/utility/associated_types.hpp
+include/range/v3/utility/basic_iterator.hpp
+include/range/v3/utility/box.hpp
+include/range/v3/utility/common_iterator.hpp
+include/range/v3/utility/common_tuple.hpp
+include/range/v3/utility/common_type.hpp
+include/range/v3/utility/compressed_pair.hpp
+include/range/v3/utility/concepts.hpp
+include/range/v3/utility/copy.hpp
+include/range/v3/utility/counted_iterator.hpp
+include/range/v3/utility/dangling.hpp
+include/range/v3/utility/functional.hpp
+include/range/v3/utility/get.hpp
+include/range/v3/utility/infinity.hpp
+include/range/v3/utility/invoke.hpp
+include/range/v3/utility/iterator.hpp
+include/range/v3/utility/iterator_concepts.hpp
+include/range/v3/utility/iterator_traits.hpp
+include/range/v3/utility/memory.hpp
+include/range/v3/utility/move.hpp
+include/range/v3/utility/nullptr_v.hpp
+include/range/v3/utility/optional.hpp
+include/range/v3/utility/polymorphic_cast.hpp
+include/range/v3/utility/random.hpp
+include/range/v3/utility/safe_int.hpp
+include/range/v3/utility/scope_exit.hpp
+include/range/v3/utility/semiregular.hpp
+include/range/v3/utility/static_const.hpp
+include/range/v3/utility/swap.hpp
+include/range/v3/utility/tagged_pair.hpp
+include/range/v3/utility/tagged_tuple.hpp
+include/range/v3/utility/tuple_algorithm.hpp
+include/range/v3/utility/unreachable.hpp
+include/range/v3/utility/variant.hpp
+include/range/v3/version.hpp
+include/range/v3/view.hpp
+include/range/v3/view/adjacent_filter.hpp
+include/range/v3/view/adjacent_remove_if.hpp
+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/cartesian_product.hpp
+include/range/v3/view/chunk.hpp
+include/range/v3/view/concat.hpp
+include/range/v3/view/const.hpp
+include/range/v3/view/counted.hpp
+include/range/v3/view/cycle.hpp
+include/range/v3/view/delimit.hpp
+include/range/v3/view/drop.hpp
+include/range/v3/view/drop_exactly.hpp
+include/range/v3/view/drop_while.hpp
+include/range/v3/view/empty.hpp
+include/range/v3/view/filter.hpp
+include/range/v3/view/for_each.hpp
+include/range/v3/view/generate.hpp
+include/range/v3/view/generate_n.hpp
+include/range/v3/view/group_by.hpp
+include/range/v3/view/indices.hpp
+include/range/v3/view/indirect.hpp
+include/range/v3/view/intersperse.hpp
+include/range/v3/view/iota.hpp
+include/range/v3/view/join.hpp
+include/range/v3/view/linear_distribute.hpp
+include/range/v3/view/map.hpp
+include/range/v3/view/move.hpp
+include/range/v3/view/partial_sum.hpp
+include/range/v3/view/remove_if.hpp
+include/range/v3/view/repeat.hpp
+include/range/v3/view/repeat_n.hpp
+include/range/v3/view/replace.hpp
+include/range/v3/view/replace_if.hpp
+include/range/v3/view/reverse.hpp
+include/range/v3/view/sample.hpp
+include/range/v3/view/set_algorithm.hpp
+include/range/v3/view/single.hpp
+include/range/v3/view/slice.hpp
+include/range/v3/view/sliding.hpp
+include/range/v3/view/split.hpp
+include/range/v3/view/stride.hpp
+include/range/v3/view/tail.hpp
+include/range/v3/view/take.hpp
+include/range/v3/view/take_exactly.hpp
+include/range/v3/view/take_while.hpp
+include/range/v3/view/tokenize.hpp
+include/range/v3/view/transform.hpp
+include/range/v3/view/unbounded.hpp
+include/range/v3/view/unique.hpp
+include/range/v3/view/view.hpp
+include/range/v3/view/zip.hpp
+include/range/v3/view/zip_with.hpp
+include/range/v3/view_adaptor.hpp
+include/range/v3/view_facade.hpp
+include/range/v3/view_interface.hpp


More information about the svn-ports-all mailing list